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

141 lines
3.8 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
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";
2014-12-06 23:15:22 -05:00
export default Ember.Controller.extend({
loading: false,
2015-02-10 13:38:59 -05:00
filter: null,
savedIpAddress: null,
2015-08-10 17:11:27 -04:00
show: debounce(function() {
2018-06-15 11:03:24 -04:00
this.set("loading", true);
ScreenedIpAddress.findAll(this.get("filter")).then(result => {
this.set("model", result);
this.set("loading", false);
});
2015-02-10 13:38:59 -05:00
}, 250).observes("filter"),
actions: {
allow(record) {
2018-06-15 11:03:24 -04:00
record.set("action_name", "do_nothing");
record.save();
},
block(record) {
2018-06-15 11:03:24 -04:00
record.set("action_name", "block");
record.save();
},
edit(record) {
2018-06-15 11:03:24 -04:00
if (!record.get("editing")) {
this.set("savedIpAddress", record.get("ip_address"));
}
2018-06-15 11:03:24 -04:00
record.set("editing", true);
},
cancel(record) {
2018-06-15 11:03:24 -04:00
if (this.get("savedIpAddress") && record.get("editing")) {
record.set("ip_address", this.get("savedIpAddress"));
}
2018-06-15 11:03:24 -04:00
record.set("editing", false);
},
save(record) {
2018-06-15 11:03:24 -04:00
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(
2018-06-15 11:03:24 -04:00
I18n.t("admin.logs.screened_ips.delete_confirm", {
ip_address: record.get("ip_address")
}),
I18n.t("no_value"),
I18n.t("yes_value"),
result => {
if (result) {
2018-06-15 11:03:24 -04:00
record
.destroy()
.then(deleted => {
if (deleted) {
this.get("model").removeObject(record);
} else {
bootbox.alert(I18n.t("generic_error"));
}
})
.catch(e => {
bootbox.alert(
I18n.t("generic_error_with_reason", {
error: "http: " + e.status + " - " + e.body
})
);
});
}
}
);
},
recordAdded(arg) {
2014-10-31 17:35:27 -04:00
this.get("model").unshiftObject(arg);
},
rollUp() {
const self = this;
2018-06-15 11:03:24 -04: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) {
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")
);
}
}
2018-06-15 11:03:24 -04:00
});
}
}
2018-06-15 11:03:24 -04:00
);
2014-12-06 23:15:22 -05:00
},
exportScreenedIpList() {
2018-06-15 11:03:24 -04:00
exportEntity("screened_ip").then(outputExportResult);
}
}
});