mirror of https://github.com/louislam/uptime-kuma
feat: add Matomo analytics support
parent
6bade1fe81
commit
a1e63390ab
|
@ -4,7 +4,7 @@ exports.up = function (knex) {
|
|||
.alterTable("status_page", function (table) {
|
||||
table.renameColumn("google_analytics_tag_id", "analytics_id");
|
||||
table.string("analytics_domain_url");
|
||||
table.enu("analytics_type", [ "google", "umami", "plausible" ]).defaultTo(null);
|
||||
table.enu("analytics_type", [ "google", "umami", "plausible", "matomo" ]).defaultTo(null);
|
||||
|
||||
}).then(() => {
|
||||
// After a succesful migration, add google as default for previous pages
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
const googleAnalytics = require("./google-analytics");
|
||||
const umamiAnalytics = require("./umami-analytics");
|
||||
const plausibleAnalytics = require("./plausible-analytics");
|
||||
const matomoAnalytics = require("./matomo-analytics");
|
||||
|
||||
/**
|
||||
* Returns a string that represents the javascript that is required to insert the selected Analytics' script
|
||||
|
@ -16,6 +17,8 @@ function getAnalyticsScript(statusPage) {
|
|||
return umamiAnalytics.getUmamiAnalyticsScript(statusPage.analyticsDomainUrl, statusPage.analyticsId);
|
||||
case "plausible":
|
||||
return plausibleAnalytics.getPlausibleAnalyticsScript(statusPage.analyticsDomainUrl, statusPage.analyticsId);
|
||||
case "matomo":
|
||||
return matomoAnalytics.getMatomoAnalyticsScript(statusPage.analyticsDomainUrl, statusPage.analyticsId);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
@ -32,6 +35,7 @@ function isValidAnalyticsConfig(statusPage) {
|
|||
return statusPage.analyticsId != null;
|
||||
case "umami":
|
||||
case "plausible":
|
||||
case "matomo":
|
||||
return statusPage.analyticsId != null && statusPage.analyticsDomainUrl != null;
|
||||
default:
|
||||
return false;
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
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,
|
||||
};
|
|
@ -16,6 +16,10 @@ const analyticsOptions = [
|
|||
{
|
||||
name: "Plausible",
|
||||
value: "plausible"
|
||||
},
|
||||
{
|
||||
name: "Matomo",
|
||||
value: "matomo"
|
||||
}
|
||||
];
|
||||
</script>
|
||||
|
|
|
@ -22,6 +22,8 @@ test.describe("Status Page", () => {
|
|||
const umamiAnalyticsWebsiteId = "606487e2-bc25-45f9-9132-fa8b065aad46";
|
||||
const plausibleAnalyticsDomainUrl = "example.com";
|
||||
const plausibleAnalyticsDomainsUrls = "one.com,two.com";
|
||||
const matomoUrl = "matomo.com";
|
||||
const matomoSiteId = "123456789";
|
||||
const customCss = "body { background: rgb(0, 128, 128) !important; }";
|
||||
const descriptionText = "This is an example status page.";
|
||||
const incidentTitle = "Example Outage Incident";
|
||||
|
@ -144,6 +146,16 @@ test.describe("Status Page", () => {
|
|||
await screenshot(testInfo, page);
|
||||
expect(await page.locator("head").innerHTML()).toContain(plausibleAnalyticsDomainUrl);
|
||||
expect(await page.locator("head").innerHTML()).toContain(plausibleAnalyticsDomainsUrls);
|
||||
|
||||
await page.getByTestId("edit-button").click();
|
||||
// Fill in matomo analytics after editing
|
||||
await page.getByTestId("analytics-type-select").selectOption("matomo");
|
||||
await page.getByTestId("analytics-domain-url-input").fill(matomoUrl);
|
||||
await page.getByTestId("analytics-id-input").fill(matomoSiteId);
|
||||
await page.getByTestId("save-button").click();
|
||||
await screenshot(testInfo, page);
|
||||
expect(await page.locator("head").innerHTML()).toContain(matomoUrl);
|
||||
expect(await page.locator("head").innerHTML()).toContain(matomoSiteId);
|
||||
});
|
||||
|
||||
// @todo Test certificate expiry
|
||||
|
|
Loading…
Reference in New Issue