discourse/app/assets/javascripts/admin/models/admin-user.js.es6

631 lines
16 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { iconHTML } from "discourse-common/lib/icon-library";
import { ajax } from "discourse/lib/ajax";
import computed from "ember-addons/ember-computed-decorators";
import { propertyNotEqual } from "discourse/lib/computed";
import { popupAjaxError } from "discourse/lib/ajax-error";
import ApiKey from "admin/models/api-key";
import Group from "discourse/models/group";
import { userPath } from "discourse/lib/url";
2018-06-15 11:03:24 -04:00
const wrapAdmin = user => (user ? AdminUser.create(user) : null);
const AdminUser = Discourse.User.extend({
2017-09-14 14:10:39 -04:00
adminUserView: true,
2018-06-15 11:03:24 -04:00
customGroups: Ember.computed.filter(
"groups",
g => !g.automatic && Group.create(g)
),
automaticGroups: Ember.computed.filter(
"groups",
g => g.automatic && Group.create(g)
),
canViewProfile: Ember.computed.or("active", "staged"),
@computed("bounce_score", "reset_bounce_score_after")
bounceScore(bounce_score, reset_bounce_score_after) {
if (bounce_score > 0) {
2018-06-15 11:03:24 -04:00
return `${bounce_score} - ${moment(reset_bounce_score_after).format(
"LL"
)}`;
} else {
return bounce_score;
}
},
@computed("bounce_score")
bounceScoreExplanation(bounce_score) {
if (bounce_score === 0) {
return I18n.t("admin.user.bounce_score_explanation.none");
} else if (bounce_score < Discourse.SiteSettings.bounce_score_threshold) {
return I18n.t("admin.user.bounce_score_explanation.some");
} else {
return I18n.t("admin.user.bounce_score_explanation.threshold_reached");
}
},
@computed
bounceLink() {
return Discourse.getURL("/admin/email/bounced");
},
canResetBounceScore: Ember.computed.gt("bounce_score", 0),
resetBounceScore() {
2016-06-30 13:55:44 -04:00
return ajax(`/admin/users/${this.get("id")}/reset_bounce_score`, {
2018-06-15 11:03:24 -04:00
type: "POST"
}).then(() =>
this.setProperties({
bounce_score: 0,
reset_bounce_score_after: null
})
);
},
generateApiKey() {
const self = this;
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/generate_api_key", {
type: "POST"
}).then(function(result) {
const apiKey = ApiKey.create(result.api_key);
2018-06-15 11:03:24 -04:00
self.set("api_key", apiKey);
2013-10-22 15:53:08 -04:00
return apiKey;
});
},
groupAdded(added) {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/groups", {
type: "POST",
data: { group_id: added.id }
2018-06-15 11:03:24 -04:00
}).then(() => this.get("groups").pushObject(added));
2014-07-15 10:11:39 -04:00
},
groupRemoved(groupId) {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/groups/" + groupId, {
type: "DELETE"
}).then(() => {
2018-06-15 11:03:24 -04:00
this.set("groups.[]", this.get("groups").rejectBy("id", groupId));
if (this.get("primary_group_id") === groupId) {
this.set("primary_group_id", null);
}
});
2014-07-15 10:11:39 -04:00
},
revokeApiKey() {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/revoke_api_key", {
type: "DELETE"
}).then(() => this.set("api_key", null));
2013-10-22 15:53:08 -04:00
},
deleteAllPosts() {
let deletedPosts = 0;
const user = this,
2018-06-15 11:03:24 -04:00
message = I18n.messageFormat("admin.user.delete_all_posts_confirm_MF", {
POSTS: user.get("post_count"),
TOPICS: user.get("topic_count")
}),
buttons = [
{
label: I18n.t("composer.cancel"),
class: "d-modal-cancel",
link: true
},
{
label:
`${iconHTML("exclamation-triangle")} ` +
I18n.t("admin.user.delete_all_posts"),
class: "btn btn-danger",
callback: () => {
openProgressModal();
performDelete();
2018-06-15 11:03:24 -04:00
}
}
],
openProgressModal = () => {
bootbox.dialog(
`<p>${I18n.t(
"admin.user.delete_posts_progress"
)}</p><div class='progress-bar'><span></span></div>`,
[],
{ classes: "delete-posts-progress" }
);
},
performDelete = () => {
let deletedPercentage = 0;
return ajax(`/admin/users/${user.get("id")}/delete_posts_batch`, {
type: "PUT"
})
.then(({ posts_deleted }) => {
if (posts_deleted === 0) {
user.set("post_count", 0);
bootbox.hideAll();
} else {
deletedPosts += posts_deleted;
deletedPercentage = Math.floor(
(deletedPosts * 100) / user.get("post_count")
);
$(".delete-posts-progress .progress-bar > span").css({
width: `${deletedPercentage}%`
});
performDelete();
}
})
.catch(e => {
bootbox.hideAll();
let error;
AdminUser.find(user.get("id")).then(u => user.setProperties(u));
if (e.responseJSON && e.responseJSON.errors) {
error = e.responseJSON.errors[0];
}
error = error || I18n.t("admin.user.delete_posts_failed");
bootbox.alert(error);
});
};
2018-06-15 11:03:24 -04:00
bootbox.dialog(message, buttons, { classes: "delete-all-posts" });
},
revokeAdmin() {
2018-06-15 11:03:24 -04:00
return ajax(`/admin/users/${this.get("id")}/revoke_admin`, {
type: "PUT"
}).then(() => {
this.setProperties({
admin: false,
can_grant_admin: true,
can_revoke_admin: false
});
});
},
grantAdmin() {
2018-06-15 11:03:24 -04:00
return ajax(`/admin/users/${this.get("id")}/grant_admin`, {
type: "PUT"
})
.then(() => {
bootbox.alert(I18n.t("admin.user.grant_admin_confirm"));
})
.catch(popupAjaxError);
},
revokeModeration() {
const self = this;
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/revoke_moderation", {
type: "PUT"
})
.then(function() {
self.setProperties({
moderator: false,
can_grant_moderation: true,
can_revoke_moderation: false
});
})
.catch(popupAjaxError);
},
grantModeration() {
const self = this;
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/grant_moderation", {
type: "PUT"
})
.then(function() {
self.setProperties({
moderator: true,
can_grant_moderation: false,
can_revoke_moderation: true
});
})
.catch(popupAjaxError);
},
disableSecondFactor() {
2018-06-15 11:03:24 -04:00
return ajax(`/admin/users/${this.get("id")}/disable_second_factor`, {
type: "PUT"
})
.then(() => {
this.set("second_factor_enabled", false);
})
.catch(popupAjaxError);
},
refreshBrowsers() {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/refresh_browsers", {
type: "POST"
}).finally(() =>
bootbox.alert(I18n.t("admin.user.refresh_browsers_message"))
);
},
approve() {
const self = this;
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.get("id") + "/approve", {
type: "PUT"
}).then(function() {
self.setProperties({
can_approve: false,
approved: true,
approved_by: Discourse.User.current()
});
});
},
setOriginalTrustLevel() {
2018-06-15 11:03:24 -04:00
this.set("originalTrustLevel", this.get("trust_level"));
},
2018-06-15 11:03:24 -04:00
dirty: propertyNotEqual("originalTrustLevel", "trustLevel.id"),
saveTrustLevel() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/" + this.id + "/trust_level", {
2018-06-15 11:03:24 -04:00
type: "PUT",
data: { level: this.get("trustLevel.id") }
})
.then(function() {
window.location.reload();
})
.catch(function(e) {
let error;
if (e.responseJSON && e.responseJSON.errors) {
error = e.responseJSON.errors[0];
}
error =
error ||
I18n.t("admin.user.trust_level_change_failed", {
error: "http: " + e.status + " - " + e.body
});
bootbox.alert(error);
});
},
restoreTrustLevel() {
2018-06-15 11:03:24 -04:00
this.set("trustLevel.id", this.get("originalTrustLevel"));
},
lockTrustLevel(locked) {
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/" + this.id + "/trust_level_lock", {
2018-06-15 11:03:24 -04:00
type: "PUT",
data: { locked: !!locked }
2018-06-15 11:03:24 -04:00
})
.then(function() {
window.location.reload();
})
.catch(function(e) {
let error;
if (e.responseJSON && e.responseJSON.errors) {
error = e.responseJSON.errors[0];
}
error =
error ||
I18n.t("admin.user.trust_level_change_failed", {
error: "http: " + e.status + " - " + e.body
});
bootbox.alert(error);
});
},
canLockTrustLevel: function() {
2018-06-15 11:03:24 -04:00
return this.get("trust_level") < 4;
}.property("trust_level"),
2018-06-15 11:03:24 -04:00
canSuspend: Em.computed.not("staff"),
suspendDuration: function() {
const suspended_at = moment(this.suspended_at),
2018-06-15 11:03:24 -04:00
suspended_till = moment(this.suspended_till);
return suspended_at.format("L") + " - " + suspended_till.format("L");
}.property("suspended_till", "suspended_at"),
suspend(data) {
return ajax(`/admin/users/${this.id}/suspend`, {
2018-06-15 11:03:24 -04:00
type: "PUT",
data
}).then(result => this.setProperties(result.suspension));
},
unsuspend() {
return ajax(`/admin/users/${this.id}/unsuspend`, {
2018-06-15 11:03:24 -04:00
type: "PUT"
}).then(result => this.setProperties(result.suspension));
},
logOut() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/" + this.id + "/log_out", {
2018-06-15 11:03:24 -04:00
type: "POST",
data: { username_or_email: this.get("username") }
}).then(function() {
bootbox.alert(I18n.t("admin.user.logged_out"));
});
2014-06-05 23:02:52 -04:00
},
impersonate() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/impersonate", {
2018-06-15 11:03:24 -04:00
type: "POST",
data: { username_or_email: this.get("username") }
})
.then(function() {
document.location = Discourse.getURL("/");
})
.catch(function(e) {
if (e.status === 404) {
bootbox.alert(I18n.t("admin.impersonate.not_found"));
} else {
bootbox.alert(I18n.t("admin.impersonate.invalid"));
}
});
},
activate() {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.id + "/activate", {
type: "PUT"
})
.then(function() {
window.location.reload();
})
.catch(function(e) {
var error = I18n.t("admin.user.activate_failed", {
error: "http: " + e.status + " - " + e.body
});
bootbox.alert(error);
});
},
deactivate() {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + this.id + "/deactivate", {
type: "PUT",
data: { context: document.location.pathname }
2018-06-15 11:03:24 -04:00
})
.then(function() {
window.location.reload();
})
.catch(function(e) {
var error = I18n.t("admin.user.deactivate_failed", {
error: "http: " + e.status + " - " + e.body
});
bootbox.alert(error);
});
},
2017-11-10 12:18:08 -05:00
unsilence() {
2018-06-15 11:03:24 -04:00
this.set("silencingUser", true);
return ajax(`/admin/users/${this.id}/unsilence`, {
2018-06-15 11:03:24 -04:00
type: "PUT"
})
.then(result => {
this.setProperties(result.unsilence);
})
.catch(e => {
let error = I18n.t("admin.user.unsilence_failed", {
error: `http: ${e.status} - ${e.body}`
});
bootbox.alert(error);
})
.finally(() => {
this.set("silencingUser", false);
});
},
silence(data) {
2018-06-15 11:03:24 -04:00
this.set("silencingUser", true);
return ajax(`/admin/users/${this.id}/silence`, {
2018-06-15 11:03:24 -04:00
type: "PUT",
data
2018-06-15 11:03:24 -04:00
})
.then(result => {
this.setProperties(result.silence);
})
.catch(e => {
let error = I18n.t("admin.user.silence_failed", {
error: `http: ${e.status} - ${e.body}`
});
bootbox.alert(error);
})
.finally(() => {
this.set("silencingUser", false);
});
},
sendActivationEmail() {
2018-06-15 11:03:24 -04:00
return ajax(userPath("action/send_activation_email"), {
type: "POST",
data: { username: this.get("username") }
})
.then(function() {
bootbox.alert(I18n.t("admin.user.activation_email_sent"));
})
.catch(popupAjaxError);
},
anonymize() {
const user = this,
2018-06-15 11:03:24 -04:00
message = I18n.t("admin.user.anonymize_confirm");
const performAnonymize = function() {
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + user.get("id") + "/anonymize.json", {
type: "PUT"
})
.then(function(data) {
if (data.success) {
if (data.username) {
document.location = Discourse.getURL(
"/admin/users/" + user.get("id") + "/" + data.username
);
} else {
document.location = Discourse.getURL("/admin/users/list/active");
}
} else {
2018-06-15 11:03:24 -04:00
bootbox.alert(I18n.t("admin.user.anonymize_failed"));
if (data.user) {
user.setProperties(data.user);
}
}
2018-06-15 11:03:24 -04:00
})
.catch(function() {
bootbox.alert(I18n.t("admin.user.anonymize_failed"));
2018-06-15 11:03:24 -04:00
});
};
2018-06-15 11:03:24 -04:00
const buttons = [
{
label: I18n.t("composer.cancel"),
class: "cancel",
link: true
},
{
label:
`${iconHTML("exclamation-triangle")} ` +
I18n.t("admin.user.anonymize_yes"),
class: "btn btn-danger",
callback: function() {
performAnonymize();
}
}
];
2018-06-15 11:03:24 -04:00
bootbox.dialog(message, buttons, { classes: "delete-user-modal" });
},
destroy(opts) {
const user = this,
2018-06-15 11:03:24 -04:00
message = I18n.t("admin.user.delete_confirm"),
location = document.location.pathname;
const performDestroy = function(block) {
2018-06-15 11:03:24 -04:00
bootbox.dialog(I18n.t("admin.user.deleting_user"));
let formData = { context: location };
if (block) {
formData["block_email"] = true;
formData["block_urls"] = true;
formData["block_ip"] = true;
}
if (opts && opts.deletePosts) {
formData["delete_posts"] = true;
}
2018-06-15 11:03:24 -04:00
return ajax("/admin/users/" + user.get("id") + ".json", {
type: "DELETE",
data: formData
2018-06-15 11:03:24 -04:00
})
.then(function(data) {
if (data.deleted) {
if (/^\/admin\/users\/list\//.test(location)) {
document.location = location;
} else {
document.location = Discourse.getURL("/admin/users/list/active");
}
} else {
2018-06-15 11:03:24 -04:00
bootbox.alert(I18n.t("admin.user.delete_failed"));
if (data.user) {
user.setProperties(data.user);
}
}
2018-06-15 11:03:24 -04:00
})
.catch(function() {
AdminUser.find(user.get("id")).then(u => user.setProperties(u));
bootbox.alert(I18n.t("admin.user.delete_failed"));
2018-06-15 11:03:24 -04:00
});
};
2018-06-15 11:03:24 -04:00
const buttons = [
{
label: I18n.t("composer.cancel"),
class: "btn",
link: true
},
{
label:
`${iconHTML("exclamation-triangle")} ` +
I18n.t("admin.user.delete_and_block"),
class: "btn btn-danger",
callback: function() {
performDestroy(true);
}
},
{
label: I18n.t("admin.user.delete_dont_block"),
class: "btn btn-primary",
callback: function() {
performDestroy(false);
}
}
];
2018-06-15 11:03:24 -04:00
bootbox.dialog(message, buttons, { classes: "delete-user-modal" });
},
loadDetails() {
const user = this;
2018-06-15 11:03:24 -04:00
if (user.get("loadedDetails")) {
return Ember.RSVP.resolve(user);
}
2018-06-15 11:03:24 -04:00
return AdminUser.find(user.get("id")).then(result => {
user.setProperties(result);
2018-06-15 11:03:24 -04:00
user.set("loadedDetails", true);
});
},
2018-06-15 11:03:24 -04:00
@computed("tl3_requirements")
tl3Requirements(requirements) {
if (requirements) {
2018-06-15 11:03:24 -04:00
return this.store.createRecord("tl3Requirements", requirements);
}
},
2018-07-30 11:56:48 -04:00
@computed("suspended_by")
suspendedBy: wrapAdmin,
2018-07-30 11:56:48 -04:00
@computed("silenced_by")
silencedBy: wrapAdmin,
2018-07-30 11:56:48 -04:00
@computed("approved_by")
approvedBy: wrapAdmin
});
AdminUser.reopenClass({
bulkApprove(users) {
users.forEach(user => {
user.setProperties({
approved: true,
can_approve: false,
selected: false
});
});
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/approve-bulk", {
2018-06-15 11:03:24 -04:00
type: "PUT",
data: { users: users.map(u => u.id) }
}).finally(() => bootbox.alert(I18n.t("admin.user.approve_bulk_success")));
},
bulkReject(users) {
users.forEach(user => {
2018-06-15 11:03:24 -04:00
user.set("can_approve", false);
user.set("selected", false);
});
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/reject-bulk", {
2018-06-15 11:03:24 -04:00
type: "DELETE",
data: {
2018-06-15 11:03:24 -04:00
users: users.map(u => u.id),
context: window.location.pathname
}
});
},
find(user_id) {
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/" + user_id + ".json").then(result => {
result.loadedDetails = true;
return AdminUser.create(result);
});
},
findAll(query, filter) {
2016-06-30 13:55:44 -04:00
return ajax("/admin/users/list/" + query + ".json", {
data: filter
}).then(function(users) {
2018-06-15 11:03:24 -04:00
return users.map(u => AdminUser.create(u));
});
}
});
export default AdminUser;