2016-06-30 13:55:44 -04:00
|
|
|
import { ajax } from 'discourse/lib/ajax';
|
2014-09-29 16:31:05 -04:00
|
|
|
import CanCheckEmails from 'discourse/mixins/can-check-emails';
|
2015-08-07 15:08:27 -04:00
|
|
|
import { propertyNotEqual, setting } from 'discourse/lib/computed';
|
2017-03-28 12:16:58 -04:00
|
|
|
import { userPath } from 'discourse/lib/url';
|
2017-04-02 13:35:30 -04:00
|
|
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
2017-05-26 15:00:31 -04:00
|
|
|
import computed from 'ember-addons/ember-computed-decorators';
|
2014-08-12 19:04:36 -04:00
|
|
|
|
2015-08-11 12:27:07 -04:00
|
|
|
export default Ember.Controller.extend(CanCheckEmails, {
|
2017-09-12 17:07:42 -04:00
|
|
|
adminTools: Ember.inject.service(),
|
2017-04-02 13:35:30 -04:00
|
|
|
editingUsername: false,
|
|
|
|
editingName: false,
|
2013-06-25 18:39:20 -04:00
|
|
|
editingTitle: false,
|
2014-07-23 16:54:04 -04:00
|
|
|
originalPrimaryGroupId: null,
|
|
|
|
availableGroups: null,
|
2016-04-18 23:12:14 -04:00
|
|
|
userTitleValue: null,
|
2013-06-25 18:39:20 -04:00
|
|
|
|
2015-08-07 15:08:27 -04:00
|
|
|
showApproval: setting('must_approve_users'),
|
|
|
|
showBadges: setting('enable_badges'),
|
2014-03-05 07:52:20 -05:00
|
|
|
|
2015-08-07 15:08:27 -04:00
|
|
|
primaryGroupDirty: propertyNotEqual('originalPrimaryGroupId', 'model.primary_group_id'),
|
2014-02-10 16:59:36 -05:00
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
automaticGroups: function() {
|
|
|
|
return this.get("model.automaticGroups").map((g) => g.name).join(", ");
|
|
|
|
}.property("model.automaticGroups"),
|
2014-07-13 14:11:38 -04:00
|
|
|
|
2014-09-26 14:48:34 -04:00
|
|
|
userFields: function() {
|
2015-03-17 17:59:05 -04:00
|
|
|
const siteUserFields = this.site.get('user_fields'),
|
2015-05-19 10:56:32 -04:00
|
|
|
userFields = this.get('model.user_fields');
|
2014-09-26 14:48:34 -04:00
|
|
|
|
2014-12-10 13:15:30 -05:00
|
|
|
if (!Ember.isEmpty(siteUserFields)) {
|
2014-09-26 14:48:34 -04:00
|
|
|
return siteUserFields.map(function(uf) {
|
2015-03-17 17:59:05 -04:00
|
|
|
let value = userFields ? userFields[uf.get('id').toString()] : null;
|
|
|
|
return { name: uf.get('name'), value: value };
|
2014-09-26 14:48:34 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return [];
|
2016-04-28 16:49:24 -04:00
|
|
|
}.property('model.user_fields.[]'),
|
2014-09-26 14:48:34 -04:00
|
|
|
|
2017-05-26 15:00:31 -04:00
|
|
|
@computed('model.username_lower')
|
|
|
|
preferencesPath(username) {
|
|
|
|
return userPath(`${username}/preferences`);
|
|
|
|
},
|
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
actions: {
|
2016-12-20 06:26:53 -05:00
|
|
|
|
|
|
|
impersonate() { return this.get("model").impersonate(); },
|
|
|
|
logOut() { return this.get("model").logOut(); },
|
|
|
|
resetBounceScore() { return this.get("model").resetBounceScore(); },
|
|
|
|
refreshBrowsers() { return this.get("model").refreshBrowsers(); },
|
|
|
|
approve() { return this.get("model").approve(); },
|
|
|
|
deactivate() { return this.get("model").deactivate(); },
|
|
|
|
sendActivationEmail() { return this.get("model").sendActivationEmail(); },
|
|
|
|
activate() { return this.get("model").activate(); },
|
|
|
|
revokeAdmin() { return this.get("model").revokeAdmin(); },
|
|
|
|
grantAdmin() { return this.get("model").grantAdmin(); },
|
|
|
|
revokeModeration() { return this.get("model").revokeModeration(); },
|
|
|
|
grantModeration() { return this.get("model").grantModeration(); },
|
|
|
|
saveTrustLevel() { return this.get("model").saveTrustLevel(); },
|
|
|
|
restoreTrustLevel() { return this.get("model").restoreTrustLevel(); },
|
|
|
|
lockTrustLevel(locked) { return this.get("model").lockTrustLevel(locked); },
|
2017-11-10 12:18:08 -05:00
|
|
|
unsilence() { return this.get("model").unsilence(); },
|
|
|
|
silence() { return this.get("model").silence(); },
|
2016-12-20 06:26:53 -05:00
|
|
|
deleteAllPosts() { return this.get("model").deleteAllPosts(); },
|
|
|
|
anonymize() { return this.get('model').anonymize(); },
|
|
|
|
destroy() { return this.get('model').destroy(); },
|
|
|
|
|
2018-01-26 15:40:03 -05:00
|
|
|
viewActionLogs() {
|
|
|
|
this.get('adminTools').showActionLogs(this, {
|
|
|
|
target_user: this.get('model.username'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-01-17 13:03:14 -05:00
|
|
|
showFlagsReceived() {
|
|
|
|
this.get('adminTools').showFlagsReceived(this.get('model'));
|
|
|
|
},
|
2017-09-12 17:07:42 -04:00
|
|
|
showSuspendModal() {
|
|
|
|
this.get('adminTools').showSuspendModal(this.get('model'));
|
|
|
|
},
|
2017-09-13 14:11:33 -04:00
|
|
|
unsuspend() {
|
|
|
|
this.get("model").unsuspend().catch(popupAjaxError);
|
|
|
|
},
|
2017-11-13 13:41:36 -05:00
|
|
|
showSilenceModal() {
|
|
|
|
this.get('adminTools').showSilenceModal(this.get('model'));
|
|
|
|
},
|
2017-09-12 17:07:42 -04:00
|
|
|
|
2017-04-02 13:35:30 -04:00
|
|
|
toggleUsernameEdit() {
|
|
|
|
this.set('userUsernameValue', this.get('model.username'));
|
|
|
|
this.toggleProperty('editingUsername');
|
|
|
|
},
|
|
|
|
|
|
|
|
saveUsername() {
|
|
|
|
const oldUsername = this.get('model.username');
|
|
|
|
this.set('model.username', this.get('userUsernameValue'));
|
|
|
|
|
|
|
|
return ajax(`/users/${oldUsername.toLowerCase()}/preferences/username`, {
|
|
|
|
data: { new_username: this.get('userUsernameValue') },
|
|
|
|
type: 'PUT'
|
|
|
|
}).catch(e => {
|
|
|
|
this.set('model.username', oldUsername);
|
|
|
|
popupAjaxError(e);
|
|
|
|
}).finally(() => this.toggleProperty('editingUsername'));
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleNameEdit() {
|
|
|
|
this.set('userNameValue', this.get('model.name'));
|
|
|
|
this.toggleProperty('editingName');
|
|
|
|
},
|
|
|
|
|
|
|
|
saveName() {
|
|
|
|
const oldName = this.get('model.name');
|
|
|
|
this.set('model.name', this.get('userNameValue'));
|
|
|
|
|
|
|
|
return ajax(userPath(`${this.get('model.username').toLowerCase()}.json`), {
|
|
|
|
data: { name: this.get('userNameValue') },
|
|
|
|
type: 'PUT'
|
|
|
|
}).catch(e => {
|
|
|
|
this.set('model.name', oldName);
|
|
|
|
popupAjaxError(e);
|
|
|
|
}).finally(() => this.toggleProperty('editingName'));
|
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
toggleTitleEdit() {
|
2016-04-18 23:12:14 -04:00
|
|
|
this.set('userTitleValue', this.get('model.title'));
|
2013-09-16 14:08:55 -04:00
|
|
|
this.toggleProperty('editingTitle');
|
|
|
|
},
|
2013-06-25 18:39:20 -04:00
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
saveTitle() {
|
2017-04-02 13:35:30 -04:00
|
|
|
const prevTitle = this.get('userTitleValue');
|
2015-03-17 17:59:05 -04:00
|
|
|
|
2017-04-02 13:35:30 -04:00
|
|
|
this.set('model.title', this.get('userTitleValue'));
|
2017-03-28 12:16:58 -04:00
|
|
|
return ajax(userPath(`${this.get('model.username').toLowerCase()}.json`), {
|
2016-04-18 23:12:14 -04:00
|
|
|
data: {title: this.get('userTitleValue')},
|
2013-09-16 14:08:55 -04:00
|
|
|
type: 'PUT'
|
2017-04-02 13:35:30 -04:00
|
|
|
}).catch(e => {
|
|
|
|
this.set('model.title', prevTitle);
|
|
|
|
popupAjaxError(e);
|
|
|
|
}).finally(() => this.toggleProperty('editingTitle'));
|
2013-10-22 15:53:08 -04:00
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
generateApiKey() {
|
2013-10-22 15:53:08 -04:00
|
|
|
this.get('model').generateApiKey();
|
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
groupAdded(added) {
|
2014-07-15 10:11:39 -04:00
|
|
|
this.get('model').groupAdded(added).catch(function() {
|
2014-07-13 14:11:38 -04:00
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
2014-07-15 10:11:39 -04:00
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
groupRemoved(groupId) {
|
|
|
|
this.get('model').groupRemoved(groupId).catch(function() {
|
2014-07-13 14:11:38 -04:00
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
savePrimaryGroup() {
|
|
|
|
const self = this;
|
|
|
|
|
2016-06-30 13:55:44 -04:00
|
|
|
return ajax("/admin/users/" + this.get('model.id') + "/primary_group", {
|
2014-02-10 16:59:36 -05:00
|
|
|
type: 'PUT',
|
2015-05-19 10:56:32 -04:00
|
|
|
data: {primary_group_id: this.get('model.primary_group_id')}
|
2014-02-10 16:59:36 -05:00
|
|
|
}).then(function () {
|
2015-05-19 10:56:32 -04:00
|
|
|
self.set('originalPrimaryGroupId', self.get('model.primary_group_id'));
|
2014-02-10 16:59:36 -05:00
|
|
|
}).catch(function() {
|
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
resetPrimaryGroup() {
|
2015-05-19 10:56:32 -04:00
|
|
|
this.set('model.primary_group_id', this.get('originalPrimaryGroupId'));
|
2014-02-10 16:59:36 -05:00
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
regenerateApiKey() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("admin.api.confirm_regen"),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
function(result) {
|
|
|
|
if (result) { self.get('model').generateApiKey(); }
|
2013-10-22 15:53:08 -04:00
|
|
|
}
|
2015-03-17 17:59:05 -04:00
|
|
|
);
|
2013-10-22 15:53:08 -04:00
|
|
|
},
|
|
|
|
|
2015-03-17 17:59:05 -04:00
|
|
|
revokeApiKey() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("admin.api.confirm_revoke"),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
function(result) {
|
|
|
|
if (result) { self.get('model').revokeApiKey(); }
|
2013-10-22 15:53:08 -04:00
|
|
|
}
|
2015-03-17 17:59:05 -04:00
|
|
|
);
|
2013-09-16 14:08:55 -04:00
|
|
|
}
|
|
|
|
}
|
2013-09-09 12:21:47 -04:00
|
|
|
|
2013-07-08 19:32:16 -04:00
|
|
|
});
|