LANCommander/wwwroot/js/Upload.ts
Pat Hartl 024eec1b50 Properly use Blob.slice for reading chunk data
Rant time, why the hell does is the `end` parameter of `Blob.slice(start, end)` the index of the first byte **not** included? Why does this API go against almost every other stream API out there?
2023-01-02 16:11:43 -06:00

88 lines
No EOL
2.4 KiB
TypeScript

class Chunk {
Index: number;
Start: number;
End: number;
constructor(start: number, end: number, index: number) {
this.Start = start;
this.End = end;
this.Index = index;
}
}
class Uploader {
ParentForm: HTMLFormElement;
FileInput: HTMLInputElement;
File: File;
InitRoute: string = "/Upload/Init";
ChunkRoute: string = "/Upload/Chunk";
MaxChunkSize: number = 1024 * 1024 * 25;
TotalChunks: number;
CurrentChunk: number;
Chunks: Chunk[];
Key: string;
Init(elementId: string) {
this.FileInput = document.getElementById(elementId) as HTMLInputElement;
this.ParentForm = this.FileInput.closest("form");
this.Chunks = [];
this.ParentForm.onsubmit = async (e) => {
await this.HandleFormSubmit(e);
};
}
async HandleFormSubmit(e: SubmitEvent) {
e.preventDefault();
this.File = this.FileInput.files.item(0);
this.TotalChunks = Math.ceil(this.File.size / this.MaxChunkSize);
var response = await fetch(this.InitRoute, {
method: "POST"
});
const data = await response.json();
if (response.ok) {
this.Key = data.key;
this.GetChunks();
for (let chunk of this.Chunks) {
let formData = new FormData();
formData.append('file', this.File.slice(chunk.Start, chunk.End + 1));
formData.append('start', chunk.Start.toString());
formData.append('end', chunk.End.toString());
formData.append('key', this.Key);
formData.append('total', this.File.size.toString());
console.info(`Uploading chunk ${chunk.Index}/${this.TotalChunks}...`);
let response = await fetch(this.ChunkRoute, {
method: "POST",
body: formData
});
debugger;
}
}
}
GetChunks() {
for (let currentChunk = 1; currentChunk <= this.TotalChunks; currentChunk++) {
let start = (currentChunk - 1) * this.MaxChunkSize;
let end = (currentChunk * this.MaxChunkSize) - 1;
if (currentChunk == this.TotalChunks)
end = this.File.size;
this.Chunks.push(new Chunk(start, end, currentChunk));
}
}
}