Files
web/scripts/pi-hole/js/messages.js
XhmikosR cf6a59d63f Disable a few xo rules for now.
Signed-off-by: XhmikosR <xhmikosr@gmail.com>
2021-04-13 19:25:35 +00:00

140 lines
3.7 KiB
JavaScript

/* Pi-hole: A black hole for Internet advertisements
* (c) 2017 Pi-hole, LLC (https://pi-hole.net)
* Network-wide ad blocking via your own hardware.
*
* This file is copyright under the latest version of the EUPL.
* Please see LICENSE file for your rights under this license. */
/* global utils:false */
var token = $("#token").text();
function renderTimestamp(data, type) {
// Display and search content
if (type === "display" || type === "filter") {
return utils.datetime(data);
}
// Sorting content
return data;
}
function multline(input) {
return input.split(",").join("\n");
}
function renderMessage(data, type, row) {
// Display and search content
switch (row.type) {
case "REGEX":
return (
'Encountered an error when processing <a href="groups-domains.php?domainid=' +
row.blob3 +
'">' +
row.blob1 +
" regex filter with ID " +
row.blob3 +
"</a>:<pre>" +
row.blob2 +
"</pre>Error message: <pre>" +
row.message +
"</pre>"
);
case "SUBNET":
return (
"Client <code>" +
row.message +
"</code> is managed by " +
row.blob1 +
" groups (database IDs [" +
row.blob3 +
"]):<pre>" +
multline(row.blob2) +
"</pre>" +
"FTL chose the most recent entry <pre>" +
row.blob4 +
"</pre> to get the group configuration for this client."
);
case "HOSTNAME":
// eslint-disable-next-line unicorn/no-new-array
var hint = new Array(row.blob2 + row.message.length + 3).join(" ");
return (
"Hostname contains invalid character <code>" +
decodeURIComponent(escape(row.blob1))[row.blob2] +
"</code>:<pre>" +
hint +
"&darr;\n" +
row.message +
": " +
decodeURIComponent(escape(row.blob1)) +
"\n" +
hint +
"&uarr;</pre>"
);
case "DNSMASQ_CONFIG":
return "FTL failed to start due to " + row.message;
default:
return "Unknown message type<pre>" + JSON.stringify(row) + "</pre>";
}
}
$(function () {
$("#messagesTable").DataTable({
ajax: {
url: "api_db.php?messages",
data: { token: token },
type: "POST",
dataSrc: "messages"
},
order: [[0, "asc"]],
columns: [
{ data: "id", visible: false },
{ data: "timestamp", width: "8%", render: renderTimestamp },
{ data: "type", width: "8%" },
{ data: "message", orderable: false, render: renderMessage },
{ data: "blob1", visible: false },
{ data: "blob2", visible: false },
{ data: "blob3", visible: false },
{ data: "blob4", visible: false },
{ data: "blob5", visible: false }
],
dom:
"<'row'<'col-sm-4'l><'col-sm-8'f>>" +
"<'row'<'col-sm-12'<'table-responsive'tr>>>" +
"<'row'<'col-sm-5'i><'col-sm-7'p>>",
lengthMenu: [
[10, 25, 50, 100, -1],
[10, 25, 50, 100, "All"]
],
language: {
emptyTable: "No issues found."
},
stateSave: true,
stateSaveCallback: function (settings, data) {
utils.stateSaveCallback("messages-table", data);
},
stateLoadCallback: function () {
var data = utils.stateLoadCallback("messages-table");
// Return if not available
if (data === null) {
return null;
}
// Reset visibility of ID and blob columns
var hiddenCols = [0, 4, 5, 6, 7, 8];
for (var key in hiddenCols) {
if (Object.prototype.hasOwnProperty.call(hiddenCols, key)) {
data.columns[hiddenCols[key]].visible = false;
}
}
// Apply loaded state to table
return data;
}
});
});