2018-08-07 22:40:17 +00:00
|
|
|
/* global DEFAULTS */
|
2017-08-24 21:54:02 +00:00
|
|
|
import Nanobus from 'nanobus';
|
2018-01-24 18:23:13 +00:00
|
|
|
import OwnedFile from './ownedFile';
|
|
|
|
import Keychain from './keychain';
|
|
|
|
import { arrayToB64, bytes } from './utils';
|
2018-06-21 00:05:33 +00:00
|
|
|
import { uploadWs } from './api';
|
2018-07-26 05:26:11 +00:00
|
|
|
import { encryptedSize } from './ece';
|
2017-12-08 17:45:00 +00:00
|
|
|
|
2017-08-24 21:54:02 +00:00
|
|
|
export default class FileSender extends Nanobus {
|
2018-08-31 21:20:15 +00:00
|
|
|
constructor() {
|
2017-08-24 21:54:02 +00:00
|
|
|
super('FileSender');
|
2018-01-24 18:23:13 +00:00
|
|
|
this.keychain = new Keychain();
|
2018-02-24 19:24:12 +00:00
|
|
|
this.reset();
|
2017-06-02 03:59:27 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 21:54:02 +00:00
|
|
|
get progressRatio() {
|
|
|
|
return this.progress[0] / this.progress[1];
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:59:06 +00:00
|
|
|
get progressIndefinite() {
|
|
|
|
return ['fileSizeProgress', 'notifyUploadDone'].indexOf(this.msg) === -1;
|
|
|
|
}
|
|
|
|
|
2017-08-24 21:54:02 +00:00
|
|
|
get sizes() {
|
|
|
|
return {
|
|
|
|
partialSize: bytes(this.progress[0]),
|
|
|
|
totalSize: bytes(this.progress[1])
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-02-24 19:24:12 +00:00
|
|
|
reset() {
|
|
|
|
this.uploadRequest = null;
|
|
|
|
this.msg = 'importingFile';
|
|
|
|
this.progress = [0, 1];
|
|
|
|
this.cancelled = false;
|
|
|
|
}
|
|
|
|
|
2017-07-18 17:52:32 +00:00
|
|
|
cancel() {
|
2017-08-24 21:54:02 +00:00
|
|
|
this.cancelled = true;
|
2018-01-24 18:23:13 +00:00
|
|
|
if (this.uploadRequest) {
|
|
|
|
this.uploadRequest.cancel();
|
2017-08-24 21:54:02 +00:00
|
|
|
}
|
2017-07-18 17:52:32 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 21:20:15 +00:00
|
|
|
async upload(
|
|
|
|
file,
|
|
|
|
timeLimit = DEFAULTS.EXPIRE_SECONDS,
|
|
|
|
dlimit = 1,
|
|
|
|
bearerToken
|
|
|
|
) {
|
2018-01-24 18:23:13 +00:00
|
|
|
const start = Date.now();
|
2017-08-24 21:54:02 +00:00
|
|
|
if (this.cancelled) {
|
|
|
|
throw new Error(0);
|
|
|
|
}
|
|
|
|
this.msg = 'encryptingFile';
|
2017-08-14 19:04:03 +00:00
|
|
|
this.emit('encrypting');
|
2018-08-31 21:20:15 +00:00
|
|
|
const totalSize = encryptedSize(file.size);
|
|
|
|
const encStream = await this.keychain.encryptStream(file.stream);
|
|
|
|
const metadata = await this.keychain.encryptMetadata(file);
|
2018-01-24 18:23:13 +00:00
|
|
|
const authKeyB64 = await this.keychain.authKeyB64();
|
2018-06-21 00:05:33 +00:00
|
|
|
|
2018-08-08 18:07:09 +00:00
|
|
|
this.uploadRequest = uploadWs(
|
|
|
|
encStream,
|
|
|
|
metadata,
|
|
|
|
authKeyB64,
|
2018-08-31 21:20:15 +00:00
|
|
|
timeLimit,
|
|
|
|
dlimit,
|
|
|
|
bearerToken,
|
2018-08-08 18:07:09 +00:00
|
|
|
p => {
|
|
|
|
this.progress = [p, totalSize];
|
|
|
|
this.emit('progress');
|
2018-08-07 22:40:17 +00:00
|
|
|
}
|
2018-08-08 18:07:09 +00:00
|
|
|
);
|
2018-06-21 00:05:33 +00:00
|
|
|
|
|
|
|
if (this.cancelled) {
|
|
|
|
throw new Error(0);
|
|
|
|
}
|
|
|
|
|
2018-01-24 18:23:13 +00:00
|
|
|
this.msg = 'fileSizeProgress';
|
2018-03-12 19:24:09 +00:00
|
|
|
this.emit('progress'); // HACK to kick MS Edge
|
2017-12-08 17:45:00 +00:00
|
|
|
try {
|
2018-01-24 18:23:13 +00:00
|
|
|
const result = await this.uploadRequest.result;
|
|
|
|
const time = Date.now() - start;
|
|
|
|
this.msg = 'notifyUploadDone';
|
|
|
|
this.uploadRequest = null;
|
|
|
|
this.progress = [1, 1];
|
|
|
|
const secretKey = arrayToB64(this.keychain.rawSecret);
|
2018-01-31 19:12:36 +00:00
|
|
|
const ownedFile = new OwnedFile({
|
|
|
|
id: result.id,
|
|
|
|
url: `${result.url}#${secretKey}`,
|
2018-08-31 21:20:15 +00:00
|
|
|
name: file.name,
|
|
|
|
size: file.size,
|
|
|
|
manifest: file.manifest,
|
2018-01-31 19:12:36 +00:00
|
|
|
time: time,
|
2018-08-31 21:20:15 +00:00
|
|
|
speed: file.size / (time / 1000),
|
2018-01-31 19:12:36 +00:00
|
|
|
createdAt: Date.now(),
|
2018-08-31 21:20:15 +00:00
|
|
|
expiresAt: Date.now() + timeLimit * 1000,
|
2018-01-31 19:12:36 +00:00
|
|
|
secretKey: secretKey,
|
|
|
|
nonce: this.keychain.nonce,
|
2018-08-08 18:07:09 +00:00
|
|
|
ownerToken: result.ownerToken,
|
2018-08-31 21:20:15 +00:00
|
|
|
timeLimit: timeLimit
|
2018-01-31 19:12:36 +00:00
|
|
|
});
|
2018-07-31 18:09:18 +00:00
|
|
|
|
2018-01-24 18:23:13 +00:00
|
|
|
return ownedFile;
|
2017-12-08 17:45:00 +00:00
|
|
|
} catch (e) {
|
2018-01-24 18:23:13 +00:00
|
|
|
this.msg = 'errorPageHeader';
|
|
|
|
this.uploadRequest = null;
|
|
|
|
throw e;
|
2017-12-08 17:45:00 +00:00
|
|
|
}
|
2017-06-02 03:59:27 +00:00
|
|
|
}
|
|
|
|
}
|