-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfileupload.js
131 lines (119 loc) · 3.07 KB
/
fileupload.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* XHR Upload Queue FileUpload
*
* @fileoverview FileUpload object represents a file and handles the upload.
* @link https://github.com/stevenbenner/jquery-xhr-upload-queue
* @author Steven Benner (http://stevenbenner.com/)
* @requires jQuery 1.7+
*/
/**
* Creates a new file upload.
* @private
* @constructor
* @this {FileUpload}
* @param {Object} file FilesAPI File object to use.
* @param {FileQueue} myQueue FileQueue that this file belongs to.
* @param {Function} doneCallback Callback to execute when the upload finishes.
*/
function FileUpload(file, myQueue, doneCallback) {
// instance variables
var onBeginSend = $.noop,
onProgress = $.noop,
onEndSend = $.noop,
onSendFail = $.noop,
jqXHR = null,
me = this;
// public properties
me.file = file;
me.size = file.size;
me.name = file.name;
me.type = file.type;
me.error = null;
// public event hooking methods
me.beginSend = function(callback) {
onBeginSend = callback;
};
me.progress = function(callback) {
onProgress = callback;
};
me.endSend = function(callback) {
onEndSend = callback;
};
me.sendFail = function(callback) {
onSendFail = callback;
};
// public methods
/**
* Begins uploading this file. Do not call this directly.
* @public
* @param {String} postUrl The url to post the data too.
* @param {String} fieldName The form field name to associate the file with.
* @param {Object=} additionalFormData Additional form data to post.
*/
me.uploadFile = function(postUrl, fieldName, additionalFormData) {
var fd = new window.FormData(),
lastBytesLoaded = 0,
lastTime = $.now();
// invoke beginSend callback
onBeginSend.call(me);
// create FormData
fd.append(fieldName, me.file);
if (additionalFormData) {
$.each(additionalFormData, function(name, value) {
fd.append(name, value);
});
}
// create AJAX request
jqXHR = $.ajax({
url: postUrl,
data: fd,
cache: false,
contentType: false,
processData: false,
type: 'POST',
xhr: function() {
// create XHR and hook progress event
var xhr = new window.XMLHttpRequest();
xhr.upload.addEventListener('progress', function(event) {
if (event.lengthComputable) {
// compute transfer rate
var curTime = $.now(),
bytesRx = event.loaded - lastBytesLoaded,
rxSeconds = (curTime - lastTime) / 1000,
bytesPerSecond = bytesRx / rxSeconds;
// save progress info
lastTime = curTime;
lastBytesLoaded = event.loaded;
// execute callback
onProgress.call(me, event, bytesPerSecond);
}
}, false);
return xhr;
}
});
// hook promise events
jqXHR.done(function(response) {
onEndSend.call(me, response);
});
jqXHR.fail(function(jqXHR, status) {
onSendFail.call(me, jqXHR, status);
});
jqXHR.always(doneCallback);
};
/**
* Cancels an in-progress upload.
* @public
*/
me.cancelUpload = function() {
if (jqXHR !== null) {
jqXHR.abort();
}
};
/**
* Removes this file from its queue.
* @public
*/
me.removeFromQueue = function() {
myQueue.removeFile(me);
};
}