2017-06-02 19:38:05 +00:00
|
|
|
const EventEmitter = require('events');
|
2017-06-28 18:30:14 +00:00
|
|
|
const { hexToArray } = require('./utils');
|
2017-06-02 19:38:05 +00:00
|
|
|
|
|
|
|
class FileReceiver extends EventEmitter {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
download() {
|
2017-08-03 17:04:09 +00:00
|
|
|
return window.crypto.subtle
|
|
|
|
.importKey(
|
2017-06-02 19:49:56 +00:00
|
|
|
'jwk',
|
|
|
|
{
|
|
|
|
kty: 'oct',
|
|
|
|
k: location.hash.slice(1),
|
2017-06-28 18:30:14 +00:00
|
|
|
alg: 'A128GCM',
|
2017-06-02 19:49:56 +00:00
|
|
|
ext: true
|
|
|
|
},
|
|
|
|
{
|
2017-06-20 20:03:04 +00:00
|
|
|
name: 'AES-GCM'
|
2017-06-02 19:49:56 +00:00
|
|
|
},
|
|
|
|
true,
|
|
|
|
['encrypt', 'decrypt']
|
|
|
|
)
|
2017-08-03 17:04:09 +00:00
|
|
|
.then(key => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
|
|
|
|
xhr.onprogress = event => {
|
|
|
|
if (event.lengthComputable && event.target.status !== 404) {
|
|
|
|
this.emit('progress', [event.loaded, event.total]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.onload = function(event) {
|
|
|
|
if (xhr.status === 404) {
|
|
|
|
reject(new Error('notfound'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const blob = new Blob([this.response]);
|
|
|
|
const fileReader = new FileReader();
|
|
|
|
fileReader.onload = function() {
|
|
|
|
const meta = JSON.parse(xhr.getResponseHeader('X-File-Metadata'));
|
|
|
|
resolve([
|
|
|
|
{
|
|
|
|
data: this.result,
|
|
|
|
aad: meta.aad,
|
|
|
|
filename: meta.filename,
|
|
|
|
iv: meta.id
|
|
|
|
},
|
|
|
|
key
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
|
|
|
|
fileReader.readAsArrayBuffer(blob);
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.open('get', '/assets' + location.pathname.slice(0, -1), true);
|
|
|
|
xhr.responseType = 'blob';
|
|
|
|
xhr.send();
|
|
|
|
});
|
|
|
|
})
|
2017-07-22 00:01:26 +00:00
|
|
|
.then(([fdata, key]) => {
|
|
|
|
this.emit('decrypting', true);
|
|
|
|
return Promise.all([
|
|
|
|
window.crypto.subtle
|
|
|
|
.decrypt(
|
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
|
|
|
iv: hexToArray(fdata.iv),
|
2017-07-24 19:16:01 +00:00
|
|
|
additionalData: hexToArray(fdata.aad),
|
|
|
|
tagLength: 128
|
2017-07-22 00:01:26 +00:00
|
|
|
},
|
|
|
|
key,
|
|
|
|
fdata.data
|
|
|
|
)
|
|
|
|
.then(decrypted => {
|
|
|
|
this.emit('decrypting', false);
|
|
|
|
return Promise.resolve(decrypted);
|
|
|
|
}),
|
|
|
|
fdata.filename,
|
|
|
|
hexToArray(fdata.aad)
|
|
|
|
]);
|
2017-07-10 18:25:03 +00:00
|
|
|
})
|
2017-07-22 00:01:26 +00:00
|
|
|
.then(([decrypted, fname, proposedHash]) => {
|
|
|
|
this.emit('hashing', true);
|
|
|
|
return window.crypto.subtle
|
|
|
|
.digest('SHA-256', decrypted)
|
|
|
|
.then(calculatedHash => {
|
|
|
|
this.emit('hashing', false);
|
|
|
|
const integrity =
|
|
|
|
new Uint8Array(calculatedHash).toString() ===
|
|
|
|
proposedHash.toString();
|
|
|
|
if (!integrity) {
|
|
|
|
this.emit('unsafe', true);
|
|
|
|
return Promise.reject();
|
|
|
|
} else {
|
|
|
|
this.emit('safe', true);
|
|
|
|
return Promise.all([decrypted, decodeURIComponent(fname)]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2017-06-02 19:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-02 19:49:56 +00:00
|
|
|
module.exports = FileReceiver;
|