-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfileUtility.js
More file actions
473 lines (450 loc) · 12.3 KB
/
fileUtility.js
File metadata and controls
473 lines (450 loc) · 12.3 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/**
* Proxy uploadifive
*/
(function(root, callback) {
/** Setting up AMD support*/
if (typeof define === 'function' && define.amd) {
/** AMD */
define('fileUtility/uploadifive',
function() {
/** Export global even in AMD case in case this script
is loaded with others */
return callback();
});
} else {
/** Browser globals */
return root.fileUploadifive = callback();
}
})(this, function() {
/**
* @class fileUploadifive
* @constructor
*/
var fileUploadifive = function() {
this.options = {
'uploadScript': ''
};
this.isHTML5 = true;
return this;
};
/**
* Parse onProgress redefine arguments
*
* @method parseOnProgress
* @param callback {Function} Function to be redefine
*/
fileUploadifive.prototype.parseOnProgress = function(callback) {
if (callback) {
var original = callback;
callback = function() {
return original.call(this, arguments[0], arguments[1].loaded, arguments[1].total);
};
}
return callback;
};
/**
* Parse options for compatibility with uploadifive
*
* @method parseOptions
* @param options {Object} Contains all the options
*/
fileUploadifive.prototype.parseOptions = function(options) {
$.extend(this.options, options);
this.options.uploadScript = options.url;
// parse on progress
this.options.onProgress = this.parseOnProgress(options.onProgress);
// parse onAddQueueItem
this.options.onAddQueueItem = options.onAdd;
return this.options;
};
/**
* Initialize uploadifive library
*
* @method init
* @param $input {Object} Input file type (always the input has to be type=file)
* @param options {Object} Options that setup uploadifive
*/
fileUploadifive.prototype.init = function($input, options) {
if ($input) {
this.$input = $input;
this.$input.uploadifive(this.parseOptions(options));
}
};
/**
* Upload files
*
* @method upload
* @param file {Object} File to be uploaded
*/
fileUploadifive.prototype.upload = function(file) {
var self = this;
if (this.$input) {
if (file) {
this.$input.uploadifive('upload', file);
} else {
this.$input.uploadifive('upload');
}
}
};
/**
* Cancel the selected file or if any arguments all the files.
*
* @method cancel
* @param fileiD {Object} File to be canceled
*/
fileUploadifive.prototype.cancel = function(file) {
if (this.$input) {
if (file) {
this.$input.uploadifive('cancel', file);
} else {
this.$input.uploadifive('clearQueue');
}
}
};
/**
* Set an option with some data during runtime
*
* @method settings
* @param option {string} Option to be set.
* @param data {Object} Data that will configure the option
*/
fileUploadifive.prototype.settings = function(option, data) {
this.$input.data('uploadifive').settings[option] = data;
};
/**
* Get the data of a respective setting
*
* @method getSetting
* @param option {string} Option to get.
* @return Data
*/
fileUploadifive.prototype.getSetting = function(option) {
return this.$input.data('uploadifive').settings[option];
};
/**
* Get the id of a file
*
* @method getId
* @param file {Object} File.
* @return id
*/
fileUploadifive.prototype.getId = function(file) {
return file.queueItem[0].id;
};
/**
* Destroys the instance of Uploadifive and returns the file input to its original state.
*
* @method destroy
*/
fileUploadifive.prototype.destroy = function() {
this.$input.uploadifive('destroy');
};
return fileUploadifive;
});
/**
* Proxy uploadify
*/
(function(root, callback) {
/** Setting up AMD support*/
if (typeof define === 'function' && define.amd) {
/** AMD */
define('fileUtility/uploadify',
function() {
/** Export global even in AMD case in case this script
is loaded with others */
return callback();
});
} else {
/** Browser globals */
return root.fileUploadify = callback();
}
})(this, function() {
/**
* @class fileUploadify
* @constructor
*/
var fileUploadify = function() {
this.options = {
'swf': '/Vendors/Plugins/uploadify.swf',
'uploader': '',
'fileTypeExts': ''
};
this.events = {
'onUploadSucces': '',
'onUploadProgress': '',
'onUploadError': '',
'onSelectError': '',
'onUploadStart': ''
};
this.$input = null;
this.isHTML5 = false;
return this;
};
/**
* Parse file type extension
*
* @method parseFileType
* @param arrtype {Array} An array with the mimetypes
*/
fileUploadify.prototype.parseFileType = function(arrType) {
var result = '';
if (arrType) {
$.each(arrType, function(index, value) {
result += '*.' + value.split('/').pop() + ';';
});
// remove last ';'
result = result.slice(0, -1);
}
return result;
};
/**
* Parse onError redefine arguments
*
* @method parseOnError
* @param callback {Function} Function to be redefine
*/
fileUploadify.prototype.parseOnError = function(callback) {
if (callback) {
var original = callback;
callback = function() {
return original.call(this, arguments[2], arguments[0], arguments[1], arguments[3]);
};
}
return callback;
};
/**
* Parse onProgress redefine arguments
*
* @method parseOnProgress
* @param callback {Function} Function to be redefine
*/
fileUploadify.prototype.parseOnProgress = function(callback) {
if (callback) {
var original = callback;
callback = function() {
return original.apply(this, arguments);
};
}
return callback;
};
/**
* Parse options for compatibility with uploadify
*
* @method parseOptions
* @param options {Object} Contains all the options
*/
fileUploadify.prototype.parseOptions = function(options) {
$.extend(this.options, options);
this.options.uploader = options.url;
// prevent to open a default (annoying) alert
this.options.overrideEvents = ['onDialogClose'];
this.options.fileTypeExts = this.parseFileType(options.fileType);
// onUploadComplete never used in swf
this.options.onUploadComplete = null;
// parse onUploadSuccess
this.options.onUploadSuccess = options.onUploadComplete;
// parse errors events
this.options.onUploadError = this.parseOnError(options.onError);
this.options.onSelectError = this.parseOnError(options.onError);
// parse onUploadProgress event
this.options.onUploadProgress = this.parseOnProgress(options.onProgress);
// parse onSelect
this.options.onSelect = options.onAdd;
// parse onUploadStart
this.options.onUploadStart = options.onUploadFile;
this.options.onFallback = function() {
showMessage.show('You should install Flash for a complete experience');
};
return this.options;
};
/**
* Initialize uploadifive library
*
* @method init
* @param $input {Object} Input file type (always the input has to be type=file)
* @param options {Object} Options that setup uploadify
*/
fileUploadify.prototype.init = function($input, options) {
if ($input) {
this.$input = $input;
// initialize uploadify library
this.$input.uploadify(this.parseOptions(options));
}
};
/**
* Upload files
*
* @method upload
* @param file {Object} File to be uploaded
*/
fileUploadify.prototype.upload = function(file) {
var self = this;
if (this.$input) {
if (file) {
this.$input.uploadify('upload', file.id);
} else {
this.$input.uploadify('upload', '*');
}
}
};
/**
* Cancel the selected file or all the files.
*
* @method cancel
* @param fileiD {Object} File to be canceled
*/
fileUploadify.prototype.cancel = function(fileiD) {
if (this.$input) {
if (fileiD) {
this.$input.uploadify('cancel', fileiD);
} else {
// if no fileiD clear queue
this.$input.uploadify('cancel', '*');
}
}
};
/**
* Set an option with some data during runtime
*
* @method settings
* @param option {string} Option to be set.
* @param data {Object} Data that will configure the option
*/
fileUploadify.prototype.settings = function(option, data) {
this.$input.uploadify('settings', option, data);
};
/**
* Get the data of a respective setting
*
* @method getSetting
* @param option {string} Option to get.
* @return Data
*/
fileUploadify.prototype.getSetting = function(option) {
return this.$input.uploadify('settings', option);
};
/**
* Get the id of a file
*
* @method getId
* @param file {Object} File.
* @return id
*/
fileUploadify.prototype.getId = function(file) {
return file.id;
};
/**
* Destroys the instance of Uploadify and returns the file input to its original state.
*
* @method destroy
*/
fileUploadify.prototype.destroy = function() {
this.$input.uploadify('destroy');
};
return fileUploadify;
});
/**
* FileUtility wrapper
*/
(function(root, factory) {
/** Setting up AMD support*/
if (typeof define === 'function' && define.amd) {
/** AMD */
define('fileUtility/initializer', [
'fileUtility/uploadifive',
'fileUtility/uploadify'
],
function(uploadifive, uploadify) {
/** Export global even in AMD case in case this script
is loaded with others */
return factory(uploadifive, uploadify);
});
} else {
/** Browser globals */
return root.fileUtility = factory(fileUploadifive, fileUploadify);
}
})(this, function(uploadifive, uploadify) {
/**
* @class fileUtility
* @constructor
*/
var fileUtility = function() {
// Check if HTML5 is available
if (window.File && window.FileList && window.Blob && (window.FileReader || window.FormData)) {
this.uploader = new uploadifive();
} else {
this.uploader = new uploadify();
}
return this;
};
fileUtility.prototype = {
contructor: fileUtility,
/**
* Initialize uploadifive library
*
* @method init
* @param $input {Object} Input file type (always the input has to be type=file)
* @param options {Object} Options that setup the corresponding library (uploadify or uplodifive)
*/
init: function() {
this.uploader.init.apply(this.uploader, arguments);
},
/**
* Upload
*
* @method upload
* @param file {Object} File to be uploaded
*/
upload: function() {
this.uploader.upload.apply(this.uploader, arguments);
},
/**
* Cancel the selected file or all the files.
*
* @method cancel
* @param fileiD {Object} File to be canceled
*/
cancel: function() {
this.uploader.cancel.apply(this.uploader, arguments);
},
/**
* Set an option with some data during runtime
*
* @method settings
* @param option {string} Option to be set.
* @param data {Object} Data that will configure the option
*/
settings: function() {
this.uploader.settings.apply(this.uploader, arguments);
},
/**
* Get the data of a respective setting
*
* @method getSetting
* @param option {string} Option to get.
* @return Data
*/
getSetting: function() {
return this.uploader.getSetting.apply(this.uploader, arguments);
},
/**
* Get the id of a file
*
* @method getId
* @param file {Object} File.
* @return id
*/
getId: function() {
return this.uploader.getId.apply(this.uploader, arguments);
},
/**
* Destroys the instance of FileUtility and returns the file input to its original state.
*
* @method destroy
*/
destroy: function() {
this.uploader.destroy.apply(this.uploader, arguments);
}
};
return fileUtility;
});