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

84 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-07-26 07:26:11 +02:00
import { blobStream, concatStream } from './streams';
2018-08-10 22:11:17 +02:00
function isDupe(newFile, array) {
for (const file of array) {
if (
newFile.name === file.name &&
newFile.size === file.size &&
newFile.lastModified === file.lastModified
) {
return true;
}
}
return false;
}
2018-07-26 07:26:11 +02:00
export default class Archive {
constructor(files = [], defaultTimeLimit = 86400) {
2018-07-26 07:26:11 +02:00
this.files = Array.from(files);
this.defaultTimeLimit = defaultTimeLimit;
this.timeLimit = defaultTimeLimit;
this.dlimit = 100;
2019-02-12 20:50:06 +01:00
this.password = null;
2018-07-26 07:26:11 +02:00
}
get name() {
return this.files.length > 1 ? 'Send-Archive.zip' : this.files[0].name;
}
get type() {
return this.files.length > 1 ? 'send-archive' : this.files[0].type;
}
get size() {
return this.files.reduce((total, file) => total + file.size, 0);
}
2018-07-31 20:09:18 +02:00
get numFiles() {
return this.files.length;
}
2018-07-26 07:26:11 +02:00
get manifest() {
return {
files: this.files.map(file => ({
name: file.name,
size: file.size,
type: file.type
}))
};
}
get stream() {
return concatStream(this.files.map(file => blobStream(file)));
}
2018-08-03 21:24:41 +02:00
addFiles(files, maxSize, maxFiles) {
if (this.files.length + files.length > maxFiles) {
2018-08-08 00:40:17 +02:00
throw new Error('tooManyFiles');
}
const newFiles = files.filter(
file => file.size > 0 && !isDupe(file, this.files)
);
2018-08-10 22:11:17 +02:00
const newSize = newFiles.reduce((total, file) => total + file.size, 0);
2018-08-08 00:40:17 +02:00
if (this.size + newSize > maxSize) {
throw new Error('fileTooBig');
2018-08-03 21:24:41 +02:00
}
2018-08-10 22:11:17 +02:00
this.files = this.files.concat(newFiles);
2018-08-03 21:24:41 +02:00
return true;
}
2018-10-25 04:07:10 +02:00
remove(file) {
const index = this.files.indexOf(file);
if (index > -1) {
this.files.splice(index, 1);
}
2018-08-03 21:24:41 +02:00
}
clear() {
this.files = [];
this.dlimit = 100;
this.timeLimit = this.defaultTimeLimit;
2019-02-12 20:50:06 +01:00
this.password = null;
}
2018-07-26 07:26:11 +02:00
}