2017-05-27 21:47:09 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import MatrixClientPeg from './MatrixClientPeg';
|
2017-05-29 15:26:29 +02:00
|
|
|
import SdkConfig from './SdkConfig';
|
2017-05-27 21:47:09 +02:00
|
|
|
|
|
|
|
function redact(str) {
|
|
|
|
return str.replace(/#\/(room|user)\/(.+)/, "#/$1/<redacted>");
|
|
|
|
}
|
|
|
|
|
|
|
|
class Analytics {
|
|
|
|
constructor() {
|
2017-05-29 18:26:48 +02:00
|
|
|
this._paq = null;
|
2017-05-29 15:26:29 +02:00
|
|
|
this.disabled = true;
|
2017-05-29 18:26:48 +02:00
|
|
|
this.firstPage = true;
|
2017-05-27 21:47:09 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 15:26:29 +02:00
|
|
|
/**
|
|
|
|
* Enable Analytics if initialized but disabled
|
|
|
|
* otherwise try and initalize, no-op if piwik config missing
|
|
|
|
*/
|
|
|
|
enable() {
|
2017-05-29 18:26:48 +02:00
|
|
|
if (this._paq || this._init()) {
|
|
|
|
this.disabled = false;
|
|
|
|
}
|
2017-05-29 15:26:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable Analytics calls, will not fully unload Piwik until a refresh,
|
|
|
|
* but this is second best, Piwik should not pull anything implicitly.
|
|
|
|
*/
|
|
|
|
disable() {
|
|
|
|
this.disabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
_init() {
|
|
|
|
const config = SdkConfig.get();
|
|
|
|
if (!config || !config.piwik || !config.piwik.url || !config.piwik.siteId) return;
|
|
|
|
|
|
|
|
const url = config.piwik.url;
|
|
|
|
const siteId = config.piwik.siteId;
|
|
|
|
const self = this;
|
2017-05-27 21:47:09 +02:00
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
window._paq = this._paq = window._paq || [];
|
|
|
|
|
|
|
|
this._paq.push(['setTrackerUrl', url+'piwik.php']);
|
|
|
|
this._paq.push(['setSiteId', siteId]);
|
|
|
|
this._paq.push(['trackAllContentImpressions']);
|
|
|
|
this._paq.push(['discardHashTag', false]);
|
|
|
|
this._paq.push(['enableHeartBeatTimer']);
|
|
|
|
this._paq.push(['enableLinkTracking', true]);
|
|
|
|
|
2017-05-29 15:26:29 +02:00
|
|
|
(function() {
|
|
|
|
const g = document.createElement('script');
|
|
|
|
const s = document.getElementsByTagName('script')[0];
|
|
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=url+'piwik.js';
|
|
|
|
|
|
|
|
g.onload = function() {
|
|
|
|
console.log('Initialised anonymous analytics');
|
2017-05-29 18:26:48 +02:00
|
|
|
self._paq = window._paq;
|
2017-05-29 15:26:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
s.parentNode.insertBefore(g, s);
|
|
|
|
})();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
trackPageChange() {
|
2017-05-29 15:26:29 +02:00
|
|
|
if (this.disabled) return;
|
2017-05-29 18:26:48 +02:00
|
|
|
if (this.firstPage) {
|
|
|
|
// De-duplicate first page
|
|
|
|
// router seems to hit the fn twice
|
|
|
|
this.firstPage = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._paq.push(['setCustomUrl', redact(window.location.href)]);
|
|
|
|
this._paq.push(['trackPageView']);
|
2017-05-27 21:47:09 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
trackEvent(category, action, name) {
|
2017-05-29 15:26:29 +02:00
|
|
|
if (this.disabled) return;
|
2017-05-29 18:26:48 +02:00
|
|
|
this._paq.push(['trackEvent', category, action, name]);
|
2017-05-27 21:47:09 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
logout() {
|
2017-05-29 15:26:29 +02:00
|
|
|
if (this.disabled) return;
|
2017-05-29 18:26:48 +02:00
|
|
|
this._paq.push(['deleteCookies']);
|
2017-05-27 21:47:09 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
login() { // not used currently
|
2017-05-27 21:47:09 +02:00
|
|
|
const cli = MatrixClientPeg.get();
|
2017-05-29 15:26:29 +02:00
|
|
|
if (this.disabled || !cli) return;
|
2017-05-27 21:47:09 +02:00
|
|
|
|
2017-05-29 18:26:48 +02:00
|
|
|
this._paq.push(['setUserId', `@${cli.getUserIdLocalpart()}:${cli.getDomain()}`]);
|
2017-05-27 21:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!global.mxAnalytics) {
|
|
|
|
global.mxAnalytics = new Analytics();
|
|
|
|
}
|
|
|
|
module.exports = global.mxAnalytics;
|