2017-06-28 20:30:14 +02:00
|
|
|
function arrayToHex(iv) {
|
2017-06-02 05:59:27 +02:00
|
|
|
let hexStr = '';
|
2017-07-27 17:03:54 +02:00
|
|
|
// eslint-disable-next-line prefer-const
|
2017-07-27 16:46:28 +02:00
|
|
|
for (let i in iv) {
|
2017-06-02 05:59:27 +02:00
|
|
|
if (iv[i] < 16) {
|
|
|
|
hexStr += '0' + iv[i].toString(16);
|
|
|
|
} else {
|
|
|
|
hexStr += iv[i].toString(16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hexStr;
|
|
|
|
}
|
|
|
|
|
2017-06-28 20:30:14 +02:00
|
|
|
function hexToArray(str) {
|
|
|
|
const iv = new Uint8Array(str.length / 2);
|
2017-06-02 05:59:27 +02:00
|
|
|
for (let i = 0; i < str.length; i += 2) {
|
|
|
|
iv[i / 2] = parseInt(str.charAt(i) + str.charAt(i + 1), 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
return iv;
|
|
|
|
}
|
|
|
|
|
2017-06-21 22:23:36 +02:00
|
|
|
function notify(str) {
|
2017-07-26 20:24:58 +02:00
|
|
|
return str;
|
|
|
|
/* TODO: enable once we have an opt-in ui element
|
2017-06-20 21:18:14 +02:00
|
|
|
if (!('Notification' in window)) {
|
2017-06-21 22:23:36 +02:00
|
|
|
return;
|
|
|
|
} else if (Notification.permission === 'granted') {
|
2017-06-21 23:31:21 +02:00
|
|
|
new Notification(str);
|
2017-06-21 22:23:36 +02:00
|
|
|
} else if (Notification.permission !== 'denied') {
|
|
|
|
Notification.requestPermission(function(permission) {
|
2017-06-21 23:31:21 +02:00
|
|
|
if (permission === 'granted') new Notification(str);
|
|
|
|
});
|
2017-06-21 22:23:36 +02:00
|
|
|
}
|
2017-07-26 20:24:58 +02:00
|
|
|
*/
|
2017-06-21 22:23:36 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:27:01 +02:00
|
|
|
function gcmCompliant() {
|
|
|
|
try {
|
2017-07-12 19:53:29 +02:00
|
|
|
return window.crypto.subtle
|
|
|
|
.generateKey(
|
2017-07-10 22:27:01 +02:00
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
2017-07-12 19:53:29 +02:00
|
|
|
length: 128
|
2017-07-10 22:27:01 +02:00
|
|
|
},
|
2017-07-12 19:53:29 +02:00
|
|
|
true,
|
|
|
|
['encrypt', 'decrypt']
|
2017-07-10 22:27:01 +02:00
|
|
|
)
|
2017-07-12 19:53:29 +02:00
|
|
|
.then(key => {
|
|
|
|
return window.crypto.subtle
|
|
|
|
.encrypt(
|
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
|
|
|
iv: window.crypto.getRandomValues(new Uint8Array(12)),
|
|
|
|
additionalData: window.crypto.getRandomValues(new Uint8Array(6)),
|
|
|
|
tagLength: 128
|
|
|
|
},
|
|
|
|
key,
|
|
|
|
new ArrayBuffer(8)
|
|
|
|
)
|
|
|
|
.then(() => {
|
|
|
|
return Promise.resolve();
|
|
|
|
});
|
2017-07-10 22:27:01 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-08-03 23:07:22 +02:00
|
|
|
return loadShim();
|
2017-07-12 19:53:29 +02:00
|
|
|
});
|
|
|
|
} catch (err) {
|
2017-08-03 23:07:22 +02:00
|
|
|
return loadShim();
|
|
|
|
}
|
|
|
|
function loadShim() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const shim = document.createElement('script');
|
|
|
|
shim.src = '/cryptofill.js';
|
|
|
|
shim.addEventListener('load', resolve);
|
|
|
|
shim.addEventListener('error', reject);
|
|
|
|
document.head.appendChild(shim);
|
|
|
|
});
|
2017-07-10 22:27:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-21 00:16:00 +02:00
|
|
|
function findMetric(href) {
|
2017-07-22 02:01:26 +02:00
|
|
|
switch (href) {
|
2017-07-21 00:16:00 +02:00
|
|
|
case 'https://www.mozilla.org/':
|
|
|
|
return 'mozilla';
|
|
|
|
case 'https://www.mozilla.org/about/legal':
|
|
|
|
return 'legal';
|
|
|
|
case 'https://testpilot.firefox.com/about':
|
|
|
|
return 'about';
|
|
|
|
case 'https://testpilot.firefox.com/privacy':
|
|
|
|
return 'privacy';
|
|
|
|
case 'https://testpilot.firefox.com/terms':
|
|
|
|
return 'terms';
|
2017-07-29 08:12:25 +02:00
|
|
|
case 'https://www.mozilla.org/privacy/websites/#cookies':
|
2017-07-21 00:16:00 +02:00
|
|
|
return 'cookies';
|
|
|
|
case 'https://github.com/mozilla/send':
|
|
|
|
return 'github';
|
|
|
|
case 'https://twitter.com/FxTestPilot':
|
|
|
|
return 'twitter';
|
|
|
|
case 'https://www.mozilla.org/firefox/new/?scene=2':
|
|
|
|
return 'download-firefox';
|
|
|
|
default:
|
|
|
|
return 'other';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-21 01:06:06 +02:00
|
|
|
function isFile(id) {
|
2017-08-02 20:17:23 +02:00
|
|
|
return /^[0-9a-fA-F]{10}$/.test(id);
|
2017-07-21 01:06:06 +02:00
|
|
|
}
|
|
|
|
|
2017-07-21 22:25:08 +02:00
|
|
|
function sendEvent() {
|
2017-07-22 02:01:26 +02:00
|
|
|
return window.analytics.sendEvent
|
|
|
|
.apply(window.analytics, arguments)
|
|
|
|
.catch(() => 0);
|
2017-07-21 22:25:08 +02:00
|
|
|
}
|
|
|
|
|
2017-07-21 01:06:06 +02:00
|
|
|
const ONE_DAY_IN_MS = 86400000;
|
|
|
|
|
2017-06-02 05:59:27 +02:00
|
|
|
module.exports = {
|
2017-06-28 20:30:14 +02:00
|
|
|
arrayToHex,
|
|
|
|
hexToArray,
|
2017-07-10 22:27:01 +02:00
|
|
|
notify,
|
2017-07-21 00:16:00 +02:00
|
|
|
gcmCompliant,
|
2017-07-21 01:06:06 +02:00
|
|
|
findMetric,
|
|
|
|
isFile,
|
2017-07-21 22:25:08 +02:00
|
|
|
sendEvent,
|
2017-07-21 01:06:06 +02:00
|
|
|
ONE_DAY_IN_MS
|
2017-06-02 05:59:27 +02:00
|
|
|
};
|