2017-08-10 17:02:13 +00:00
|
|
|
import EventEmitter from 'events';
|
|
|
|
import { hexToArray } from './utils';
|
2017-06-02 19:38:05 +00:00
|
|
|
|
2017-08-10 17:02:13 +00:00
|
|
|
export default class FileReceiver extends EventEmitter {
|
2017-06-02 19:38:05 +00:00
|
|
|
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]);
|
2017-08-09 19:56:32 +00:00
|
|
|
const type = xhr.getResponseHeader('Content-Type');
|
|
|
|
const meta = JSON.parse(xhr.getResponseHeader('X-File-Metadata'));
|
2017-08-03 17:04:09 +00:00
|
|
|
const fileReader = new FileReader();
|
|
|
|
fileReader.onload = function() {
|
|
|
|
resolve([
|
|
|
|
{
|
|
|
|
data: this.result,
|
|
|
|
filename: meta.filename,
|
2017-08-09 19:56:32 +00:00
|
|
|
type,
|
2017-08-03 17:04:09 +00:00
|
|
|
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]) => {
|
2017-08-06 01:06:43 +00:00
|
|
|
this.emit('decrypting');
|
2017-07-22 00:01:26 +00:00
|
|
|
return Promise.all([
|
|
|
|
window.crypto.subtle
|
|
|
|
.decrypt(
|
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
|
|
|
iv: hexToArray(fdata.iv),
|
2017-07-24 19:16:01 +00:00
|
|
|
tagLength: 128
|
2017-07-22 00:01:26 +00:00
|
|
|
},
|
|
|
|
key,
|
|
|
|
fdata.data
|
|
|
|
)
|
|
|
|
.then(decrypted => {
|
|
|
|
return Promise.resolve(decrypted);
|
|
|
|
}),
|
2017-08-09 19:56:32 +00:00
|
|
|
{
|
|
|
|
name: decodeURIComponent(fdata.filename),
|
|
|
|
type: fdata.type
|
|
|
|
}
|
2017-07-22 00:01:26 +00:00
|
|
|
]);
|
|
|
|
});
|
2017-06-02 19:38:05 +00:00
|
|
|
}
|
|
|
|
}
|