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

40 lines
837 B
JavaScript
Raw Normal View History

2017-06-28 20:30:14 +02:00
function arrayToHex(iv) {
2017-06-02 05:59:27 +02:00
let hexStr = '';
2017-06-09 19:44:12 +02:00
for (const 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);
}
}
window.hexStr = hexStr;
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) {
if (!('Notification' in window)) {
2017-06-21 22:23:36 +02:00
return;
} else if (Notification.permission === 'granted') {
new Notification(str);
2017-06-21 22:23:36 +02:00
} else if (Notification.permission !== 'denied') {
Notification.requestPermission(function(permission) {
if (permission === 'granted') new Notification(str);
});
2017-06-21 22:23:36 +02:00
}
}
2017-06-02 05:59:27 +02:00
module.exports = {
2017-06-28 20:30:14 +02:00
arrayToHex,
hexToArray,
notify
2017-06-02 05:59:27 +02:00
};