-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUploadLargeFile.js
72 lines (63 loc) · 2.08 KB
/
UploadLargeFile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* Author : Suvabrata Roy
Email : [email protected] */
function UploadLargeFile(file, callback, PostURL, SucessFunc) {
var fileSize = file.size;
var chunkSize = 1 * 1024 * 1024; // bytes
var offset = 0;
var BOF = 0;
var self = this; // we need a reference to the current object
var FileReadInBlocks = null;
var readEventHandler = function(evt) {
if (evt.target.error == null) {
callback(evt.target.result, BOF, function() {
if (offset >= fileSize) {
//FileReadInBlocks(offset, fileSize-offset, file)
console.log("Done reading file");
return;
}
FileReadInBlocks(offset, chunkSize, file)
offset += chunkSize;
}, PostURL);
BOF = offset;
} else {
console.log("Read error: " + evt.target.error);
return;
}
if (offset >= fileSize) {
SucessFunc();
console.log("Done reading file");
//console.log(new Date());
return;
}
}
FileReadInBlocks = function(_offset, length, _file) {
var r = new FileReader();
var blob = _file.slice(_offset, length + _offset);
console.log(_offset);
r.onload = readEventHandler;
r.readAsDataURL(blob);
}
// now let's start the read with the first block
FileReadInBlocks(offset, chunkSize, file);
offset += chunkSize;
}
function AsyncUpload(data, fileposition, seekNext, PostURL) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
seekNext();
}
};
xhttp.open("POST", PostURL, true);
xhttp.setRequestHeader("Content-type", "application/json; charset=utf-8");
xhttp.send(JSON.stringify({
FileData: data,
OffSet: fileposition
}));
}
//Usage
/*
function UploadFileOnSubmit() {
var file = document.getElementById("FileInput").files[0]
UploadLargeFile(file, AsyncUpload, "URL To Post The data");
} */