2013-02-23 04:41:12 +08:00
|
|
|
/**
|
|
|
|
Our data model for dealing with users from the admin section.
|
|
|
|
|
2013-03-06 03:52:35 +08:00
|
|
|
@class AdminUser
|
2013-02-23 04:41:12 +08:00
|
|
|
@extends Discourse.Model
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
2013-03-06 03:52:35 +08:00
|
|
|
**/
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.AdminUser = Discourse.User.extend({
|
2013-03-06 03:52:35 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
deleteAllPosts: function() {
|
2013-04-12 04:04:20 +08:00
|
|
|
var user = this;
|
2013-02-23 04:41:12 +08:00
|
|
|
this.set('can_delete_all_posts', false);
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + (this.get('id')) + "/delete_all_posts", {type: 'PUT'}).then(function(result){
|
2013-04-12 04:04:20 +08:00
|
|
|
user.set('post_count', 0);
|
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Revoke the user's admin access
|
|
|
|
revokeAdmin: function() {
|
|
|
|
this.set('admin', false);
|
|
|
|
this.set('can_grant_admin', true);
|
|
|
|
this.set('can_revoke_admin', false);
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/users/" + (this.get('id')) + "/revoke_admin", {type: 'PUT'});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
grantAdmin: function() {
|
|
|
|
this.set('admin', true);
|
|
|
|
this.set('can_grant_admin', false);
|
|
|
|
this.set('can_revoke_admin', true);
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + (this.get('id')) + "/grant_admin", {type: 'PUT'});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Revoke the user's moderation access
|
|
|
|
revokeModeration: function() {
|
|
|
|
this.set('moderator', false);
|
|
|
|
this.set('can_grant_moderation', true);
|
|
|
|
this.set('can_revoke_moderation', false);
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/users/" + (this.get('id')) + "/revoke_moderation", {type: 'PUT'});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
grantModeration: function() {
|
|
|
|
this.set('moderator', true);
|
|
|
|
this.set('can_grant_moderation', false);
|
|
|
|
this.set('can_revoke_moderation', true);
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + (this.get('id')) + "/grant_moderation", {type: 'PUT'});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
refreshBrowsers: function() {
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + (this.get('id')) + "/refresh_browsers", {type: 'POST'});
|
2013-02-23 04:41:12 +08:00
|
|
|
bootbox.alert("Message sent to all clients!");
|
|
|
|
},
|
|
|
|
|
|
|
|
approve: function() {
|
|
|
|
this.set('can_approve', false);
|
|
|
|
this.set('approved', true);
|
2013-05-28 23:08:32 +08:00
|
|
|
this.set('approved_by', Discourse.User.current());
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + (this.get('id')) + "/approve", {type: 'PUT'});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
username_lower: (function() {
|
|
|
|
return this.get('username').toLowerCase();
|
|
|
|
}).property('username'),
|
|
|
|
|
2013-07-04 19:01:01 +08:00
|
|
|
setOriginalTrustLevel: function() {
|
|
|
|
this.set('originalTrustLevel', this.get('trust_level'));
|
|
|
|
},
|
|
|
|
|
2013-07-01 22:22:21 +08:00
|
|
|
trustLevels: function() {
|
2013-07-13 04:24:15 +08:00
|
|
|
return Discourse.Site.instance().get('trustLevels');
|
|
|
|
}.property(),
|
2013-07-01 22:22:21 +08:00
|
|
|
|
2013-07-13 04:18:32 +08:00
|
|
|
dirty: Discourse.computed.propertyNotEqual('originalTrustLevel', 'trustLevel.id'),
|
2013-07-01 22:22:21 +08:00
|
|
|
|
|
|
|
saveTrustLevel: function() {
|
|
|
|
Discourse.ajax("/admin/users/" + this.id + "/trust_level", {
|
|
|
|
type: 'PUT',
|
|
|
|
data: {level: this.get('trustLevel.id')}
|
|
|
|
}).then(function () {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failure
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.trust_level_change_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-07-01 22:22:21 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
restoreTrustLevel: function() {
|
2013-07-04 15:32:12 +08:00
|
|
|
this.set('trustLevel.id', this.get('originalTrustLevel'));
|
2013-07-01 22:22:21 +08:00
|
|
|
},
|
|
|
|
|
2013-07-12 07:35:52 +08:00
|
|
|
isBanned: Em.computed.equal('is_banned', true),
|
|
|
|
canBan: Em.computed.not('staff'),
|
2013-03-21 08:25:41 +08:00
|
|
|
|
2013-07-12 07:35:52 +08:00
|
|
|
banDuration: function() {
|
2013-06-11 04:48:50 +08:00
|
|
|
var banned_at = moment(this.banned_at);
|
|
|
|
var banned_till = moment(this.banned_till);
|
|
|
|
return banned_at.format('L') + " - " + banned_till.format('L');
|
2013-07-12 07:35:52 +08:00
|
|
|
}.property('banned_till', 'banned_at'),
|
2013-02-23 04:41:12 +08:00
|
|
|
|
|
|
|
ban: function() {
|
2013-07-09 07:32:16 +08:00
|
|
|
var duration = parseInt(window.prompt(I18n.t('admin.user.ban_duration')), 10);
|
2013-04-04 04:06:55 +08:00
|
|
|
if (duration > 0) {
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + this.id + "/ban", {
|
2013-04-04 04:06:55 +08:00
|
|
|
type: 'PUT',
|
|
|
|
data: {duration: duration}
|
|
|
|
}).then(function () {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failure
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.ban_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-04-04 04:06:55 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
2013-02-21 02:15:50 +08:00
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
unban: function() {
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + this.id + "/unban", {
|
2013-04-04 04:06:55 +08:00
|
|
|
type: 'PUT'
|
|
|
|
}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.unban_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-04-04 04:06:55 +08:00
|
|
|
bootbox.alert(error);
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
impersonate: function() {
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/impersonate", {
|
2013-02-23 04:41:12 +08:00
|
|
|
type: 'POST',
|
2013-04-04 04:06:55 +08:00
|
|
|
data: { username_or_email: this.get('username') }
|
|
|
|
}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
document.location = "/";
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
|
|
|
if (e.status === 404) {
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t('admin.impersonate.not_found'));
|
2013-04-04 04:06:55 +08:00
|
|
|
} else {
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t('admin.impersonate.invalid'));
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
});
|
2013-04-12 04:04:20 +08:00
|
|
|
},
|
|
|
|
|
2013-05-08 09:58:34 +08:00
|
|
|
activate: function() {
|
|
|
|
Discourse.ajax('/admin/users/' + this.id + '/activate', {type: 'PUT'}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.activate_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-05-08 09:58:34 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
deactivate: function() {
|
|
|
|
Discourse.ajax('/admin/users/' + this.id + '/deactivate', {type: 'PUT'}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.deactivate_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-05-08 09:58:34 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-05-31 23:41:40 +08:00
|
|
|
unblock: function() {
|
|
|
|
Discourse.ajax('/admin/users/' + this.id + '/unblock', {type: 'PUT'}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.unblock_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-05-31 23:41:40 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
block: function() {
|
|
|
|
Discourse.ajax('/admin/users/' + this.id + '/block', {type: 'PUT'}).then(function() {
|
|
|
|
// succeeded
|
|
|
|
window.location.reload();
|
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.block_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-05-31 23:41:40 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-05-08 09:58:34 +08:00
|
|
|
sendActivationEmail: function() {
|
2013-07-06 00:26:46 +08:00
|
|
|
Discourse.ajax('/users/' + this.get('username') + '/send_activation_email', {type: 'POST'}).then(function() {
|
2013-05-08 09:58:34 +08:00
|
|
|
// succeeded
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert( I18n.t('admin.user.activation_email_sent') );
|
2013-05-08 09:58:34 +08:00
|
|
|
}, function(e) {
|
|
|
|
// failed
|
2013-07-09 07:32:16 +08:00
|
|
|
var error = I18n.t('admin.user.send_activation_email_failed', { error: "http: " + e.status + " - " + e.body });
|
2013-05-08 09:58:34 +08:00
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-04-12 04:04:20 +08:00
|
|
|
deleteForbidden: function() {
|
|
|
|
return (this.get('post_count') > 0);
|
|
|
|
}.property('post_count'),
|
|
|
|
|
|
|
|
deleteButtonTitle: function() {
|
|
|
|
if (this.get('deleteForbidden')) {
|
2013-07-09 07:32:16 +08:00
|
|
|
return I18n.t('admin.user.delete_forbidden');
|
2013-04-12 04:04:20 +08:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}.property('deleteForbidden'),
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
var user = this;
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.confirm(I18n.t("admin.user.delete_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function(result) {
|
2013-04-12 04:04:20 +08:00
|
|
|
if(result) {
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/users/" + user.get('id') + '.json', { type: 'DELETE' }).then(function(data) {
|
2013-04-12 04:04:20 +08:00
|
|
|
if (data.deleted) {
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t("admin.user.deleted"), function() {
|
2013-04-12 04:04:20 +08:00
|
|
|
document.location = "/admin/users/list/active";
|
|
|
|
});
|
|
|
|
} else {
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t("admin.user.delete_failed"));
|
2013-04-12 04:04:20 +08:00
|
|
|
if (data.user) {
|
|
|
|
user.mergeAttributes(data.user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, function(jqXHR, status, error) {
|
|
|
|
Discourse.AdminUser.find( user.get('username') ).then(function(u){ user.mergeAttributes(u); });
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t("admin.user.delete_failed"));
|
2013-04-12 04:04:20 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2013-06-14 01:46:50 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
loadDetails: function() {
|
|
|
|
var model = this;
|
|
|
|
if (model.get('loadedDetails')) { return; }
|
|
|
|
|
|
|
|
Discourse.AdminUser.find(model.get('username_lower')).then(function (result) {
|
|
|
|
model.setProperties(result);
|
|
|
|
model.set('loadedDetails', true);
|
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-03-06 03:52:35 +08:00
|
|
|
Discourse.AdminUser.reopenClass({
|
2013-02-23 04:41:12 +08:00
|
|
|
|
|
|
|
bulkApprove: function(users) {
|
2013-06-27 01:24:30 +08:00
|
|
|
_.each(users, function(user) {
|
2013-02-23 04:41:12 +08:00
|
|
|
user.set('approved', true);
|
|
|
|
user.set('can_approve', false);
|
|
|
|
return user.set('selected', false);
|
|
|
|
});
|
2013-06-06 12:18:22 +08:00
|
|
|
|
2013-07-09 07:32:16 +08:00
|
|
|
bootbox.alert(I18n.t("admin.user.approve_bulk_success"));
|
2013-06-06 12:18:22 +08:00
|
|
|
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/users/approve-bulk", {
|
2013-02-23 04:41:12 +08:00
|
|
|
type: 'PUT',
|
|
|
|
data: {
|
|
|
|
users: users.map(function(u) {
|
|
|
|
return u.id;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
find: function(username) {
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/users/" + username).then(function (result) {
|
2013-06-14 01:46:50 +08:00
|
|
|
result.loadedDetails = true;
|
2013-03-15 02:45:29 +08:00
|
|
|
return Discourse.AdminUser.create(result);
|
2013-04-12 04:04:20 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
2013-05-07 23:15:28 +08:00
|
|
|
findAll: function(query, filter) {
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/users/list/" + query + ".json", {
|
2013-04-04 04:06:55 +08:00
|
|
|
data: { filter: filter }
|
|
|
|
}).then(function(users) {
|
2013-05-07 23:15:28 +08:00
|
|
|
return users.map(function(u) {
|
|
|
|
return Discourse.AdminUser.create(u);
|
2013-04-04 04:06:55 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|