/* The MIT License (MIT) Copyright (C) 2017 Vsevolod Stakhov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ define(['jquery', 'footable', 'humanize'], function($, _, Humanize) { var interface = {}; var ft = {}; var htmlEscapes = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '/': '/', '`': '`', '=': '=' }; var htmlEscaper = /[&<>"'\/`=]/g; EscapeHTML = function(string) { return ('' + string).replace(htmlEscaper, function(match) { return htmlEscapes[match]; }); }; escape_HTML_array = function (arr) { arr.forEach(function (d, i) { arr[i] = EscapeHTML(d) }); }; function unix_time_format(tm) { var date = new Date(tm ? tm * 1000 : 0); return date.toLocaleString(); } function preprocess_item(item) { for (var prop in item) { switch (prop) { case "rcpt_mime": case "rcpt_smtp": escape_HTML_array(item[prop]); break; case "symbols": Object.keys(item.symbols).map(function(key) { var sym = item.symbols[key]; if (!sym.name) { sym.name = key; } sym.name = EscapeHTML(key); sym.description = EscapeHTML(sym.description); if (sym.options) { escape_HTML_array(sym.options); } }); break; default: if (typeof (item[prop]) == "string") { item[prop] = EscapeHTML(item[prop]); } } } if (item.action === 'clean' || item.action === 'no action') { item.action = "
" + item.action + "
"; } else if (item.action === 'rewrite subject' || item.action === 'add header' || item.action === 'probable spam') { item.action = "
" + item.action + "
"; } else if (item.action === 'spam' || item.action === 'reject') { item.action = "
" + item.action + "
"; } else { item.action = "
" + item.action + "
"; } var score_content; if (item.score < item.required_score) { score_content = "" + item.score.toFixed(2) + " / " + item.required_score + ""; } else { score_content = "" + item.score.toFixed(2) + " / " + item.required_score + ""; } item.score = { "options": { "sortValue": item.score }, "value": score_content }; if (item.user == null) { item.user = "none"; } } function process_history_v2(data) { var items = []; $.each(data.rows, function (i, item) { preprocess_item(item); Object.keys(item.symbols).map(function(key) { var sym = item.symbols[key]; var str = '' + sym.name + '' + "(" + sym.score + ")"; if (sym.options) { str += '[' + sym.options.join(",") + "]"; } item.symbols[key].str = str; }); item.symbols = Object.keys(item.symbols). map(function(key) { return item.symbols[key]; }). sort(function(e1, e2) { return Math.abs(e1.score) < Math.abs(e2.score); }). map(function(e) { return e.str; }). join("
\n"); item.time = { "value": unix_time_format(item.unix_time), "options": { "sortValue": item.unix_time } }; var scan_time = item.time_real.toFixed(3) + ' / ' + item.time_virtual.toFixed(3); item.scan_time = { "options": { "sortValue": item.time_real }, "value": scan_time }; item.id = item['message-id']; item.rcpt_mime = item.rcpt_mime.join(",​"); items.push(item); }); return items; } function process_history_legacy(data) { var items = []; $.each(data, function (i, item) { item.time = unix_time_format(item.unix_time); preprocess_item(item); item.scan_time = { "options": { "sortValue": item.scan_time }, "value": item.scan_time }; item.time = { "value": unix_time_format(item.unix_time), "options": { "sortValue": item.unix_time } }; items.push(item) }); return items; } function columns_v2() { return [{ "name": "id", "title": "ID", "style": { "font-size": "11px", "minWidth": 130, "overflow": "hidden", "textOverflow": "ellipsis", "wordBreak": "break-all", "whiteSpace": "normal" } }, { "name": "ip", "title": "IP address", "breakpoints": "xs sm md", "style": { "font-size": "11px", "minWidth": 88 } }, { "name": "sender_mime", "title": "From", "breakpoints": "xs sm md", "style": { "font-size": "11px", "minWidth": 100 } }, { "name": "rcpt_mime", "title": "To", "breakpoints": "xs sm md", "style": { "font-size": "11px", "minWidth": 100 } }, { "name": "subject", "title": "Subject", "breakpoints": "xs sm md", "style": { "font-size": "11px", "word-break": "break-all", "minWidth": 150 } }, { "name": "action", "title": "Action", "style": { "font-size": "11px", "minwidth": 82 } }, { "name": "score", "title": "Score", "style": { "font-size": "11px", "maxWidth": 110 }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "name": "symbols", "title": "Symbols", "breakpoints": "all", "style": { "font-size": "11px", "width": 550, "maxWidth": 550 } }, { "name": "size", "title": "Msg size", "breakpoints": "xs sm md", "style": { "font-size": "11px", "minwidth": 50, }, "formatter": Humanize.compactInteger }, { "name": "scan_time", "title": "Scan time", "breakpoints": "xs sm md", "style": { "font-size": "11px", "maxWidth": 72 }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "sorted": true, "direction": "DESC", "name": "time", "title": "Time", "style": { "font-size": "11px" }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "name": "user", "title": "Authenticated user", "breakpoints": "xs sm md", "style": { "font-size": "11px", "minWidth": 100 } }]; } function columns_legacy() { return [{ "name": "id", "title": "ID", "style": { "font-size": "11px", "width": 300, "maxWidth": 300, "overflow": "hidden", "textOverflow": "ellipsis", "wordBreak": "keep-all", "whiteSpace": "nowrap" } }, { "name": "ip", "title": "IP address", "breakpoints": "xs sm", "style": { "font-size": "11px", "width": 150, "maxWidth": 150 } }, { "name": "action", "title": "Action", "style": { "font-size": "11px", "width": 110, "maxWidth": 110 } }, { "name": "score", "title": "Score", "style": { "font-size": "11px", "maxWidth": 110 }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "name": "symbols", "title": "Symbols", "breakpoints": "all", "style": { "font-size": "11px", "width": 550, "maxWidth": 550 } }, { "name": "size", "title": "Message size", "breakpoints": "xs sm", "style": { "font-size": "11px", "width": 120, "maxWidth": 120 }, "formatter": Humanize.compactInteger }, { "name": "scan_time", "title": "Scan time", "breakpoints": "xs sm", "style": { "font-size": "11px", "maxWidth": 80 }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "sorted": true, "direction": "DESC", "name": "time", "title": "Time", "style": { "font-size": "11px" }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { "name": "user", "title": "Authenticated user", "breakpoints": "xs sm", "style": { "font-size": "11px", "width": 200, "maxWidth": 200 } }]; } var process_functions = { "2": process_history_v2, "legacy": process_history_legacy }; var columns = { "2": columns_v2, "legacy": columns_legacy }; function process_history_data(data) { var pf = process_functions.legacy; if (data.version) { var strkey = data.version.toString(); if (process_functions[strkey]) { pf = process_functions[strkey]; } } return pf(data); } function get_history_columns(data) { var func = columns.legacy; if (data.version) { var strkey = data.version.toString(); if (columns[strkey]) { func = columns[strkey]; } } return func(); } interface.getHistory = function (rspamd, tables, neighbours, checked_server) { FooTable.actionFilter = FooTable.Filtering.extend({ construct : function(instance) { this._super(instance); this.actions = [ 'reject', 'add header', 'greylist', 'no action', 'soft reject' ]; this.def = 'Any action'; this.$action = null; }, $create : function() { this._super(); var self = this, $form_grp = $('
', { 'class' : 'form-group' }).append($('