fox-send/app/ownedFile.js

97 lines
2.4 KiB
JavaScript
Raw Permalink Normal View History

2018-01-24 18:23:13 +00:00
import Keychain from './keychain';
import { arrayToB64 } from './utils';
2018-01-30 20:15:09 +00:00
import { del, fileInfo, setParams, setPassword } from './api';
2018-01-24 18:23:13 +00:00
export default class OwnedFile {
2018-01-31 19:12:36 +00:00
constructor(obj) {
if (!obj.manifest) {
throw new Error('invalid file object');
}
2018-01-24 18:23:13 +00:00
this.id = obj.id;
this.url = obj.url;
this.name = obj.name;
this.size = obj.size;
2018-07-31 18:09:18 +00:00
this.manifest = obj.manifest;
2018-01-24 18:23:13 +00:00
this.time = obj.time;
this.speed = obj.speed;
this.createdAt = obj.createdAt;
this.expiresAt = obj.expiresAt;
this.ownerToken = obj.ownerToken;
this.dlimit = obj.dlimit || 1;
this.dtotal = obj.dtotal || 0;
2018-02-21 04:31:27 +00:00
this.keychain = new Keychain(obj.secretKey, obj.nonce);
2018-01-30 20:15:09 +00:00
this._hasPassword = !!obj.hasPassword;
2018-08-08 18:07:09 +00:00
this.timeLimit = obj.timeLimit;
2018-01-24 18:23:13 +00:00
}
2018-08-07 22:40:17 +00:00
get hasPassword() {
return !!this._hasPassword;
}
get expired() {
return this.dlimit === this.dtotal || Date.now() > this.expiresAt;
}
2018-01-24 18:23:13 +00:00
async setPassword(password) {
2018-02-21 20:35:52 +00:00
try {
this.password = password;
this._hasPassword = true;
this.keychain.setPassword(password, this.url);
const result = await setPassword(this.id, this.ownerToken, this.keychain);
return result;
} catch (e) {
this.password = null;
this._hasPassword = false;
throw e;
}
2018-01-24 18:23:13 +00:00
}
del() {
return del(this.id, this.ownerToken);
}
2018-08-31 17:59:26 +00:00
changeLimit(dlimit, user = {}) {
2018-01-24 18:23:13 +00:00
if (this.dlimit !== dlimit) {
this.dlimit = dlimit;
2018-08-31 17:59:26 +00:00
return setParams(this.id, this.ownerToken, user.bearerToken, { dlimit });
2018-01-24 18:23:13 +00:00
}
return Promise.resolve(true);
}
async updateDownloadCount() {
2018-08-07 22:40:17 +00:00
const oldTotal = this.dtotal;
const oldLimit = this.dlimit;
2018-01-24 18:23:13 +00:00
try {
2018-01-30 20:15:09 +00:00
const result = await fileInfo(this.id, this.ownerToken);
2018-01-24 18:23:13 +00:00
this.dtotal = result.dtotal;
2018-01-30 20:15:09 +00:00
this.dlimit = result.dlimit;
2018-01-24 18:23:13 +00:00
} catch (e) {
if (e.message === '404') {
this.dtotal = this.dlimit;
}
2018-02-21 04:31:27 +00:00
// ignore other errors
2018-01-24 18:23:13 +00:00
}
2018-08-07 22:40:17 +00:00
return oldTotal !== this.dtotal || oldLimit !== this.dlimit;
2018-01-24 18:23:13 +00:00
}
toJSON() {
return {
id: this.id,
url: this.url,
name: this.name,
size: this.size,
2018-07-31 18:09:18 +00:00
manifest: this.manifest,
2018-01-24 18:23:13 +00:00
time: this.time,
speed: this.speed,
createdAt: this.createdAt,
expiresAt: this.expiresAt,
secretKey: arrayToB64(this.keychain.rawSecret),
ownerToken: this.ownerToken,
dlimit: this.dlimit,
dtotal: this.dtotal,
2018-08-08 18:07:09 +00:00
hasPassword: this.hasPassword,
timeLimit: this.timeLimit
2018-01-24 18:23:13 +00:00
};
}
}