2014-08-13 07:04:36 +08:00
|
|
|
import ObjectController from 'discourse/controllers/object';
|
2014-09-30 04:31:05 +08:00
|
|
|
import CanCheckEmails from 'discourse/mixins/can-check-emails';
|
2014-08-13 07:04:36 +08:00
|
|
|
|
2014-09-30 04:31:05 +08:00
|
|
|
export default ObjectController.extend(CanCheckEmails, {
|
2013-06-26 06:39:20 +08:00
|
|
|
editingTitle: false,
|
2014-07-24 04:54:04 +08:00
|
|
|
originalPrimaryGroupId: null,
|
|
|
|
availableGroups: null,
|
2013-06-26 06:39:20 +08:00
|
|
|
|
2014-04-25 05:39:34 +08:00
|
|
|
showApproval: Discourse.computed.setting('must_approve_users'),
|
|
|
|
showBadges: Discourse.computed.setting('enable_badges'),
|
2014-03-05 20:52:20 +08:00
|
|
|
|
2014-02-11 05:59:36 +08:00
|
|
|
primaryGroupDirty: Discourse.computed.propertyNotEqual('originalPrimaryGroupId', 'primary_group_id'),
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
automaticGroups: function() {
|
|
|
|
return this.get("model.automaticGroups").map((g) => g.name).join(", ");
|
|
|
|
}.property("model.automaticGroups"),
|
2014-07-14 02:11:38 +08:00
|
|
|
|
2014-09-27 02:48:34 +08:00
|
|
|
userFields: function() {
|
2015-03-18 05:59:05 +08:00
|
|
|
const siteUserFields = this.site.get('user_fields'),
|
|
|
|
userFields = this.get('user_fields');
|
2014-09-27 02:48:34 +08:00
|
|
|
|
2014-12-11 02:15:30 +08:00
|
|
|
if (!Ember.isEmpty(siteUserFields)) {
|
2014-09-27 02:48:34 +08:00
|
|
|
return siteUserFields.map(function(uf) {
|
2015-03-18 05:59:05 +08:00
|
|
|
let value = userFields ? userFields[uf.get('id').toString()] : null;
|
|
|
|
return { name: uf.get('name'), value: value };
|
2014-09-27 02:48:34 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return [];
|
|
|
|
}.property('user_fields.@each'),
|
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
actions: {
|
2015-03-18 05:59:05 +08:00
|
|
|
toggleTitleEdit() {
|
2013-09-17 02:08:55 +08:00
|
|
|
this.toggleProperty('editingTitle');
|
|
|
|
},
|
2013-06-26 06:39:20 +08:00
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
saveTitle() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
return Discourse.ajax("/users/" + this.get('username').toLowerCase(), {
|
2013-09-17 02:08:55 +08:00
|
|
|
data: {title: this.get('title')},
|
|
|
|
type: 'PUT'
|
2015-03-18 05:59:05 +08:00
|
|
|
}).catch(function(e) {
|
2013-09-17 02:08:55 +08:00
|
|
|
bootbox.alert(I18n.t("generic_error_with_reason", {error: "http: " + e.status + " - " + e.body}));
|
2015-03-18 05:59:05 +08:00
|
|
|
}).finally(function() {
|
|
|
|
self.send('toggleTitleEdit');
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|
2013-10-23 03:53:08 +08:00
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
generateApiKey() {
|
2013-10-23 03:53:08 +08:00
|
|
|
this.get('model').generateApiKey();
|
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
groupAdded(added) {
|
2014-07-15 22:11:39 +08:00
|
|
|
this.get('model').groupAdded(added).catch(function() {
|
2014-07-14 02:11:38 +08:00
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
2014-07-15 22:11:39 +08:00
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
groupRemoved(groupId) {
|
|
|
|
this.get('model').groupRemoved(groupId).catch(function() {
|
2014-07-14 02:11:38 +08:00
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
savePrimaryGroup() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
return Discourse.ajax("/admin/users/" + this.get('id') + "/primary_group", {
|
2014-02-11 05:59:36 +08:00
|
|
|
type: 'PUT',
|
|
|
|
data: {primary_group_id: this.get('primary_group_id')}
|
|
|
|
}).then(function () {
|
|
|
|
self.set('originalPrimaryGroupId', self.get('primary_group_id'));
|
|
|
|
}).catch(function() {
|
|
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
resetPrimaryGroup() {
|
2014-02-11 05:59:36 +08:00
|
|
|
this.set('primary_group_id', this.get('originalPrimaryGroupId'));
|
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08: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-23 03:53:08 +08:00
|
|
|
}
|
2015-03-18 05:59:05 +08:00
|
|
|
);
|
2013-10-23 03:53:08 +08:00
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08: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-23 03:53:08 +08:00
|
|
|
}
|
2015-03-18 05:59:05 +08:00
|
|
|
);
|
2015-03-11 01:06:08 +08:00
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
anonymize() {
|
2015-03-11 01:06:08 +08:00
|
|
|
this.get('model').anonymize();
|
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
destroy() {
|
2015-03-11 01:06:08 +08:00
|
|
|
this.get('model').destroy();
|
2013-09-17 02:08:55 +08:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 00:21:47 +08:00
|
|
|
|
2013-07-09 07:32:16 +08:00
|
|
|
});
|