24
1
Fork 0
drop.chapril.org-firefoxsend/app/fileReceiver.js

86 lines
2.2 KiB
JavaScript
Raw Normal View History

import Nanobus from 'nanobus';
2018-01-24 19:23:13 +01:00
import Keychain from './keychain';
import { bytes } from './utils';
import { metadata, downloadFile } from './api';
2017-06-02 21:38:05 +02:00
export default class FileReceiver extends Nanobus {
2018-01-24 19:23:13 +01:00
constructor(fileInfo) {
super('FileReceiver');
2018-01-24 19:23:13 +01:00
this.keychain = new Keychain(fileInfo.secretKey, fileInfo.nonce);
if (fileInfo.requiresPassword) {
this.keychain.setPassword(fileInfo.password, fileInfo.url);
}
2018-01-24 19:23:13 +01:00
this.fileInfo = fileInfo;
this.fileDownload = null;
this.msg = 'fileSizeProgress';
this.state = 'initialized';
this.progress = [0, 1];
2018-01-24 19:23:13 +01:00
this.cancelled = false;
}
get progressRatio() {
return this.progress[0] / this.progress[1];
}
get sizes() {
return {
partialSize: bytes(this.progress[0]),
totalSize: bytes(this.progress[1])
};
}
cancel() {
2018-01-24 19:23:13 +01:00
this.cancelled = true;
if (this.fileDownload) {
this.fileDownload.cancel();
}
}
2018-01-24 19:23:13 +01:00
async getMetadata() {
const meta = await metadata(this.fileInfo.id, this.keychain);
if (meta) {
this.keychain.setIV(meta.iv);
this.fileInfo.name = meta.name;
this.fileInfo.type = meta.type;
this.fileInfo.iv = meta.iv;
this.fileInfo.size = meta.size;
this.state = 'ready';
2018-01-24 19:23:13 +01:00
return;
}
2018-01-24 19:23:13 +01:00
this.state = 'invalid';
return;
}
2018-01-24 19:23:13 +01:00
async download() {
this.state = 'downloading';
this.emit('progress', this.progress);
try {
2018-01-24 19:23:13 +01:00
const download = await downloadFile(this.fileInfo.id, this.keychain);
download.onprogress = p => {
this.progress = p;
this.emit('progress', p);
};
this.fileDownload = download;
const ciphertext = await download.result;
this.fileDownload = null;
this.msg = 'decryptingFile';
this.state = 'decrypting';
this.emit('decrypting');
2018-01-24 19:23:13 +01:00
const plaintext = await this.keychain.decryptFile(ciphertext);
if (this.cancelled) {
throw new Error(0);
}
this.msg = 'downloadFinish';
this.state = 'complete';
return {
plaintext,
2018-01-24 19:23:13 +01:00
name: decodeURIComponent(this.fileInfo.name),
type: this.fileInfo.type
};
} catch (e) {
this.state = 'invalid';
throw e;
}
2017-06-02 21:38:05 +02:00
}
}