drop.chapril.org-firefoxsend/frontend/src/common.js

31 lines
818 B
JavaScript
Raw Normal View History

const testPilotGA = require('testpilot-ga');
const { sendEvent } = require('./utils');
const Raven = require('raven-js');
2017-08-02 23:13:53 +02:00
if (navigator.doNotTrack !== '1' && window.RAVEN_CONFIG) {
Raven.config(window.SENTRY_ID, window.RAVEN_CONFIG).install();
2017-08-02 23:13:53 +02:00
}
const analytics = new testPilotGA({
an: 'Firefox Send',
ds: 'web',
2017-08-02 23:13:53 +02:00
tid: window.GOOGLE_ANALYTICS_ID
2017-07-27 19:01:39 +02:00
});
const ua = navigator.userAgent.toLowerCase();
if (
ua.indexOf('firefox') > -1 &&
parseInt(ua.match(/firefox\/*([^\n\r]*)\./)[1], 10) <= 49
) {
const isSender = !location.pathname.includes('/download');
const ec = isSender ? 'sender' : 'recipient';
sendEvent(ec, 'unsupported', {
cd6: new Error('Firefox is outdated.')
}).then(() => {
location.replace('/unsupported/outdated');
});
}
window.analytics = analytics;
window.Raven = Raven;