mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
121 lines
3.2 KiB
JavaScript
121 lines
3.2 KiB
JavaScript
import CanCheckEmails from 'discourse/mixins/can-check-emails';
|
|
import { propertyNotEqual, setting } from 'discourse/lib/computed';
|
|
|
|
export default Ember.Controller.extend(CanCheckEmails, {
|
|
editingTitle: false,
|
|
originalPrimaryGroupId: null,
|
|
availableGroups: null,
|
|
userTitleValue: null,
|
|
|
|
showApproval: setting('must_approve_users'),
|
|
showBadges: setting('enable_badges'),
|
|
|
|
primaryGroupDirty: propertyNotEqual('originalPrimaryGroupId', 'model.primary_group_id'),
|
|
|
|
automaticGroups: function() {
|
|
return this.get("model.automaticGroups").map((g) => g.name).join(", ");
|
|
}.property("model.automaticGroups"),
|
|
|
|
userFields: function() {
|
|
const siteUserFields = this.site.get('user_fields'),
|
|
userFields = this.get('model.user_fields');
|
|
|
|
if (!Ember.isEmpty(siteUserFields)) {
|
|
return siteUserFields.map(function(uf) {
|
|
let value = userFields ? userFields[uf.get('id').toString()] : null;
|
|
return { name: uf.get('name'), value: value };
|
|
});
|
|
}
|
|
return [];
|
|
}.property('model.user_fields.[]'),
|
|
|
|
actions: {
|
|
toggleTitleEdit() {
|
|
this.set('userTitleValue', this.get('model.title'));
|
|
this.toggleProperty('editingTitle');
|
|
},
|
|
|
|
saveTitle() {
|
|
const self = this;
|
|
|
|
return Discourse.ajax("/users/" + this.get('model.username').toLowerCase(), {
|
|
data: {title: this.get('userTitleValue')},
|
|
type: 'PUT'
|
|
}).catch(function(e) {
|
|
bootbox.alert(I18n.t("generic_error_with_reason", {error: "http: " + e.status + " - " + e.body}));
|
|
}).finally(function() {
|
|
self.set('model.title', self.get('userTitleValue'));
|
|
self.toggleProperty('editingTitle');
|
|
});
|
|
},
|
|
|
|
generateApiKey() {
|
|
this.get('model').generateApiKey();
|
|
},
|
|
|
|
groupAdded(added) {
|
|
this.get('model').groupAdded(added).catch(function() {
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
});
|
|
},
|
|
|
|
groupRemoved(groupId) {
|
|
this.get('model').groupRemoved(groupId).catch(function() {
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
});
|
|
},
|
|
|
|
savePrimaryGroup() {
|
|
const self = this;
|
|
|
|
return Discourse.ajax("/admin/users/" + this.get('model.id') + "/primary_group", {
|
|
type: 'PUT',
|
|
data: {primary_group_id: this.get('model.primary_group_id')}
|
|
}).then(function () {
|
|
self.set('originalPrimaryGroupId', self.get('model.primary_group_id'));
|
|
}).catch(function() {
|
|
bootbox.alert(I18n.t('generic_error'));
|
|
});
|
|
},
|
|
|
|
resetPrimaryGroup() {
|
|
this.set('model.primary_group_id', this.get('originalPrimaryGroupId'));
|
|
},
|
|
|
|
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(); }
|
|
}
|
|
);
|
|
},
|
|
|
|
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(); }
|
|
}
|
|
);
|
|
},
|
|
|
|
anonymize() {
|
|
this.get('model').anonymize();
|
|
},
|
|
|
|
destroy() {
|
|
this.get('model').destroy();
|
|
}
|
|
}
|
|
|
|
});
|