summaryrefslogtreecommitdiffstats
path: root/assets/pages-src/misc/matomo.bvr
blob: d57beb05e826e18232c2f3db77fa99acd8ee6958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// @begin=js@

var BEZIAPP_USERNAME, BEZIAPP_PASSWORD, BEZIAPP_LOPOLIS_USERNAME, BEZIAPP_LOPOLIS_PASSWORD, BEZIAPP_LANGUAGE, BEZIAPP_THEME, BEZIAPP_ERRORREPORTING;

let promises_to_run_app = [
	localforage.getItem("username").then((value) => {
		BEZIAPP_USERNAME = value;
	}),
	localforage.getItem("password").then((value) => {
		BEZIAPP_PASSWORD = value;
	}),
	localforage.getItem("lopolis_username").then((value) => {
		BEZIAPP_LOPOLIS_USERNAME = value;
	}),
	localforage.getItem("lopolis_password").then((value) => {
		BEZIAPP_LOPOLIS_PASSWORD = value;
	}),
	localforage.getItem("chosenLang").then((value) => {
		BEZIAPP_LANGUAGE = value;
	}),
	localforage.getItem("theme").then((value) => {
		BEZIAPP_THEME = value;
	}),
	localforage.getItem("errorReporting").then((value) => {
		BEZIAPP_ERRORREPORTING = value;
	})
];

Promise.all(promises_to_run_app).then(() => {

if (BEZIAPP_USERNAME == null || BEZIAPP_USERNAME == "") {
	var username_report = "neprijavljen.uporabnik";
} else {
	var username_report = BEZIAPP_USERNAME;
}
if (BEZIAPP_LOPOLIS_USERNAME == null || BEZIAPP_LOPOLIS_USERNAME == "") {
	var lopolis_username_report = "NEPRIJAVLJENUPORABNIK";
} else {
	var lopolis_username_report = BEZIAPP_LOPOLIS_USERNAME;
}
if (BEZIAPP_LANGUAGE == null || BEZIAPP_LANGUAGE == "") {
	var language_report = "unspecified_language";
} else {
	var language_report = BEZIAPP_LANGUAGE
}
if (BEZIAPP_THEME == null || BEZIAPP_THEME == "") {
	var theme_report = "unspecified_theme";
} else {
	var theme_report = BEZIAPP_THEME;
}
if (BEZIAPP_ERRORREPORTING == null || BEZIAPP_ERRORREPORTING == "") {
	var errorreporting_report = "unspecified-errorreporting";
} else {
	var errorreporting_report = BEZIAPP_ERRORREPORTING;
}

var _paq = window._paq = window._paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  _paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
  _paq.push(["setDoNotTrack", true]);
	_paq.push(['setUserId', username_report]);
	_paq.push(['enableHeartBeatTimer', 30]);
	_paq.push(['setCustomVariable', 1, 'lopolis-username', lopolis_username_report, 'visit']);
	_paq.push(['setCustomVariable', 2, 'language', language_report, 'visit']);
	_paq.push(['setCustomVariable', 3, 'theme', theme_report, 'visit']);
	_paq.push(['setCustomVariable', 4, 'errorreporting', errorreporting_report, 'visit']);
	_paq.push(['setCustomVariable', 5, 'domain', window.location.host, 'visit']);
  _paq.push(['trackPageView']);
	_paq.push(['trackAllContentImpressions']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//matomo.gimb.tk/";
    _paq.push(['setTrackerUrl', u+'matomo.php']);
    _paq.push(['setSiteId', '1']);
    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);
  })();

});