2014-07-08 04:18:18 +08:00
|
|
|
export default Ember.Component.extend({
|
|
|
|
classNames: ["ip-lookup"],
|
|
|
|
|
|
|
|
city: function () {
|
|
|
|
return [
|
|
|
|
this.get("location.city"),
|
|
|
|
this.get("location.region"),
|
|
|
|
this.get("location.country")
|
|
|
|
].filter(Boolean).join(", ");
|
2014-08-07 03:22:36 +08:00
|
|
|
}.property("location.{city,region,country}"),
|
2014-07-08 04:18:18 +08:00
|
|
|
|
2014-11-25 02:34:04 +08:00
|
|
|
otherAccountsToDelete: function() {
|
|
|
|
// can only delete up to 50 accounts at a time
|
|
|
|
var total = Math.min(50, this.get("totalOthersWithSameIP") || 0);
|
|
|
|
var visible = Math.min(50, this.get("other_accounts.length") || 0);
|
|
|
|
return Math.max(visible, total);
|
|
|
|
}.property("other_accounts", "totalOthersWithSameIP"),
|
|
|
|
|
2014-07-08 04:18:18 +08:00
|
|
|
actions: {
|
|
|
|
lookup: function () {
|
|
|
|
var self = this;
|
|
|
|
this.set("show", true);
|
|
|
|
|
|
|
|
if (!this.get("location")) {
|
|
|
|
Discourse.ajax("/admin/users/ip-info.json", {
|
|
|
|
data: { ip: this.get("ip") }
|
|
|
|
}).then(function (location) {
|
|
|
|
self.set("location", Em.Object.create(location));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
var data = {
|
2014-07-08 04:18:18 +08:00
|
|
|
"ip": this.get("ip"),
|
2014-11-25 01:04:34 +08:00
|
|
|
"exclude": this.get("userId"),
|
2014-11-20 04:38:53 +08:00
|
|
|
"order": "trust_level DESC"
|
2014-11-25 02:34:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Discourse.ajax("/admin/users/total-others-with-same-ip.json", { data: data }).then(function (result) {
|
|
|
|
self.set("totalOthersWithSameIP", result.total);
|
|
|
|
});
|
|
|
|
|
|
|
|
Discourse.AdminUser.findAll("active", data).then(function (users) {
|
2014-07-08 04:18:18 +08:00
|
|
|
self.setProperties({
|
|
|
|
other_accounts: users,
|
2014-11-18 01:17:24 +08:00
|
|
|
otherAccountsLoading: false,
|
2014-07-08 04:18:18 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
hide: function () {
|
|
|
|
this.set("show", false);
|
2014-11-21 02:59:20 +08:00
|
|
|
},
|
|
|
|
|
2014-11-25 01:04:34 +08:00
|
|
|
deleteOtherAccounts: function() {
|
2014-11-21 02:59:20 +08:00
|
|
|
var self = this;
|
2014-11-21 07:31:22 +08:00
|
|
|
bootbox.confirm(I18n.t("ip_lookup.confirm_delete_other_accounts"), I18n.t("no_value"), I18n.t("yes_value"), function (confirmed) {
|
|
|
|
if (confirmed) {
|
2014-11-25 02:34:04 +08:00
|
|
|
self.setProperties({
|
|
|
|
other_accounts: null,
|
|
|
|
otherAccountsLoading: true,
|
|
|
|
totalOthersWithSameIP: null
|
|
|
|
});
|
|
|
|
|
2014-11-21 07:31:22 +08:00
|
|
|
Discourse.ajax("/admin/users/delete-others-with-same-ip.json", {
|
|
|
|
type: "DELETE",
|
|
|
|
data: {
|
|
|
|
"ip": self.get("ip"),
|
2014-11-25 01:04:34 +08:00
|
|
|
"exclude": self.get("userId"),
|
2014-11-21 07:31:22 +08:00
|
|
|
"order": "trust_level DESC"
|
|
|
|
}
|
|
|
|
}).then(function() {
|
|
|
|
self.send("lookup");
|
|
|
|
});
|
2014-11-21 02:59:20 +08:00
|
|
|
}
|
|
|
|
});
|
2014-07-08 04:18:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|