2015-11-20 20:27:06 -05:00
|
|
|
const ScreenedIpAddress = Discourse.Model.extend({
|
2013-10-21 14:49:51 -04:00
|
|
|
actionName: function() {
|
2013-10-24 17:18:10 -04:00
|
|
|
return I18n.t("admin.logs.screened_ips.actions." + this.get('action_name'));
|
|
|
|
}.property('action_name'),
|
2013-10-22 16:30:30 -04:00
|
|
|
|
|
|
|
isBlocked: function() {
|
2013-10-24 17:18:10 -04:00
|
|
|
return (this.get('action_name') === 'block');
|
|
|
|
}.property('action_name'),
|
2013-10-22 16:30:30 -04:00
|
|
|
|
|
|
|
actionIcon: function() {
|
2015-05-11 13:16:44 -04:00
|
|
|
return (this.get('action_name') === 'block') ? 'ban' : 'check';
|
2013-10-24 17:18:10 -04:00
|
|
|
}.property('action_name'),
|
2013-10-22 16:30:30 -04:00
|
|
|
|
|
|
|
save: function() {
|
2013-10-24 17:18:10 -04:00
|
|
|
return Discourse.ajax("/admin/logs/screened_ip_addresses" + (this.id ? '/' + this.id : '') + ".json", {
|
|
|
|
type: this.id ? 'PUT' : 'POST',
|
|
|
|
data: {ip_address: this.get('ip_address'), action_name: this.get('action_name')}
|
2013-10-22 16:30:30 -04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
return Discourse.ajax("/admin/logs/screened_ip_addresses/" + this.get('id') + ".json", {type: 'DELETE'});
|
|
|
|
}
|
2013-10-21 14:49:51 -04:00
|
|
|
});
|
|
|
|
|
2015-11-20 20:27:06 -05:00
|
|
|
ScreenedIpAddress.reopenClass({
|
2015-02-10 13:38:59 -05:00
|
|
|
findAll: function(filter) {
|
|
|
|
return Discourse.ajax("/admin/logs/screened_ip_addresses.json", { data: { filter: filter } }).then(function(screened_ips) {
|
2013-10-21 14:49:51 -04:00
|
|
|
return screened_ips.map(function(b) {
|
2015-11-20 20:27:06 -05:00
|
|
|
return ScreenedIpAddress.create(b);
|
2013-10-21 14:49:51 -04:00
|
|
|
});
|
|
|
|
});
|
2014-11-24 11:25:48 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
rollUp: function() {
|
|
|
|
return Discourse.ajax("/admin/logs/screened_ip_addresses/roll_up", { type: "POST" });
|
2013-10-21 14:49:51 -04:00
|
|
|
}
|
|
|
|
});
|
2015-11-20 20:27:06 -05:00
|
|
|
|
|
|
|
export default ScreenedIpAddress;
|