2019-01-22 22:09:04 +08:00
|
|
|
import { default as computed } from "ember-addons/ember-computed-decorators";
|
2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import AdminUser from "admin/models/admin-user";
|
2018-08-20 23:29:20 +08:00
|
|
|
import copyText from "discourse/lib/copy-text";
|
2015-11-21 09:27:06 +08:00
|
|
|
|
2014-07-08 04:18:18 +08:00
|
|
|
export default Ember.Component.extend({
|
|
|
|
classNames: ["ip-lookup"],
|
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
@computed("other_accounts.length", "totalOthersWithSameIP")
|
|
|
|
otherAccountsToDelete(otherAccountsLength, totalOthersWithSameIP) {
|
2014-11-25 02:34:04 +08:00
|
|
|
// can only delete up to 50 accounts at a time
|
2019-01-22 22:09:04 +08:00
|
|
|
const total = Math.min(50, totalOthersWithSameIP || 0);
|
|
|
|
const visible = Math.min(50, otherAccountsLength || 0);
|
2014-11-25 02:34:04 +08:00
|
|
|
return Math.max(visible, total);
|
2019-01-22 22:09:04 +08:00
|
|
|
},
|
2014-11-25 02:34:04 +08:00
|
|
|
|
2014-07-08 04:18:18 +08:00
|
|
|
actions: {
|
2019-01-22 22:09:04 +08:00
|
|
|
lookup() {
|
2014-07-08 04:18:18 +08:00
|
|
|
this.set("show", true);
|
|
|
|
|
|
|
|
if (!this.get("location")) {
|
2019-01-22 22:09:04 +08:00
|
|
|
ajax("/admin/users/ip-info", { data: { ip: this.get("ip") } }).then(
|
|
|
|
location => this.set("location", Ember.Object.create(location))
|
|
|
|
);
|
2014-07-08 04:18:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.get("other_accounts")) {
|
2014-11-18 01:17:24 +08:00
|
|
|
this.set("otherAccountsLoading", true);
|
2014-11-25 02:34:04 +08:00
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
const data = {
|
2018-06-15 23:03:24 +08:00
|
|
|
ip: this.get("ip"),
|
|
|
|
exclude: this.get("userId"),
|
|
|
|
order: "trust_level DESC"
|
2014-11-25 02:34:04 +08:00
|
|
|
};
|
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
ajax("/admin/users/total-others-with-same-ip", { data }).then(result =>
|
|
|
|
this.set("totalOthersWithSameIP", result.total)
|
|
|
|
);
|
2014-11-25 02:34:04 +08:00
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
AdminUser.findAll("active", data).then(users => {
|
|
|
|
this.setProperties({
|
2014-07-08 04:18:18 +08:00
|
|
|
other_accounts: users,
|
2018-06-15 23:03:24 +08:00
|
|
|
otherAccountsLoading: false
|
2014-07-08 04:18:18 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
hide() {
|
2014-07-08 04:18:18 +08:00
|
|
|
this.set("show", false);
|
2014-11-21 02:59:20 +08:00
|
|
|
},
|
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
copy() {
|
2018-08-20 23:29:20 +08:00
|
|
|
let text = `IP: ${this.get("ip")}\n`;
|
|
|
|
const location = this.get("location");
|
|
|
|
if (location) {
|
|
|
|
if (location.hostname) {
|
|
|
|
text += `${I18n.t("ip_lookup.hostname")}: ${location.hostname}\n`;
|
|
|
|
}
|
|
|
|
|
|
|
|
text += I18n.t("ip_lookup.location");
|
2018-10-31 06:08:57 +08:00
|
|
|
if (location.location) {
|
|
|
|
text += `: ${location.location}\n`;
|
2018-08-20 23:29:20 +08:00
|
|
|
} else {
|
|
|
|
text += `: ${I18n.t("ip_lookup.location_not_found")}\n`;
|
|
|
|
}
|
|
|
|
|
2018-10-31 06:08:57 +08:00
|
|
|
if (location.organization) {
|
2018-08-20 23:29:20 +08:00
|
|
|
text += I18n.t("ip_lookup.organisation");
|
2018-10-31 06:08:57 +08:00
|
|
|
text += `: ${location.organization}\n`;
|
2018-08-20 23:29:20 +08:00
|
|
|
}
|
|
|
|
}
|
2019-01-22 22:09:04 +08:00
|
|
|
|
|
|
|
const $copyRange = $('<p id="copy-range"></p>');
|
|
|
|
$copyRange.html(text.trim().replace(/\n/g, "<br>"));
|
|
|
|
$(document.body).append($copyRange);
|
|
|
|
if (copyText(text, $copyRange[0])) {
|
2018-08-24 04:27:08 +08:00
|
|
|
this.set("copied", true);
|
|
|
|
Ember.run.later(() => this.set("copied", false), 2000);
|
|
|
|
}
|
2019-01-22 22:09:04 +08:00
|
|
|
$copyRange.remove();
|
2018-08-20 23:29:20 +08:00
|
|
|
},
|
|
|
|
|
2019-01-22 22:09:04 +08:00
|
|
|
deleteOtherAccounts() {
|
2018-06-15 23:03:24 +08:00
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("ip_lookup.confirm_delete_other_accounts"),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
2019-01-22 22:09:04 +08:00
|
|
|
confirmed => {
|
2018-06-15 23:03:24 +08:00
|
|
|
if (confirmed) {
|
2019-01-22 22:09:04 +08:00
|
|
|
this.setProperties({
|
2018-06-15 23:03:24 +08:00
|
|
|
other_accounts: null,
|
|
|
|
otherAccountsLoading: true,
|
|
|
|
totalOthersWithSameIP: null
|
|
|
|
});
|
2014-11-25 02:34:04 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
ajax("/admin/users/delete-others-with-same-ip.json", {
|
|
|
|
type: "DELETE",
|
|
|
|
data: {
|
2019-01-22 22:09:04 +08:00
|
|
|
ip: this.get("ip"),
|
|
|
|
exclude: this.get("userId"),
|
2018-06-15 23:03:24 +08:00
|
|
|
order: "trust_level DESC"
|
|
|
|
}
|
2019-01-22 22:09:04 +08:00
|
|
|
}).then(() => this.send("lookup"));
|
2018-06-15 23:03:24 +08:00
|
|
|
}
|
2014-11-21 02:59:20 +08:00
|
|
|
}
|
2018-06-15 23:03:24 +08:00
|
|
|
);
|
2014-07-08 04:18:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|