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

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

48 lines
1.2 KiB
JavaScript
Raw Normal View History

import { equal } from "@ember/object/computed";
2019-11-09 03:13:35 +08:00
import EmberObject from "@ember/object";
import I18n from "I18n";
2016-07-01 01:55:44 +08:00
import { ajax } from "discourse/lib/ajax";
import discourseComputed from "discourse-common/utils/decorators";
export default class ScreenedIpAddress extends EmberObject {
static findAll(filter) {
return ajax("/admin/logs/screened_ip_addresses.json", {
data: { filter },
}).then((screened_ips) =>
screened_ips.map((b) => ScreenedIpAddress.create(b))
);
}
@equal("action_name", "block") isBlocked;
@discourseComputed("action_name")
actionName(actionName) {
return I18n.t(`admin.logs.screened_ips.actions.${actionName}`);
}
@discourseComputed("ip_address")
isRange(ipAddress) {
return ipAddress.indexOf("/") > 0;
}
save() {
2016-07-01 01:55:44 +08: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 23:03:24 +08:00
}
);
}
destroy() {
return ajax("/admin/logs/screened_ip_addresses/" + this.id + ".json", {
type: "DELETE",
});
}
}