umami/tracker/index.js

221 lines
5.5 KiB
JavaScript
Raw Normal View History

2020-08-21 04:17:27 +02:00
(window => {
const {
screen: { width, height },
navigator: { language },
location,
2020-11-02 07:01:30 +01:00
localStorage,
document,
history,
} = window;
const { hostname, pathname, search } = location;
const { currentScript } = document;
if (!currentScript) return;
2022-08-29 00:55:18 +02:00
const assign = (a, b) => {
Object.keys(b).forEach(key => {
if (b[key] !== undefined) a[key] = b[key];
});
return a;
};
const hook = (_this, method, callback) => {
const orig = _this[method];
return (...args) => {
callback.apply(null, args);
return orig.apply(_this, args);
};
};
const doNotTrack = () => {
const { doNotTrack, navigator, external } = window;
const msTrackProtection = 'msTrackingProtectionEnabled';
const msTracking = () => {
return external && msTrackProtection in external && external[msTrackProtection]();
};
const dnt = doNotTrack || navigator.doNotTrack || navigator.msDoNotTrack || msTracking();
return dnt == '1' || dnt === 'yes';
};
const trackingDisabled = () =>
(localStorage && localStorage.getItem('umami.disabled')) ||
(dnt && doNotTrack()) ||
(domain && !domains.includes(hostname));
const _data = 'data-';
const _false = 'false';
const attr = currentScript.getAttribute.bind(currentScript);
const website = attr(_data + 'website-id');
const hostUrl = attr(_data + 'host-url');
const autoTrack = attr(_data + 'auto-track') !== _false;
const dnt = attr(_data + 'do-not-track');
const cssEvents = attr(_data + 'css-events') !== _false;
const domain = attr(_data + 'domains') || '';
const domains = domain.split(',').map(n => n.trim());
2020-09-01 05:25:31 +02:00
const root = hostUrl
2022-08-29 00:55:18 +02:00
? hostUrl.replace(/\/$/, '')
: currentScript.src.split('/').slice(0, -1).join('/');
const endpoint = `${root}/api/collect`;
const screen = `${width}x${height}`;
2022-08-29 00:55:18 +02:00
const eventClass = /^umami--([a-z]+)--([\w]+[\w-]*)$/;
const eventSelect = "[class*='umami--']";
let listeners = {};
let currentUrl = `${pathname}${search}`;
let currentRef = document.referrer;
2022-03-19 06:26:23 +01:00
let cache;
2020-09-18 22:40:46 +02:00
/* Collect metrics */
2020-07-21 04:24:33 +02:00
2022-03-05 05:36:13 +01:00
const getPayload = () => ({
website,
hostname,
screen,
language,
url: currentUrl,
});
const collect = (type, payload) => {
if (trackingDisabled()) return;
2020-09-15 13:54:35 +02:00
return fetch(endpoint, {
method: 'POST',
body: JSON.stringify({ type, payload }),
headers: assign({ 'Content-Type': 'application/json' }, { ['x-umami-cache']: cache }),
})
.then(res => res.text())
.then(text => (cache = text));
2020-09-15 13:54:35 +02:00
};
2020-09-16 12:07:22 +02:00
const trackView = (url = currentUrl, referrer = currentRef, websiteUuid = website) =>
2020-09-18 22:40:46 +02:00
collect(
'pageview',
2022-03-05 05:36:13 +01:00
assign(getPayload(), {
website: websiteUuid,
2020-09-18 22:40:46 +02:00
url,
referrer,
2022-03-05 05:36:13 +01:00
}),
2020-09-18 22:40:46 +02:00
);
const trackEvent = (eventName, eventData, url = currentUrl, websiteUuid = website) =>
2020-09-18 22:40:46 +02:00
collect(
'event',
2022-03-05 05:36:13 +01:00
assign(getPayload(), {
website: websiteUuid,
2022-03-05 05:36:13 +01:00
url,
event_name: eventName,
event_data: eventData,
2022-03-05 05:36:13 +01:00
}),
2020-09-18 22:40:46 +02:00
);
/* Handle events */
2022-01-15 04:10:46 +01:00
const addEvents = node => {
const elements = node.querySelectorAll(eventSelect);
Array.prototype.forEach.call(elements, addEvent);
};
const addEvent = element => {
const get = element.getAttribute.bind(element);
(get('class') || '').split(' ').forEach(className => {
2022-01-21 23:49:18 +01:00
if (!eventClass.test(className)) return;
2020-09-18 22:40:46 +02:00
const [, event, name] = className.split('--');
2022-07-30 07:30:09 +02:00
2022-01-21 23:49:18 +01:00
const listener = listeners[className]
? listeners[className]
: (listeners[className] = e => {
if (
event === 'click' &&
element.tagName === 'A' &&
!(
e.ctrlKey ||
e.shiftKey ||
e.metaKey ||
(e.button && e.button === 1) ||
get('target')
)
) {
e.preventDefault();
trackEvent(name).then(() => {
location.href = get('href');
});
2022-03-05 05:36:13 +01:00
} else {
2022-07-30 07:30:09 +02:00
trackEvent(name);
2022-03-05 05:36:13 +01:00
}
});
element.addEventListener(event, listener, true);
2022-01-21 23:49:18 +01:00
});
2020-09-18 22:40:46 +02:00
};
/* Handle history changes */
2020-09-16 12:07:22 +02:00
const handlePush = (state, title, url) => {
2021-02-02 07:49:00 +01:00
if (!url) return;
currentRef = currentUrl;
const newUrl = url.toString();
if (newUrl.substring(0, 4) === 'http') {
currentUrl = '/' + newUrl.split('/').splice(3).join('/');
} else {
currentUrl = newUrl;
}
if (currentUrl !== currentRef) {
trackView();
2020-09-16 12:07:22 +02:00
}
2020-09-15 13:54:35 +02:00
};
const observeDocument = () => {
const monitorMutate = mutations => {
mutations.forEach(mutation => {
const element = mutation.target;
addEvent(element);
addEvents(element);
});
};
const observer = new MutationObserver(monitorMutate);
observer.observe(document, { childList: true, subtree: true });
};
2020-09-18 22:40:46 +02:00
/* Global */
2020-09-16 12:07:22 +02:00
2020-09-18 22:40:46 +02:00
if (!window.umami) {
const umami = eventValue => trackEvent(eventValue);
2020-09-19 00:26:45 +02:00
umami.trackView = trackView;
umami.trackEvent = trackEvent;
2020-07-19 10:57:01 +02:00
2020-09-18 22:40:46 +02:00
window.umami = umami;
}
/* Start */
2020-09-18 22:40:46 +02:00
if (autoTrack && !trackingDisabled()) {
2020-09-18 22:40:46 +02:00
history.pushState = hook(history, 'pushState', handlePush);
history.replaceState = hook(history, 'replaceState', handlePush);
const update = () => {
2022-01-15 04:10:46 +01:00
if (document.readyState === 'complete') {
trackView();
if (cssEvents) {
addEvents(document);
observeDocument();
}
}
};
2022-03-05 05:36:13 +01:00
document.addEventListener('readystatechange', update, true);
2022-03-05 05:36:13 +01:00
update();
2020-09-03 17:53:39 +02:00
}
2020-08-21 04:17:27 +02:00
})(window);