2015-08-11 05:11:27 +08:00
|
|
|
import debounce from 'discourse/lib/debounce';
|
2014-12-23 00:17:04 +08:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
2015-07-25 00:33:53 +08:00
|
|
|
import { exportEntity } from 'discourse/lib/export-csv';
|
2015-11-21 09:27:06 +08:00
|
|
|
import ScreenedIpAddress from 'admin/models/screened-ip-address';
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2016-10-21 01:26:41 +08:00
|
|
|
export default Ember.Controller.extend({
|
2014-07-23 11:20:45 +08:00
|
|
|
loading: false,
|
2015-02-11 02:38:59 +08:00
|
|
|
filter: null,
|
2016-05-19 01:27:39 +08:00
|
|
|
savedIpAddress: null,
|
2014-07-23 11:20:45 +08:00
|
|
|
|
2015-08-11 05:11:27 +08:00
|
|
|
show: debounce(function() {
|
2016-05-19 01:27:39 +08:00
|
|
|
this.set('loading', true);
|
|
|
|
ScreenedIpAddress.findAll(this.get("filter"))
|
|
|
|
.then(result => {
|
|
|
|
this.set('model', result);
|
|
|
|
this.set('loading', false);
|
|
|
|
});
|
2015-02-11 02:38:59 +08:00
|
|
|
}, 250).observes("filter"),
|
2014-07-23 11:20:45 +08:00
|
|
|
|
|
|
|
actions: {
|
2016-05-19 01:27:39 +08:00
|
|
|
allow(record) {
|
|
|
|
record.set('action_name', 'do_nothing');
|
|
|
|
record.save();
|
|
|
|
},
|
|
|
|
|
|
|
|
block(record) {
|
|
|
|
record.set('action_name', 'block');
|
|
|
|
record.save();
|
|
|
|
},
|
|
|
|
|
|
|
|
edit(record) {
|
|
|
|
if (!record.get('editing')) {
|
|
|
|
this.set("savedIpAddress", record.get('ip_address'));
|
|
|
|
}
|
|
|
|
record.set('editing', true);
|
|
|
|
},
|
|
|
|
|
|
|
|
cancel(record) {
|
|
|
|
if (this.get('savedIpAddress') && record.get('editing')) {
|
|
|
|
record.set('ip_address', this.get('savedIpAddress'));
|
|
|
|
}
|
|
|
|
record.set('editing', false);
|
|
|
|
},
|
|
|
|
|
|
|
|
save(record) {
|
|
|
|
const wasEditing = record.get('editing');
|
|
|
|
record.set('editing', false);
|
|
|
|
record.save().then(saved => {
|
|
|
|
if (saved.success) {
|
|
|
|
this.set('savedIpAddress', null);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(saved.errors);
|
|
|
|
if (wasEditing) record.set('editing', true);
|
|
|
|
}
|
|
|
|
}).catch(e => {
|
|
|
|
if (e.responseJSON && e.responseJSON.errors) {
|
|
|
|
bootbox.alert(I18n.t("generic_error_with_reason", {error: e.responseJSON.errors.join('. ')}));
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
|
|
}
|
|
|
|
if (wasEditing) record.set('editing', true);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy(record) {
|
|
|
|
return bootbox.confirm(
|
|
|
|
I18n.t("admin.logs.screened_ips.delete_confirm", { ip_address: record.get('ip_address') }),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
2016-10-21 01:26:41 +08:00
|
|
|
result => {
|
2016-05-19 01:27:39 +08:00
|
|
|
if (result) {
|
|
|
|
record.destroy().then(deleted => {
|
|
|
|
if (deleted) {
|
2016-10-21 01:26:41 +08:00
|
|
|
this.get("model").removeObject(record);
|
2016-05-19 01:27:39 +08:00
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
|
|
}
|
|
|
|
}).catch(e => {
|
|
|
|
bootbox.alert(I18n.t("generic_error_with_reason", {error: "http: " + e.status + " - " + e.body}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
recordAdded(arg) {
|
2014-11-01 05:35:27 +08:00
|
|
|
this.get("model").unshiftObject(arg);
|
2014-11-25 00:25:48 +08:00
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
rollUp() {
|
|
|
|
const self = this;
|
2014-11-25 02:38:47 +08:00
|
|
|
return bootbox.confirm(I18n.t("admin.logs.screened_ips.roll_up_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function (confirmed) {
|
|
|
|
if (confirmed) {
|
2015-02-11 06:20:16 +08:00
|
|
|
self.set("loading", true);
|
2015-11-21 09:27:06 +08:00
|
|
|
return ScreenedIpAddress.rollUp().then(function(results) {
|
2014-11-28 02:29:30 +08:00
|
|
|
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-11-25 02:38:47 +08:00
|
|
|
});
|
|
|
|
}
|
2014-11-25 00:25:48 +08:00
|
|
|
});
|
2014-12-07 12:15:22 +08:00
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
exportScreenedIpList() {
|
2015-07-25 00:33:53 +08:00
|
|
|
exportEntity('screened_ip').then(outputExportResult);
|
2014-07-23 11:20:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|