var vt_guid = '78a46ee8-00ce-4ea3-896a-c00f18f88448'; var cookieName = "visittrackercurrent"; var oldCookieName = "visittrackerold"; var VTStorage = /** @class */ (function () { function VTStorage(cname, pcname) { this.name = cname; this.permanentName = pcname; } VTStorage.prototype.localStorageSupported = function () { try { return "localStorage" in window && window["localStorage"] !== null; } catch (e) { return false; } }; VTStorage.prototype.setCookie = function (cName, value, mins) { var expires = ""; if (mins > 0) { var date = new Date(); date.setTime(date.getTime() + (mins * 60 * 1000)); expires = "; expires=" + date.toUTCString(); document.cookie = cName + "=" + (value || "") + expires + "; path=/"; } else { document.cookie = cName + "=" + (value || "") + "; path=/"; } }; VTStorage.prototype.setVolatile = function (value) { if (this.localStorageSupported()) { sessionStorage.setItem(this.name, value); } else { this.setCookie(this.name, value, 0); } }; VTStorage.prototype.setPermanent = function (value) { if (this.localStorageSupported()) { var date = new Date(); localStorage.setItem(this.permanentName, value); localStorage.setItem(this.permanentName + "time", date.getTime().toString()); } else { } }; VTStorage.prototype.getCookie = function (cName) { var nameEQ = cName + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return null; }; VTStorage.prototype.getVolatile = function () { if (this.localStorageSupported()) { return sessionStorage.getItem(this.name); } else { return this.getCookie(this.name); } }; VTStorage.prototype.getPermanent = function () { if (this.localStorageSupported()) { if (localStorage[this.permanentName + "time"]) { var d = localStorage[this.permanentName + "time"]; var n = Date.now(); var elapsed = (n - d) / (1000 * 60); if (elapsed < 720) { return localStorage.getItem(this.permanentName); } else { this.erasePermanent(); return null; } } } else { return null; } }; VTStorage.prototype.eraseCookie = function (cName) { document.cookie = cName + '=; Max-Age=-99999999;'; }; VTStorage.prototype.erasePermanent = function () { if (this.localStorageSupported()) { localStorage.removeItem(this.permanentName); } else { } }; VTStorage.prototype.eraseVolatile = function () { if (this.localStorageSupported()) { sessionStorage.removeItem(this.name); } else { this.eraseCookie(this.name); } }; return VTStorage; }()); var VisitTracker = /** @class */ (function () { function VisitTracker() { this.sbnoted = false; //this.windowFocused = true; this.focusedSeconds = 0; this.tick = 0; this.d = new Date(); this.xhr = new Image(); this.url = vt_root + "rv/"; this.mousewheelevt = (/Firefox/i.test(navigator.userAgent)) ? "DOMMouseScroll" : "mousewheel"; this.cookie = new VTStorage(cookieName, oldCookieName); } VisitTracker.prototype.sendPulse = function () { var bwidth = -1; var bheight = -1; try { bwidth = window.innerWidth || document.body.clientWidth; bheight = window.innerHeight || document.body.clientHeight; } catch (err) { } var top = window.pageYOffset || document.documentElement.scrollTop, left = window.pageXOffset || document.documentElement.scrollLeft; var transimg = new Image(); transimg.src = this.url + "index/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href) + "&wvri=" + vt_wvri + "&a=pulse&w=" + bwidth + "&h=" + bheight + "&st=" + top + "&sl=" + left; }; VisitTracker.prototype.documentWideClick = function (x, y, tag, tagid) { var clickimg = new Image(); try { clickimg.src = this.url + "rc/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href) + "&x=" + x + "&y=" + y + "&tag=" + tag + "&tagid=" + encodeURI(tagid); this.tick++; } catch (_a) { } }; VisitTracker.prototype.windowBlur = function () { //this.windowFocused = false; var wbimg = new Image(); try { wbimg.src = this.url + "wf/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href) + "&s=" + this.focusedSeconds; this.focusedSeconds = 0; this.tick++; } catch (_a) { } }; VisitTracker.prototype.windowFocus = function () { //this.windowFocused = true; var wbimg = new Image(); try { wbimg.src = this.url + "wb/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href) + "&s=" + this.focusedSeconds; this.focusedSeconds = 0; this.tick++; } catch (_a) { } }; VisitTracker.prototype.firstRequest = function () { //get existing visit id var oldcc = this.getPermanentVisitID(); //set new visit id this.setVisit(); var referer = encodeURIComponent(document.referrer); var path = window.location.href; var browser = ""; try { browser = this.getBrowserDetail(); } catch (err) { browser = ""; } var screenwidth = -1; var screenheight = -1; try { screenwidth = screen.width; screenheight = screen.height; } catch (err) { } var top = window.pageYOffset || document.documentElement.scrollTop, left = window.pageXOffset || document.documentElement.scrollLeft; this.xhr.src = this.url + "fr?wid=" + vt_website_id + "&referer=" + encodeURI(referer) + "&path=" + encodeURI(path) + "&wvri=" + vt_wvri + "&cc=" + this.getVisitID() + "&r=" + this.tick + "&b=" + browser + "&sw=" + screenwidth + "&sh=" + screenheight + "&st=" + top + "&sl=" + left + "&occ=" + oldcc; }; VisitTracker.prototype.getVisitID = function () { var x = this.cookie.getVolatile(); if (x) { return x; } return ""; }; VisitTracker.prototype.setVisit = function () { var x = this.cookie.getVolatile(); if (x) { } else { this.cookie.setVolatile(vt_guid); } }; VisitTracker.prototype.getPermanentVisitID = function () { var x = this.cookie.getPermanent(); if (x) { return x; } return ""; }; VisitTracker.prototype.setPermanentVisit = function (value) { var x = this.cookie.getPermanent(); if (x) { } else { //set permanent cookie to expire in 12 hours this.cookie.setPermanent(value); } }; VisitTracker.prototype.scroller = function (evt) { //Guess the delta. var delta = 0; if (!evt) evt = window.event; if (evt.wheelDelta) { delta = evt.wheelDelta / 120; } else if (evt.detail) { delta = -evt.detail / 3; } var pageHeight = document.documentElement.offsetHeight, windowHeight = window.innerHeight, scrollPosition = window.scrollY || window.pageYOffset || document.body.scrollTop + (document.documentElement && document.documentElement.scrollTop || 0); if ((pageHeight - 150) <= (windowHeight + scrollPosition) && !this.sbnoted) { var sbimg = new Image(); try { sbimg.src = this.url + "sb/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href); this.tick++; this.sbnoted = true; } catch (_a) { } } else if ((pageHeight - 150) > (windowHeight + scrollPosition)) { this.sbnoted = false; } //var body = document.body, // html = document.documentElement; //var height = Math.max(body.scrollHeight, body.offsetHeight, // html.clientHeight, html.scrollHeight, html.offsetHeight); //var scrollTop = window.pageYOffset || document.documentElement.scrollTop; //if (scrollTop >= (height - 100) && !this.sbnoted) { // var sbimg = new Image(); // try { // sbimg.src = this.url + "sb/" + this.tick + "?cc=" + this.getVisitID() + "&path=" + encodeURI(window.location.href); // this.tick++; // this.sbnoted = true; // } // catch{ } //} else if (scrollTop < (height - 150)) { // this.sbnoted = false; //} }; VisitTracker.prototype.getBrowserDetail = function () { var nVer = navigator.appVersion; var nAgt = navigator.userAgent; var browserName = navigator.appName; var fullVersion = '' + parseFloat(navigator.appVersion); var majorVersion = parseInt(navigator.appVersion, 10); var nameOffset, verOffset, ix; // In Opera 15+, the true version is after "OPR/" if ((verOffset = nAgt.indexOf("OPR/")) != -1) { browserName = "Opera"; fullVersion = nAgt.substring(verOffset + 4); } // In older Opera, the true version is after "Opera" or after "Version" else if ((verOffset = nAgt.indexOf("Opera")) != -1) { browserName = "Opera"; fullVersion = nAgt.substring(verOffset + 6); if ((verOffset = nAgt.indexOf("Version")) != -1) fullVersion = nAgt.substring(verOffset + 8); } // In MSIE, the true version is after "MSIE" in userAgent else if ((verOffset = nAgt.indexOf("MSIE")) != -1) { browserName = "Microsoft Internet Explorer"; fullVersion = nAgt.substring(verOffset + 5); } // In Edge, the true version is after "MSIE" in userAgent else if ((verOffset = nAgt.indexOf("Edge")) != -1) { browserName = "Edge"; fullVersion = nAgt.substring(verOffset + 5); } // In Chrome, the true version is after "Chrome" else if ((verOffset = nAgt.indexOf("Chrome")) != -1) { browserName = "Chrome"; fullVersion = nAgt.substring(verOffset + 7); } // In Safari, the true version is after "Safari" or after "Version" else if ((verOffset = nAgt.indexOf("Safari")) != -1) { browserName = "Safari"; fullVersion = nAgt.substring(verOffset + 7); if ((verOffset = nAgt.indexOf("Version")) != -1) fullVersion = nAgt.substring(verOffset + 8); } // In Firefox, the true version is after "Firefox" else if ((verOffset = nAgt.indexOf("Firefox")) != -1) { browserName = "Firefox"; fullVersion = nAgt.substring(verOffset + 8); } // In most other browsers, "name/version" is at the end of userAgent else if ((nameOffset = nAgt.lastIndexOf(' ') + 1) < (verOffset = nAgt.lastIndexOf('/'))) { browserName = nAgt.substring(nameOffset, verOffset); fullVersion = nAgt.substring(verOffset + 1); if (browserName.toLowerCase() == browserName.toUpperCase()) { browserName = navigator.appName; } } // trim the fullVersion string at semicolon/space if present if ((ix = fullVersion.indexOf(";")) != -1) fullVersion = fullVersion.substring(0, ix); if ((ix = fullVersion.indexOf(" ")) != -1) fullVersion = fullVersion.substring(0, ix); majorVersion = parseInt('' + fullVersion, 10); if (isNaN(majorVersion)) { fullVersion = '' + parseFloat(navigator.appVersion); majorVersion = parseInt(navigator.appVersion, 10); } return browserName + " " + fullVersion; }; return VisitTracker; }()); var vtobj = new VisitTracker(); vtobj.xhr.onload = function () { if (vtobj.getPermanentVisitID() == "") { vtobj.setPermanentVisit(vtobj.getVisitID()); } //send pulse setInterval(function () { vtobj.tick++; vtobj.sendPulse(); }, 5000); setInterval(function () { vtobj.focusedSeconds += 1; }, 1000); document.addEventListener("click", function (event) { var tag = "", tagid = ""; if (event.target !== null) { tag = event.target.tagName; if (event.target.getAttribute("id")) { tagid = "#" + event.target.getAttribute("id"); } } vtobj.documentWideClick(event.pageX, event.pageY, tag, tagid); }); window.addEventListener('blur', function (e) { if (document.activeElement == document.querySelector('iframe')) { } else { vtobj.windowBlur(); } }); window.addEventListener('focus', function (e) { vtobj.windowFocus(); }); if (document.addEventListener) { document.addEventListener(vtobj.mousewheelevt, function (e) { vtobj.scroller(e); }, false); } }; vtobj.firstRequest(); //# sourceMappingURL=vt.js.map