discourse/app/assets/javascripts/admin/controllers/admin-logs-screened-ip-addr...

48 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-04-08 14:17:21 -04:00
import Presence from 'discourse/mixins/presence';
2014-12-22 11:17:04 -05:00
import { outputExportResult } from 'discourse/lib/export-result';
2014-12-06 23:15:22 -05:00
2015-04-08 14:17:21 -04:00
export default Ember.ArrayController.extend(Presence, {
loading: false,
itemController: 'admin-log-screened-ip-address',
2015-02-10 13:38:59 -05:00
filter: null,
2015-02-10 13:38:59 -05:00
show: Discourse.debounce(function() {
var self = this;
2014-12-06 23:15:22 -05:00
self.set('loading', true);
2015-02-10 13:38:59 -05:00
Discourse.ScreenedIpAddress.findAll(this.get("filter")).then(function(result) {
2014-10-31 17:35:27 -04:00
self.set('model', result);
self.set('loading', false);
});
2015-02-10 13:38:59 -05:00
}, 250).observes("filter"),
actions: {
recordAdded(arg) {
2014-10-31 17:35:27 -04:00
this.get("model").unshiftObject(arg);
},
rollUp() {
const self = this;
return bootbox.confirm(I18n.t("admin.logs.screened_ips.roll_up_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function (confirmed) {
if (confirmed) {
self.set("loading", true);
return Discourse.ScreenedIpAddress.rollUp().then(function(results) {
if (results && results.subnets) {
if (results.subnets.length > 0) {
self.send("show");
bootbox.alert(I18n.t("admin.logs.screened_ips.rolled_up_some_subnets", { subnets: results.subnets.join(", ") }));
} else {
self.set("loading", false);
bootbox.alert(I18n.t("admin.logs.screened_ips.rolled_up_no_subnet"));
}
}
});
}
});
2014-12-06 23:15:22 -05:00
},
exportScreenedIpList() {
2014-12-06 23:15:22 -05:00
Discourse.ExportCsv.exportScreenedIpList().then(outputExportResult);
}
}
});