umami/tracker/index.js

202 lines
5.0 KiB
JavaScript
Raw Normal View History

2022-02-16 05:58:17 +01:00
import { doNotTrack, hook } from '../lib/web';
import { removeTrailingSlash } from '../lib/url';
2020-07-18 04:15:29 +02:00
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;
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-18 22:40:46 +02:00
const eventClass = /^umami--([a-z]+)--([\w]+[\w-]*)$/;
const eventSelect = "[class*='umami--']";
const trackingDisabled = () =>
(localStorage && localStorage.getItem('umami.disabled')) ||
2020-10-05 07:27:59 +02:00
(dnt && doNotTrack()) ||
(domain && !domains.includes(hostname));
2020-08-21 04:17:27 +02:00
2020-09-01 05:25:31 +02:00
const root = hostUrl
? removeTrailingSlash(hostUrl)
: currentScript.src.split('/').slice(0, -1).join('/');
const endpoint = `${root}/api/collect`;
const screen = `${width}x${height}`;
const 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 assign = (a, b) => {
Object.keys(b).forEach(key => {
if (b[key] !== undefined) a[key] = b[key];
});
2022-03-05 05:36:13 +01:00
return a;
};
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, uuid = website) =>
2020-09-18 22:40:46 +02:00
collect(
'pageview',
2022-03-05 05:36:13 +01:00
assign(getPayload(), {
website: uuid,
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 = (event_name, event_data, url = currentUrl, uuid = website) =>
2020-09-18 22:40:46 +02:00
collect(
'event',
2022-03-05 05:36:13 +01:00
assign(getPayload(), {
website: uuid,
url,
2022-07-30 07:30:09 +02:00
event_name,
event_data,
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);