mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
5c899c765b
This reverts commit c21457d6a7
.
49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
import debounce from 'discourse/lib/debounce';
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
|
import { exportEntity } from 'discourse/lib/export-csv';
|
|
import ScreenedIpAddress from 'admin/models/screened-ip-address';
|
|
|
|
export default Ember.ArrayController.extend({
|
|
loading: false,
|
|
itemController: 'admin-log-screened-ip-address',
|
|
filter: null,
|
|
|
|
show: debounce(function() {
|
|
var self = this;
|
|
self.set('loading', true);
|
|
ScreenedIpAddress.findAll(this.get("filter")).then(function(result) {
|
|
self.set('model', result);
|
|
self.set('loading', false);
|
|
});
|
|
}, 250).observes("filter"),
|
|
|
|
actions: {
|
|
recordAdded(arg) {
|
|
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 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"));
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|
|
},
|
|
|
|
exportScreenedIpList() {
|
|
exportEntity('screened_ip').then(outputExportResult);
|
|
}
|
|
}
|
|
});
|