discourse/app/assets/javascripts/admin/components/ip-lookup.js.es6

61 lines
1.5 KiB
Plaintext
Raw Normal View History

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(", ");
}.property("location.{city,region,country}"),
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-17 12:17:24 -05:00
this.set("otherAccountsLoading", true);
Discourse.AdminUser.findAll("active", {
"ip": this.get("ip"),
"exclude": this.get("user_id"),
"order": "trust_level DESC"
}).then(function (users) {
self.setProperties({
other_accounts: users,
2014-11-17 12:17:24 -05:00
otherAccountsLoading: false,
});
});
}
},
hide: function () {
this.set("show", false);
},
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");
});
}
}
});