Skip to content
Snippets Groups Projects
Commit 66f5b62a authored by mathias.chouet's avatar mathias.chouet
Browse files

#356 - added custom dimension to Matomo, to track electron/cordova clients

parent 62915bec
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,8 @@ export class AppComponent implements OnInit, OnDestroy, Observer {
// évite de mettre en place un bandeau RGPD
this.matomoTracker.disableCookies();
// Set custom dimension for Electron / Cordova / pure Web browser
this.matomoTracker.setCustomDimension(1, this.getRunningPlatform());
// Matomo open-source Web analytics
this.matomoInjector.init("https://stasi.g-eau.fr/", 1);
......@@ -819,6 +821,21 @@ export class AppComponent implements OnInit, OnDestroy, Observer {
return "assets/docs/" + this.appSetupService.language + "/index.html";
}
/**
* Returns a string representing the running platform :
* "cordova", "electron", or "browser"
*/
public getRunningPlatform(): string {
let runningPlatform = "browser";
if (navigator.userAgent.toLowerCase().indexOf("electron") > -1) {
runningPlatform = "electron";
} else if (window.cordova) {
runningPlatform = "cordova";
}
// console.log(">> running platform: ", runningPlatform);
return runningPlatform;
}
/**
* détection de la fermeture de la page/navigateur et demande de confirmation
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment