/* 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 ' + row.blob1 + " regex filter with ID " + row.blob3 + ":
" +
        row.blob2 +
        "
Error message:
" +
        row.message +
        "
" ); case "SUBNET": return ( "Client " + row.message + " is managed by " + row.blob1 + " groups (database IDs [" + row.blob3 + "]):
" +
        multline(row.blob2) +
        "
" + "FTL chose the most recent entry
" +
        row.blob4 +
        "
to get the group configuration for this client." ); default: return "Unknown message type
" + JSON.stringify(row) + "
"; } } $(document).ready(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) { // Store current state in client's local storage area localStorage.setItem("messages-table", JSON.stringify(data)); }, stateLoadCallback: function () { // Receive previous state from client's local storage area var data = localStorage.getItem("messages-table"); // Return if not available if (data === null) { return null; } // Parse loaded data data = JSON.parse(data); // Always start on the first page to show most recent queries data.start = 0; // Always start with empty search field data.search.search = ""; // 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; } }); });