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

35 lines
855 B
JavaScript
Raw Normal View History

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