2011-06-21 17:19:10 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder logger javascript file, $Date: 2011-05-27 22:24:17 +0100 (Fri, 27 May 2011) $, $Revision: 3374 $
|
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2011-06-21 17:19:10 +08:00
|
|
|
//
|
|
|
|
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !window.console ) {
|
|
|
|
window.console =
|
2011-06-21 17:19:10 +08:00
|
|
|
{
|
2019-01-19 23:32:40 +08:00
|
|
|
init: function() {},
|
|
|
|
log: function() {},
|
|
|
|
debug: function() {},
|
|
|
|
info: function() {},
|
|
|
|
warn: function() {},
|
|
|
|
error: function() {}
|
2011-06-21 17:19:10 +08:00
|
|
|
};
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !console.debug ) {
|
|
|
|
// IE8 has console but doesn't have console.debug so lets alias it.
|
|
|
|
console.debug = console.log;
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
|
|
|
|
var reportLogs = true;
|
|
|
|
|
|
|
|
var debugParms;
|
|
|
|
var debugReq;
|
|
|
|
|
2019-01-19 23:32:40 +08:00
|
|
|
function logReport( level, message, file, line ) {
|
|
|
|
if ( !reportLogs ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-06-21 17:19:10 +08:00
|
|
|
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( typeof(MooTools) == "undefined" ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* eslint-disable no-caller */
|
2019-01-22 00:12:17 +08:00
|
|
|
if ( arguments && arguments.callee && arguments.callee.caller && arguments.callee.caller.caller && arguments.callee.caller.caller.name ) {
|
2019-01-19 23:32:40 +08:00
|
|
|
message += ' - '+arguments.callee.caller.caller.name+'()';
|
|
|
|
}
|
|
|
|
/* eslint-enable no-caller */
|
2011-06-21 17:19:10 +08:00
|
|
|
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !debugReq ) {
|
2020-04-10 23:14:46 +08:00
|
|
|
debugParms = "view=request&request=log&task=create";
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( Browser ) {
|
2020-04-10 23:14:46 +08:00
|
|
|
debugParms += "&browser[name]="+Browser.name+"&browser[version]="+Browser.version+"&browser[platform]="+(Browser.Platform?Browser.Platform.name:'unknown');
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-04-10 23:14:46 +08:00
|
|
|
debugParms += "&browser[name]=unknown&browser[version]=unknown&browser[platform]=unknown";
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
2020-04-10 23:14:46 +08:00
|
|
|
debugReq = new Request.JSON({url: thisUrl, method: 'post', timeout: AJAX_TIMEOUT, link: 'chain'});
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
|
|
|
var requestParms = debugParms;
|
|
|
|
requestParms += "&level="+level+"&message="+encodeURIComponent(message);
|
|
|
|
if ( file ) {
|
|
|
|
requestParms += "&file="+file;
|
|
|
|
} else if ( location.search ) {
|
|
|
|
//location.search is the querystring part, so ?blah=blah but there is almost never any value to this
|
|
|
|
requestParms += "&file="+location.search;
|
|
|
|
}
|
|
|
|
if ( line ) {
|
|
|
|
requestParms += "&line="+line;
|
|
|
|
}
|
2020-04-10 23:14:46 +08:00
|
|
|
debugReq.send(requestParms);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Panic(message) {
|
|
|
|
console.error(message);
|
|
|
|
logReport("PNC", message);
|
|
|
|
alert("PANIC: "+message);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Fatal(message) {
|
|
|
|
console.error(message);
|
2019-01-19 23:32:40 +08:00
|
|
|
logReport( "FAT", message );
|
|
|
|
alert( "FATAL: "+message );
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Error(message) {
|
|
|
|
console.error(message);
|
|
|
|
logReport("ERR", message);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Warning(message) {
|
|
|
|
console.warn(message);
|
|
|
|
logReport("WAR", message);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Info(message) {
|
|
|
|
console.info(message);
|
|
|
|
logReport("INF", message);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Debug(message) {
|
|
|
|
console.debug(message);
|
|
|
|
//logReport("DBG", message);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
2020-04-10 23:14:46 +08:00
|
|
|
function Dump(value, label) {
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( label ) {
|
2020-04-10 23:14:46 +08:00
|
|
|
console.debug(label+" => ");
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-04-10 23:14:46 +08:00
|
|
|
console.debug(value);
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
window.onerror =
|
2019-01-19 23:32:40 +08:00
|
|
|
function( message, url, line ) {
|
2020-04-10 23:14:46 +08:00
|
|
|
logReport("ERR", message, url, line);
|
2017-03-18 15:00:51 +08:00
|
|
|
};
|
2019-01-22 00:12:17 +08:00
|
|
|
|
|
|
|
window.addEventListener("securitypolicyviolation", function logCSP(evt) {
|
|
|
|
var level = evt.disposition == "enforce" ? "ERR" : "DBG";
|
|
|
|
var message = evt.blockedURI + " violated CSP " + evt.violatedDirective;
|
2020-04-10 23:14:46 +08:00
|
|
|
if ( evt.sample ) {
|
2019-01-22 00:12:17 +08:00
|
|
|
message += " (Sample: " + evt.sample + ")";
|
|
|
|
}
|
|
|
|
logReport(level, message, evt.sourceFile, evt.lineNumber);
|
|
|
|
});
|