discourse/app/assets/javascripts/admin/services/admin-tools.js.es6

142 lines
4.2 KiB
Plaintext
Raw Normal View History

// A service that can act as a bridge between the front end Discourse application
// and the admin application. Use this if you need front end code to access admin
// modules. Inject it optionally, and if it exists go to town!
import EmberObject from "@ember/object";
2018-06-15 11:03:24 -04:00
import AdminUser from "admin/models/admin-user";
import { iconHTML } from "discourse-common/lib/icon-library";
import { ajax } from "discourse/lib/ajax";
import showModal from "discourse/lib/show-modal";
import { getOwner } from "discourse-common/lib/get-owner";
import Service from "@ember/service";
2019-11-05 11:37:32 -05:00
import { Promise } from "rsvp";
export default Service.extend({
init() {
this._super(...arguments);
// TODO: Make `siteSettings` a service that can be injected
2018-06-15 11:03:24 -04:00
this.siteSettings = getOwner(this).lookup("site-settings:main");
},
showActionLogs(target, filters) {
2018-06-15 11:03:24 -04:00
const controller = getOwner(target).lookup(
"controller:adminLogs.staffActionLogs"
);
target.transitionToRoute("adminLogs.staffActionLogs").then(() => {
controller.set("filters", EmberObject.create());
controller._changeFilters(filters);
});
},
checkSpammer(userId) {
return AdminUser.find(userId).then(au => this.spammerDetails(au));
},
deleteUser(id) {
AdminUser.find(id).then(user => user.destroy({ deletePosts: true }));
},
spammerDetails(adminUser) {
return {
deleteUser: () => this._deleteSpammer(adminUser),
2018-06-15 11:03:24 -04:00
canDelete:
adminUser.get("can_be_deleted") && adminUser.get("can_delete_all_posts")
};
},
_showControlModal(type, user, opts) {
2017-09-14 14:10:39 -04:00
opts = opts || {};
let controller = showModal(`admin-${type}-user`, {
2017-09-12 17:07:42 -04:00
admin: true,
modalClass: `${type}-user-modal`
2017-09-12 17:07:42 -04:00
});
controller.setProperties({ postId: opts.postId, postEdit: opts.postEdit });
2017-09-14 14:10:39 -04:00
2018-06-15 11:03:24 -04:00
return (user.adminUserView
2019-11-05 11:37:32 -05:00
? Promise.resolve(user)
2018-06-15 11:03:24 -04:00
: AdminUser.find(user.get("id"))
).then(loadedUser => {
2017-09-14 14:10:39 -04:00
controller.setProperties({
user: loadedUser,
loadingUser: false,
before: opts.before,
2017-09-14 14:10:39 -04:00
successCallback: opts.successCallback
});
});
2017-09-12 17:07:42 -04:00
},
showSilenceModal(user, opts) {
2018-06-15 11:03:24 -04:00
this._showControlModal("silence", user, opts);
},
showSuspendModal(user, opts) {
2018-06-15 11:03:24 -04:00
this._showControlModal("suspend", user, opts);
},
_deleteSpammer(adminUser) {
// Try loading the email if the site supports it
let tryEmail = this.siteSettings.moderators_view_emails
2018-06-15 11:03:24 -04:00
? adminUser.checkEmail()
2019-11-05 11:37:32 -05:00
: Promise.resolve();
return tryEmail.then(() => {
2018-06-15 11:03:24 -04:00
let message = I18n.messageFormat("flagging.delete_confirm_MF", {
POSTS: adminUser.get("post_count"),
TOPICS: adminUser.get("topic_count"),
email:
adminUser.get("email") || I18n.t("flagging.hidden_email_address"),
ip_address:
adminUser.get("ip_address") || I18n.t("flagging.ip_address_missing")
});
2018-06-15 11:03:24 -04:00
let userId = adminUser.get("id");
2019-11-05 11:37:32 -05:00
return new Promise((resolve, reject) => {
const buttons = [
{
label: I18n.t("composer.cancel"),
class: "d-modal-cancel",
2018-06-15 11:03:24 -04:00
link: true
},
{
2018-06-15 11:03:24 -04:00
label:
`${iconHTML("exclamation-triangle")} ` +
I18n.t("flagging.yes_delete_spammer"),
class: "btn btn-danger confirm-delete",
callback() {
return ajax(`/admin/users/${userId}.json`, {
2018-06-15 11:03:24 -04:00
type: "DELETE",
data: {
delete_posts: true,
block_email: true,
block_urls: true,
block_ip: true,
delete_as_spammer: true,
context: window.location.pathname
}
2018-06-15 11:03:24 -04:00
})
.then(result => {
if (result.deleted) {
resolve();
} else {
throw new Error("failed to delete");
}
})
.catch(() => {
bootbox.alert(I18n.t("admin.user.delete_failed"));
reject();
});
}
}
];
2018-06-15 11:03:24 -04:00
bootbox.dialog(message, buttons, {
classes: "flagging-delete-spammer"
});
});
});
}
});