mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-12 20:34:46 +00:00
47 lines
1.7 KiB
JavaScript
47 lines
1.7 KiB
JavaScript
const jsesc = require("jsesc");
|
|
const { escape } = require("html-escaper");
|
|
|
|
/**
|
|
* Returns a string that represents the javascript that is required to insert the Matomo Analytics script
|
|
* into a webpage.
|
|
* @param {string} matomoUrl Domain name with tld to use with the Matomo Analytics script.
|
|
* @param {string} siteId Site ID to use with the Matomo Analytics script.
|
|
* @returns {string} HTML script tags to inject into page
|
|
*/
|
|
function getMatomoAnalyticsScript(matomoUrl, siteId) {
|
|
let escapedMatomoUrlJS = jsesc(matomoUrl, { isScriptContext: true });
|
|
let escapedSiteIdJS = jsesc(siteId, { isScriptContext: true });
|
|
|
|
if (escapedMatomoUrlJS) {
|
|
escapedMatomoUrlJS = escapedMatomoUrlJS.trim();
|
|
}
|
|
|
|
if (escapedSiteIdJS) {
|
|
escapedSiteIdJS = escapedSiteIdJS.trim();
|
|
}
|
|
|
|
// Escape the domain url for use in an HTML attribute.
|
|
let escapedMatomoUrlHTMLAttribute = escape(escapedMatomoUrlJS);
|
|
|
|
// Escape the website id for use in an HTML attribute.
|
|
let escapedSiteIdHTMLAttribute = escape(escapedSiteIdJS);
|
|
|
|
return `
|
|
<script type="text/javascript">
|
|
var _paq = window._paq = window._paq || [];
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//${escapedMatomoUrlHTMLAttribute}/";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', ${escapedSiteIdHTMLAttribute}]);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
`;
|
|
}
|
|
|
|
module.exports = {
|
|
getMatomoAnalyticsScript,
|
|
};
|