working counter script

This commit is contained in:
severak 2020-01-16 00:20:03 +01:00
parent 4a7123ba81
commit f90ea024e9
3 changed files with 57 additions and 12 deletions

View File

@ -1,3 +1,3 @@
# milions # Millions
non-tracking web counter/analytics inspired by plausible.io and Simple analytics a non-tracking web counter/analytics inspired by plausible.io and Simple analytics

View File

@ -10,6 +10,6 @@
<p><a href="">ping</a></p> <p><a href="">ping</a></p>
<script src="millions.js"></script> <script src="millions_v1.js"></script>
</body> </body>
</html> </html>

View File

@ -1,14 +1,59 @@
/* Milions non-tracking web counter/analytics */ /* Millions - a non-tracking web counter/analytics */
(function(){ (function(counterHost){
if (!window) return;
if ("doNotTrack" in navigator && navigator["doNotTrack"] === "1") return;
// inspired by:
// https://github.com/simpleanalytics/scripts/blob/master/src/default.js // https://github.com/simpleanalytics/scripts/blob/master/src/default.js
// https://docs.simpleanalytics.com/what-we-collect // https://docs.simpleanalytics.com/what-we-collect
// https://docs.simpleanalytics.com/uniques // https://docs.simpleanalytics.com/uniques
// https://christianheilmann.com/2015/12/25/detecting-adblock-without-an-extra-http-overhead/
var getLocation = function(href) {
console.log('href', document.location.href); var match = href.match(/^(https?\:)\/\/(([^:\/?#]*)(?:\:([0-9]+))?)([\/]{0,1}[^?#]*)(\?[^#]*|)(#.*|)$/);
console.log('ref', document.referrer); return match && {
console.log('DNT', "doNotTrack" in navigator && navigator["doNotTrack"] === "1"); href: href,
console.log('innerWidth', window.innerWidth); protocol: match[1],
console.log('UA', navigator.userAgent); host: match[2],
hostname: match[3],
port: match[4],
pathname: match[5],
search: match[6],
hash: match[7]
} || { href: href };
}
var parseQuery = function(queryString) {
var query = {};
var pairs = (queryString[0] === '?' ? queryString.substr(1) : queryString).split('&');
for (var i = 0; i < pairs.length; i++) {
var pair = pairs[i].split('=');
query[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || '');
}
return query;
}
var selfUrl = getLocation(document.location.href);
// commented out for now // if (selfUrl=='localhost') return;
var refUrl = getLocation(document.referrer);
var bonzUrl = selfUrl.protocol + '//' + counterHost + '/one.php?for=' + selfUrl.hostname + '&path=' + encodeURIComponent(selfUrl.pathname) + '&width=' + window.innerWidth;
if (refUrl.href=='' || (refUrl.hostname && selfUrl.hostname != refUrl.hostname)) {
bonzUrl += '&unique=1';
}
var Q = parseQuery(selfUrl.search);
if (Q.utm_source || Q.ref || Q.pk_campaign) {
bonzUrl += '&ref=' + encodeURIComponent(Q.utm_source || Q.ref || Q.pk_campaign);
} else if (Q.fbclid) {
bonzUrl += '&ref=facebook';
} else if (refUrl.hostname && selfUrl.hostname != refUrl.hostname) {
bonzUrl += '&ref=' + encodeURIComponent(refUrl.hostname + refUrl.pathname);
}
console.log(refUrl.hostname);
var req = new XMLHttpRequest();
req.open("GET", bonzUrl, true);
req.send(null);
// we don't care about response yet
})('localhost'); })('localhost');