2021-01-20 13:04:21 +08:00
|
|
|
import DiscourseURL, { userPath } from "discourse/lib/url";
|
2019-10-31 04:28:29 +08:00
|
|
|
import { and, notEmpty } from "@ember/object/computed";
|
2019-10-30 01:31:44 +08:00
|
|
|
import { fmt, propertyNotEqual, setting } from "discourse/lib/computed";
|
2021-01-20 13:04:21 +08:00
|
|
|
import AdminUser from "admin/models/admin-user";
|
2019-10-30 01:31:44 +08:00
|
|
|
import CanCheckEmails from "discourse/mixins/can-check-emails";
|
2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-08-08 03:08:27 +08:00
|
|
|
import bootbox from "bootbox";
|
2020-01-17 01:56:53 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2021-01-20 13:04:21 +08:00
|
|
|
import getURL from "discourse-common/lib/get-url";
|
2019-11-06 02:43:49 +08:00
|
|
|
import { htmlSafe } from "@ember/template";
|
2021-01-20 13:04:21 +08:00
|
|
|
import { iconHTML } from "discourse-common/lib/icon-library";
|
2017-04-03 01:35:30 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
2019-11-06 02:43:49 +08:00
|
|
|
import { inject as service } from "@ember/service";
|
2020-04-22 16:37:51 +08:00
|
|
|
import showModal from "discourse/lib/show-modal";
|
2014-08-13 07:04:36 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend(CanCheckEmails, {
|
2019-10-30 01:29:08 +08:00
|
|
|
adminTools: service(),
|
2014-07-24 04:54:04 +08:00
|
|
|
originalPrimaryGroupId: null,
|
2018-10-02 12:34:08 +08:00
|
|
|
customGroupIdsBuffer: null,
|
2014-07-24 04:54:04 +08:00
|
|
|
availableGroups: null,
|
2016-04-19 11:12:14 +08:00
|
|
|
userTitleValue: null,
|
2020-11-11 03:12:44 +08:00
|
|
|
ssoExternalEmail: null,
|
2021-02-17 23:57:51 +08:00
|
|
|
ssoLastPayload: null,
|
2013-06-26 06:39:20 +08:00
|
|
|
|
2015-08-08 03:08:27 +08:00
|
|
|
showBadges: setting("enable_badges"),
|
2019-10-31 07:18:29 +08:00
|
|
|
hasLockedTrustLevel: notEmpty("model.manual_locked_trust_level"),
|
2014-03-05 20:52:20 +08:00
|
|
|
|
2015-08-08 03:08:27 +08:00
|
|
|
primaryGroupDirty: propertyNotEqual(
|
|
|
|
"originalPrimaryGroupId",
|
|
|
|
"model.primary_group_id"
|
|
|
|
),
|
2014-02-11 05:59:36 +08:00
|
|
|
|
2019-10-31 04:28:29 +08:00
|
|
|
canDisableSecondFactor: and(
|
2018-02-20 14:44:51 +08:00
|
|
|
"model.second_factor_enabled",
|
|
|
|
"model.can_disable_second_factor"
|
|
|
|
),
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.customGroups")
|
2018-10-02 12:34:08 +08:00
|
|
|
customGroupIds(customGroups) {
|
|
|
|
return customGroups.mapBy("id");
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("customGroupIdsBuffer", "customGroupIds")
|
2018-10-02 12:34:08 +08:00
|
|
|
customGroupsDirty(buffer, original) {
|
2020-09-22 22:28:28 +08:00
|
|
|
if (buffer === null) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-02 12:34:08 +08:00
|
|
|
|
|
|
|
return buffer.length === original.length
|
|
|
|
? buffer.any((id) => !original.includes(id))
|
|
|
|
: true;
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.automaticGroups")
|
2018-04-13 10:41:29 +08:00
|
|
|
automaticGroups(automaticGroups) {
|
|
|
|
return automaticGroups
|
|
|
|
.map((group) => {
|
2019-11-06 02:43:49 +08:00
|
|
|
const name = htmlSafe(group.name);
|
2019-02-21 13:44:25 +08:00
|
|
|
return `<a href="/g/${name}">${name}</a>`;
|
2018-04-13 10:41:29 +08:00
|
|
|
})
|
|
|
|
.join(", ");
|
|
|
|
},
|
2014-07-14 02:11:38 +08:00
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.associated_accounts")
|
2018-07-23 23:51:57 +08:00
|
|
|
associatedAccountsLoaded(associatedAccounts) {
|
|
|
|
return typeof associatedAccounts !== "undefined";
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.associated_accounts")
|
2018-07-23 23:51:57 +08:00
|
|
|
associatedAccounts(associatedAccounts) {
|
|
|
|
return associatedAccounts
|
|
|
|
.map((provider) => `${provider.name} (${provider.description})`)
|
|
|
|
.join(", ");
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.user_fields.[]")
|
2019-01-22 23:44:55 +08:00
|
|
|
userFields(userFields) {
|
2019-04-05 02:45:04 +08:00
|
|
|
return this.site.collectUserFields(userFields);
|
2017-05-27 03:00:31 +08:00
|
|
|
},
|
|
|
|
|
2019-01-24 21:09:13 +08:00
|
|
|
preferencesPath: fmt("model.username_lower", userPath("%@/preferences")),
|
2019-01-22 23:44:55 +08:00
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed(
|
|
|
|
"model.can_delete_all_posts",
|
|
|
|
"model.staff",
|
|
|
|
"model.post_count"
|
|
|
|
)
|
2018-05-25 23:33:01 +08:00
|
|
|
deleteAllPostsExplanation(canDeleteAllPosts, staff, postCount) {
|
|
|
|
if (canDeleteAllPosts) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (staff) {
|
|
|
|
return I18n.t("admin.user.delete_posts_forbidden_because_staff");
|
|
|
|
}
|
|
|
|
if (postCount > this.siteSettings.delete_all_posts_max) {
|
|
|
|
return I18n.t("admin.user.cant_delete_all_too_many_posts", {
|
|
|
|
count: this.siteSettings.delete_all_posts_max,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return I18n.t("admin.user.cant_delete_all_posts", {
|
|
|
|
count: this.siteSettings.delete_user_max_post_age,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("model.canBeDeleted", "model.staff")
|
2018-05-25 23:33:01 +08:00
|
|
|
deleteExplanation(canBeDeleted, staff) {
|
|
|
|
if (canBeDeleted) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (staff) {
|
|
|
|
return I18n.t("admin.user.delete_forbidden_because_staff");
|
|
|
|
} else {
|
|
|
|
return I18n.t("admin.user.delete_forbidden", {
|
|
|
|
count: this.siteSettings.delete_user_max_post_age,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-10-02 12:34:08 +08:00
|
|
|
groupAdded(added) {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.model
|
2018-10-02 12:34:08 +08:00
|
|
|
.groupAdded(added)
|
2019-01-22 23:44:55 +08:00
|
|
|
.catch(() => bootbox.alert(I18n.t("generic_error")));
|
2018-10-02 12:34:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
groupRemoved(groupId) {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.model
|
2018-10-02 12:34:08 +08:00
|
|
|
.groupRemoved(groupId)
|
|
|
|
.then(() => {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (groupId === this.originalPrimaryGroupId) {
|
2018-10-02 12:34:08 +08:00
|
|
|
this.set("originalPrimaryGroupId", null);
|
|
|
|
}
|
|
|
|
})
|
2019-01-22 23:44:55 +08:00
|
|
|
.catch(() => bootbox.alert(I18n.t("generic_error")));
|
2018-10-02 12:34:08 +08:00
|
|
|
},
|
|
|
|
|
2021-02-17 23:57:51 +08:00
|
|
|
@discourseComputed("ssoLastPayload")
|
2020-09-15 22:00:10 +08:00
|
|
|
ssoPayload(lastPayload) {
|
|
|
|
return lastPayload.split("&");
|
|
|
|
},
|
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
actions: {
|
2016-12-20 19:26:53 +08:00
|
|
|
impersonate() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.impersonate()
|
|
|
|
.then(() => DiscourseURL.redirectTo("/"))
|
|
|
|
.catch((e) => {
|
|
|
|
if (e.status === 404) {
|
|
|
|
bootbox.alert(I18n.t("admin.impersonate.not_found"));
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.impersonate.invalid"));
|
|
|
|
}
|
|
|
|
});
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
logOut() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.logOut()
|
|
|
|
.then(() => bootbox.alert(I18n.t("admin.user.logged_out")));
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
resetBounceScore() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.resetBounceScore();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
approve() {
|
2019-07-26 17:20:11 +08:00
|
|
|
return this.model.approve(this.currentUser);
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
2021-01-20 13:04:21 +08:00
|
|
|
|
|
|
|
_formatError(event) {
|
|
|
|
return `http: ${event.status} - ${event.body}`;
|
|
|
|
},
|
|
|
|
|
2016-12-20 19:26:53 +08:00
|
|
|
deactivate() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.deactivate()
|
|
|
|
.then(() =>
|
|
|
|
this.model.setProperties({ active: false, can_activate: true })
|
|
|
|
)
|
|
|
|
.catch((e) => {
|
|
|
|
const error = I18n.t("admin.user.deactivate_failed", {
|
|
|
|
error: this._formatError(e),
|
|
|
|
});
|
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
sendActivationEmail() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.sendActivationEmail()
|
|
|
|
.then(() => bootbox.alert(I18n.t("admin.user.activation_email_sent")))
|
|
|
|
.catch(popupAjaxError);
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
activate() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.activate()
|
|
|
|
.then(() =>
|
|
|
|
this.model.setProperties({
|
|
|
|
active: true,
|
|
|
|
can_deactivate: !this.model.staff,
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.catch((e) => {
|
|
|
|
const error = I18n.t("admin.user.activate_failed", {
|
|
|
|
error: this._formatError(e),
|
|
|
|
});
|
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
revokeAdmin() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.revokeAdmin();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
grantAdmin() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.grantAdmin()
|
|
|
|
.then(() => {
|
|
|
|
bootbox.alert(I18n.t("admin.user.grant_admin_confirm"));
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
revokeModeration() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.revokeModeration();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
grantModeration() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.grantModeration();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
saveTrustLevel() {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.saveTrustLevel()
|
|
|
|
.then(() => window.location.reload())
|
|
|
|
.catch((e) => {
|
|
|
|
let error;
|
|
|
|
if (e.jqXHR.responseJSON && e.jqXHR.responseJSON.errors) {
|
|
|
|
error = e.jqXHR.responseJSON.errors[0];
|
|
|
|
}
|
|
|
|
error =
|
|
|
|
error ||
|
|
|
|
I18n.t("admin.user.trust_level_change_failed", {
|
|
|
|
error: this._formatError(e),
|
|
|
|
});
|
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
restoreTrustLevel() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.restoreTrustLevel();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
lockTrustLevel(locked) {
|
2021-01-20 13:04:21 +08:00
|
|
|
return this.model
|
|
|
|
.lockTrustLevel(locked)
|
|
|
|
.then(() => window.location.reload())
|
|
|
|
.catch((e) => {
|
|
|
|
let error;
|
|
|
|
if (e.jqXHR.responseJSON && e.jqXHR.responseJSON.errors) {
|
|
|
|
error = e.jqXHR.responseJSON.errors[0];
|
|
|
|
}
|
|
|
|
error =
|
|
|
|
error ||
|
|
|
|
I18n.t("admin.user.trust_level_change_failed", {
|
|
|
|
error: this._formatError(e),
|
|
|
|
});
|
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
2017-11-11 01:18:08 +08:00
|
|
|
},
|
|
|
|
unsilence() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.unsilence();
|
2017-11-11 01:18:08 +08:00
|
|
|
},
|
|
|
|
silence() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.silence();
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
|
|
|
deleteAllPosts() {
|
2021-01-20 13:04:21 +08:00
|
|
|
let deletedPosts = 0;
|
|
|
|
let deletedPercentage = 0;
|
|
|
|
const user = this.model;
|
|
|
|
const message = I18n.messageFormat(
|
|
|
|
"admin.user.delete_all_posts_confirm_MF",
|
|
|
|
{
|
|
|
|
POSTS: user.get("post_count"),
|
|
|
|
TOPICS: user.get("topic_count"),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const performDelete = (progressModal) => {
|
|
|
|
this.model
|
|
|
|
.deleteAllPosts()
|
|
|
|
.then(({ posts_deleted }) => {
|
|
|
|
if (posts_deleted === 0) {
|
|
|
|
user.set("post_count", 0);
|
|
|
|
progressModal.send("closeModal");
|
|
|
|
} else {
|
|
|
|
deletedPosts += posts_deleted;
|
|
|
|
deletedPercentage = Math.floor(
|
|
|
|
(deletedPosts * 100) / user.get("post_count")
|
|
|
|
);
|
|
|
|
progressModal.setProperties({
|
|
|
|
deletedPercentage: deletedPercentage,
|
|
|
|
});
|
|
|
|
performDelete(progressModal);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
progressModal.send("closeModal");
|
|
|
|
let error;
|
|
|
|
AdminUser.find(user.get("id")).then((u) => user.setProperties(u));
|
|
|
|
if (e.jqXHR.responseJSON && e.jqXHR.responseJSON.errors) {
|
|
|
|
error = e.jqXHR.responseJSON.errors[0];
|
|
|
|
}
|
|
|
|
error = error || I18n.t("admin.user.delete_posts_failed");
|
|
|
|
bootbox.alert(error);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const buttons = [
|
|
|
|
{
|
|
|
|
label: I18n.t("composer.cancel"),
|
|
|
|
class: "d-modal-cancel",
|
|
|
|
link: true,
|
|
|
|
},
|
|
|
|
{
|
2021-02-03 04:47:10 +08:00
|
|
|
icon: iconHTML("exclamation-triangle"),
|
|
|
|
label: I18n.t("admin.user.delete_all_posts"),
|
2021-01-20 13:04:21 +08:00
|
|
|
class: "btn btn-danger",
|
|
|
|
callback: () => {
|
|
|
|
const progressModal = openProgressModal();
|
|
|
|
performDelete(progressModal);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const openProgressModal = () => {
|
|
|
|
return showModal("admin-delete-user-posts-progress", {
|
|
|
|
admin: true,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
bootbox.dialog(message, buttons, { classes: "delete-all-posts" });
|
2016-12-20 19:26:53 +08:00
|
|
|
},
|
2021-01-20 13:04:21 +08:00
|
|
|
|
2016-12-20 19:26:53 +08:00
|
|
|
anonymize() {
|
2021-01-20 13:04:21 +08:00
|
|
|
const user = this.model;
|
|
|
|
const message = I18n.t("admin.user.anonymize_confirm");
|
|
|
|
|
|
|
|
const performAnonymize = () => {
|
|
|
|
this.model
|
|
|
|
.anonymize()
|
|
|
|
.then((data) => {
|
|
|
|
if (data.success) {
|
|
|
|
if (data.username) {
|
|
|
|
document.location = getURL(
|
|
|
|
`/admin/users/${user.get("id")}/${data.username}`
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
document.location = getURL("/admin/users/list/active");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.user.anonymize_failed"));
|
|
|
|
if (data.user) {
|
|
|
|
user.setProperties(data.user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => bootbox.alert(I18n.t("admin.user.anonymize_failed")));
|
|
|
|
};
|
|
|
|
const buttons = [
|
|
|
|
{
|
|
|
|
label: I18n.t("composer.cancel"),
|
|
|
|
class: "cancel",
|
|
|
|
link: true,
|
|
|
|
},
|
|
|
|
{
|
2021-02-03 04:47:10 +08:00
|
|
|
label: I18n.t("admin.user.anonymize_yes"),
|
2021-01-20 13:04:21 +08:00
|
|
|
class: "btn btn-danger",
|
2021-02-03 04:47:10 +08:00
|
|
|
icon: iconHTML("exclamation-triangle"),
|
2021-01-20 13:04:21 +08:00
|
|
|
callback: () => {
|
|
|
|
performAnonymize();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
bootbox.dialog(message, buttons, { classes: "delete-user-modal" });
|
2017-12-22 09:18:12 +08:00
|
|
|
},
|
2021-01-20 13:04:21 +08:00
|
|
|
|
2017-12-22 09:18:12 +08:00
|
|
|
disableSecondFactor() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.model.disableSecondFactor();
|
2018-06-15 23:03:24 +08:00
|
|
|
},
|
2018-05-25 23:45:42 +08:00
|
|
|
|
|
|
|
clearPenaltyHistory() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const user = this.model;
|
2019-01-22 23:44:55 +08:00
|
|
|
const path = `/admin/users/${user.get("id")}/penalty_history`;
|
|
|
|
|
|
|
|
return ajax(path, { type: "DELETE" })
|
|
|
|
.then(() => user.set("tl3_requirements.penalty_counts.total", 0))
|
2018-05-25 23:45:42 +08:00
|
|
|
.catch(popupAjaxError);
|
|
|
|
},
|
|
|
|
|
2018-03-05 12:32:23 +08:00
|
|
|
destroy() {
|
|
|
|
const postCount = this.get("model.post_count");
|
2020-03-16 20:51:28 +08:00
|
|
|
const maxPostCount = this.siteSettings.delete_all_posts_max;
|
2021-01-20 13:04:21 +08:00
|
|
|
const message = I18n.t("admin.user.delete_confirm");
|
|
|
|
const location = document.location.pathname;
|
|
|
|
|
|
|
|
const performDestroy = (block) => {
|
|
|
|
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 (postCount <= maxPostCount) {
|
|
|
|
formData["delete_posts"] = true;
|
|
|
|
}
|
|
|
|
this.model
|
|
|
|
.destroy(formData)
|
|
|
|
.then((data) => {
|
|
|
|
if (data.deleted) {
|
|
|
|
if (/^\/admin\/users\/list\//.test(location)) {
|
|
|
|
document.location = location;
|
|
|
|
} else {
|
|
|
|
document.location = getURL("/admin/users/list/active");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.user.delete_failed"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
bootbox.alert(I18n.t("admin.user.delete_failed"));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const buttons = [
|
|
|
|
{
|
|
|
|
label: I18n.t("composer.cancel"),
|
|
|
|
class: "btn",
|
|
|
|
link: true,
|
|
|
|
},
|
|
|
|
{
|
2021-02-03 04:47:10 +08:00
|
|
|
icon: iconHTML("exclamation-triangle"),
|
|
|
|
label: I18n.t("admin.user.delete_and_block"),
|
2021-01-20 13:04:21 +08:00
|
|
|
class: "btn btn-danger",
|
|
|
|
callback: () => {
|
|
|
|
performDestroy(true);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: I18n.t("admin.user.delete_dont_block"),
|
|
|
|
class: "btn btn-primary",
|
|
|
|
callback: () => {
|
|
|
|
performDestroy(false);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
bootbox.dialog(message, buttons, { classes: "delete-user-modal" });
|
2018-03-05 12:32:23 +08:00
|
|
|
},
|
|
|
|
|
2020-04-22 16:37:51 +08:00
|
|
|
promptTargetUser() {
|
|
|
|
showModal("admin-merge-users-prompt", {
|
|
|
|
admin: true,
|
|
|
|
model: this.model,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
showMergeConfirmation(targetUsername) {
|
|
|
|
showModal("admin-merge-users-confirmation", {
|
|
|
|
admin: true,
|
|
|
|
model: {
|
|
|
|
username: this.model.username,
|
2020-04-22 19:10:59 +08:00
|
|
|
targetUsername,
|
2020-04-22 16:37:51 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
merge(targetUsername) {
|
2021-01-20 13:04:21 +08:00
|
|
|
const user = this.model;
|
|
|
|
const location = document.location.pathname;
|
|
|
|
|
|
|
|
let formData = { context: location };
|
|
|
|
|
|
|
|
if (targetUsername) {
|
|
|
|
formData["target_username"] = targetUsername;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.model
|
|
|
|
.merge(formData)
|
|
|
|
.then((response) => {
|
|
|
|
if (response.success) {
|
|
|
|
showModal("admin-merge-users-progress", {
|
|
|
|
admin: true,
|
|
|
|
model: this.model,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.user.merge_failed"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
AdminUser.find(user.id).then((u) => user.setProperties(u));
|
|
|
|
bootbox.alert(I18n.t("admin.user.merge_failed"));
|
|
|
|
});
|
2020-04-22 16:37:51 +08:00
|
|
|
},
|
|
|
|
|
2018-01-27 04:40:03 +08:00
|
|
|
viewActionLogs() {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.adminTools.showActionLogs(this, {
|
2018-01-27 04:40:03 +08:00
|
|
|
target_user: this.get("model.username"),
|
|
|
|
});
|
|
|
|
},
|
2017-09-13 05:07:42 +08:00
|
|
|
showSuspendModal() {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.adminTools.showSuspendModal(this.model);
|
2017-09-13 05:07:42 +08:00
|
|
|
},
|
2017-09-14 02:11:33 +08:00
|
|
|
unsuspend() {
|
2019-05-27 16:42:53 +08:00
|
|
|
this.model.unsuspend().catch(popupAjaxError);
|
2017-09-14 02:11:33 +08:00
|
|
|
},
|
2017-11-14 02:41:36 +08:00
|
|
|
showSilenceModal() {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.adminTools.showSilenceModal(this.model);
|
2017-11-14 02:41:36 +08:00
|
|
|
},
|
2017-09-13 05:07:42 +08:00
|
|
|
|
2018-12-17 22:28:29 +08:00
|
|
|
saveUsername(newUsername) {
|
2017-04-03 01:35:30 +08:00
|
|
|
const oldUsername = this.get("model.username");
|
2018-12-17 22:28:29 +08:00
|
|
|
this.set("model.username", newUsername);
|
2017-04-03 01:35:30 +08:00
|
|
|
|
2019-01-22 23:44:55 +08:00
|
|
|
const path = `/users/${oldUsername.toLowerCase()}/preferences/username`;
|
|
|
|
|
|
|
|
return ajax(path, { data: { new_username: newUsername }, type: "PUT" })
|
2017-04-03 01:35:30 +08:00
|
|
|
.catch((e) => {
|
|
|
|
this.set("model.username", oldUsername);
|
|
|
|
popupAjaxError(e);
|
|
|
|
})
|
|
|
|
.finally(() => this.toggleProperty("editingUsername"));
|
|
|
|
},
|
|
|
|
|
2018-12-17 22:28:29 +08:00
|
|
|
saveName(newName) {
|
2017-04-03 01:35:30 +08:00
|
|
|
const oldName = this.get("model.name");
|
2018-12-17 22:28:29 +08:00
|
|
|
this.set("model.name", newName);
|
2018-06-15 23:03:24 +08:00
|
|
|
|
2019-01-22 23:44:55 +08:00
|
|
|
const path = userPath(`${this.get("model.username").toLowerCase()}.json`);
|
|
|
|
|
|
|
|
return ajax(path, { data: { name: newName }, type: "PUT" })
|
2017-04-03 01:35:30 +08:00
|
|
|
.catch((e) => {
|
|
|
|
this.set("model.name", oldName);
|
|
|
|
popupAjaxError(e);
|
|
|
|
})
|
|
|
|
.finally(() => this.toggleProperty("editingName"));
|
|
|
|
},
|
|
|
|
|
2018-12-17 22:28:29 +08:00
|
|
|
saveTitle(newTitle) {
|
|
|
|
const oldTitle = this.get("model.title");
|
|
|
|
this.set("model.title", newTitle);
|
2019-01-22 23:44:55 +08:00
|
|
|
|
|
|
|
const path = userPath(`${this.get("model.username").toLowerCase()}.json`);
|
|
|
|
|
|
|
|
return ajax(path, { data: { title: newTitle }, type: "PUT" })
|
2017-04-03 01:35:30 +08:00
|
|
|
.catch((e) => {
|
2018-12-17 22:28:29 +08:00
|
|
|
this.set("model.title", oldTitle);
|
2017-04-03 01:35:30 +08:00
|
|
|
popupAjaxError(e);
|
|
|
|
})
|
|
|
|
.finally(() => this.toggleProperty("editingTitle"));
|
2013-10-23 03:53:08 +08:00
|
|
|
},
|
|
|
|
|
2018-10-02 12:34:08 +08:00
|
|
|
saveCustomGroups() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const currentIds = this.customGroupIds;
|
|
|
|
const bufferedIds = this.customGroupIdsBuffer;
|
|
|
|
const availableGroups = this.availableGroups;
|
2018-10-02 12:34:08 +08:00
|
|
|
|
2019-01-18 02:05:39 +08:00
|
|
|
bufferedIds
|
|
|
|
.filter((id) => !currentIds.includes(id))
|
2019-01-22 23:44:55 +08:00
|
|
|
.forEach((id) => this.groupAdded(availableGroups.findBy("id", id)));
|
2018-10-02 12:34:08 +08:00
|
|
|
|
|
|
|
currentIds
|
|
|
|
.filter((id) => !bufferedIds.includes(id))
|
|
|
|
.forEach((id) => this.groupRemoved(id));
|
2014-07-14 02:11:38 +08:00
|
|
|
},
|
2014-07-15 22:11:39 +08:00
|
|
|
|
2018-10-02 12:34:08 +08:00
|
|
|
resetCustomGroups() {
|
2020-02-03 21:22:14 +08:00
|
|
|
this.set("customGroupIdsBuffer", this.model.customGroups.mapBy("id"));
|
2014-07-14 02:11:38 +08:00
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
savePrimaryGroup() {
|
2019-01-22 23:44:55 +08:00
|
|
|
const primaryGroupId = this.get("model.primary_group_id");
|
|
|
|
const path = `/admin/users/${this.get("model.id")}/primary_group`;
|
2015-03-18 05:59:05 +08:00
|
|
|
|
2019-01-22 23:44:55 +08:00
|
|
|
return ajax(path, {
|
2014-02-11 05:59:36 +08:00
|
|
|
type: "PUT",
|
2019-01-22 23:44:55 +08:00
|
|
|
data: { primary_group_id: primaryGroupId },
|
2014-02-11 05:59:36 +08:00
|
|
|
})
|
2019-01-22 23:44:55 +08:00
|
|
|
.then(() => this.set("originalPrimaryGroupId", primaryGroupId))
|
|
|
|
.catch(() => bootbox.alert(I18n.t("generic_error")));
|
2014-02-11 05:59:36 +08:00
|
|
|
},
|
|
|
|
|
2015-03-18 05:59:05 +08:00
|
|
|
resetPrimaryGroup() {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.set("model.primary_group_id", this.originalPrimaryGroupId);
|
2013-09-17 02:08:55 +08:00
|
|
|
},
|
2020-09-15 22:00:10 +08:00
|
|
|
|
|
|
|
deleteSSORecord() {
|
|
|
|
return bootbox.confirm(
|
2021-02-08 18:04:33 +08:00
|
|
|
I18n.t("admin.user.discourse_connect.confirm_delete"),
|
2020-09-15 22:00:10 +08:00
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
2021-01-23 03:16:43 +08:00
|
|
|
(confirmed) => {
|
|
|
|
if (confirmed) {
|
|
|
|
return this.model.deleteSSORecord();
|
|
|
|
}
|
2020-09-15 22:00:10 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
2020-11-11 03:12:44 +08:00
|
|
|
|
|
|
|
checkSsoEmail() {
|
|
|
|
return ajax(userPath(`${this.model.username_lower}/sso-email.json`), {
|
|
|
|
data: { context: window.location.pathname },
|
|
|
|
}).then((result) => {
|
|
|
|
if (result) {
|
|
|
|
this.set("ssoExternalEmail", result.email);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2021-02-17 23:57:51 +08:00
|
|
|
|
|
|
|
checkSsoPayload() {
|
|
|
|
return ajax(userPath(`${this.model.username_lower}/sso-payload.json`), {
|
|
|
|
data: { context: window.location.pathname },
|
|
|
|
}).then((result) => {
|
|
|
|
if (result) {
|
|
|
|
this.set("ssoLastPayload", result.payload);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2013-09-17 02:08:55 +08:00
|
|
|
},
|
2013-07-09 07:32:16 +08:00
|
|
|
});
|