discourse/app/assets/javascripts/admin/models/screened-ip-address.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
JavaScript
Raw Normal View History

import I18n from "I18n";
import discourseComputed from "discourse-common/utils/decorators";
import { equal } from "@ember/object/computed";
2016-06-30 13:55:44 -04:00
import { ajax } from "discourse/lib/ajax";
2019-11-08 14:13:35 -05:00
import EmberObject from "@ember/object";
2019-11-08 14:13:35 -05:00
const ScreenedIpAddress = EmberObject.extend({
@discourseComputed("action_name")
actionName(actionName) {
return I18n.t(`admin.logs.screened_ips.actions.${actionName}`);
},
isBlocked: equal("action_name", "block"),
@discourseComputed("ip_address")
isRange(ipAddress) {
return ipAddress.indexOf("/") > 0;
},
save() {
2016-06-30 13:55:44 -04:00
return ajax(
"/admin/logs/screened_ip_addresses" +
(this.id ? "/" + this.id : "") +
".json",
{
type: this.id ? "PUT" : "POST",
data: {
ip_address: this.ip_address,
action_name: this.action_name
}
2018-06-15 11:03:24 -04:00
}
);
},
destroy() {
return ajax("/admin/logs/screened_ip_addresses/" + this.id + ".json", {
type: "DELETE"
});
}
});
ScreenedIpAddress.reopenClass({
findAll(filter) {
2016-06-30 13:55:44 -04:00
return ajax("/admin/logs/screened_ip_addresses.json", {
data: { filter: filter }
}).then(screened_ips => screened_ips.map(b => ScreenedIpAddress.create(b)));
},
rollUp() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/logs/screened_ip_addresses/roll_up", { type: "POST" });
}
});
export default ScreenedIpAddress;