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
|
|
|
|
|
|
|
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-07-08 04:18:18 +08:00
|
|
|
Discourse.AdminUser.findAll("active", {
|
|
|
|
"ip": this.get("ip"),
|
2014-11-20 04:38:53 +08:00
|
|
|
"exclude": this.get("user_id"),
|
|
|
|
"order": "trust_level DESC"
|
2014-07-08 04:18:18 +08:00
|
|
|
}).then(function (users) {
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
deleteAllOtherAccounts: function() {
|
|
|
|
var self = this;
|
|
|
|
this.setProperties({ other_accounts: null, otherAccountsLoading: true });
|
|
|
|
|
|
|
|
Discourse.ajax("/admin/users/delete-others-with-same-ip.json", {
|
|
|
|
type: "DELETE",
|
|
|
|
data: {
|
|
|
|
"ip": this.get("ip"),
|
|
|
|
"exclude": this.get("user_id"),
|
|
|
|
"order": "trust_level DESC"
|
|
|
|
}
|
|
|
|
}).then(function() {
|
|
|
|
self.send("lookup");
|
|
|
|
});
|
2014-07-08 04:18:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|