Newer
Older
/*********************************************************************
jquery.multifile.js
Multifile plugin that allows users to upload multiple files at once in unobstructive manner - cleaner interface.
Allows limiting number of files
Whitelist file type(s) using file extension
Limit file sizes.
NOTE:
* Files are not uploaded until the form is submitted
* Server side file type validation is a MUST
* Plugin doesn't take into account PHP related limitations e.g max uploads + max size.
Peter Rotich <peter@osticket.com>
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
http://www.osticket.com
Credits:
The plugin borrows heavily from a plugin by Rocky Meza @ fusionbox
https://github.com/fusionbox/jquery-multifile
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
;(function($, global, undefined) {
$.fn.multifile = function(options) {
var container = null;
var options = $.extend({}, $.fn.multifile.defaults, options);
options.allowedFileTypes = $.map(options.file_types.toLowerCase().split(','), $.trim);
options.inputTemplate = options.inputTemplate || $.fn.multifile.inputTemplate;
container = options.container || null;
return this.each(function() {
var settings = options;
var $container
, addInput = function(event) {
var $this = $(this)
, fObj = $(this).closest('form')
, new_input = $.fn.multifile.cloneInput($this)
, file = $.fn.multifile.getFileObject(this);
if(fObj.data('files') == undefined)
fObj.data('files', 0);
if(fObj.data('files')>=settings.max_uploads || (fObj.data('files')+file.count)>settings.max_uploads) {
alert('You have reached the maximum number of files ('+ settings.max_uploads+') allowed per upload');
} else if(!$.fn.multifile.checkFileTypes(file, settings.allowedFileTypes)) {
var msg = 'Selected file type is NOT allowed';
if(file.count>1)
msg = 'File type of one or more of the selected files is NOT allowed';
alert('Error: '+msg);
$this.replaceWith(new_input);
} else if(!$.fn.multifile.checkFileSize(file, settings.max_file_size)) {
var msg = 'Selected file exceeds allowed size';
msg = 'File size of one or more of the selected files exceeds allowed size';
alert('Error: '+msg);
$this.replaceWith(new_input);
} else {
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
$this.hide();
settings
.inputTemplate(file)
.appendTo($container)
.on('click', 'input', bindRemoveInput($this, file));
fObj.data('files', fObj.data('files')+file.count);
if(fObj.data('files')<settings.max_uploads)
$this.after(new_input);
}
}
, bindRemoveInput = function($input, file) {
return function(event) {
event.preventDefault();
if(confirm('Are you sure you want to remove '+file.name+'?')) {
var fObj = $(this).closest('form');
fObj.data('files', fObj.data('files')-file.count);
if(fObj.data('files')<settings.max_uploads && (fObj.data('files')+file.count)>=settings.max_uploads)
$input.after($.fn.multifile.cloneInput($input).show());
$input.remove();
$(this).parent().remove();
}
return false;
};
};
if ( container ) {
if ( typeof container == 'string' )
$container = $(container, $(this).closest('form'));
else
$container = container;
} else {
$container = $('<div class="uploads" />');
$(this).after($container);
}
$(this).bind('change.multifile', addInput);
});
};
$.fn.multifile.inputTemplate = function(file) {
return $('<label style="padding-right:5px;"><input type="checkbox" name="uploads[]" value="' + file.name + '" checked="checked"> ' + file.name + '</label>');
};
$.fn.multifile.checkFileTypes = function(file, allowedFileTypes) {
//Wildcard.
if(allowedFileTypes[0]=='.*')
return true;
var filenames = $.map(file.name.toLowerCase().split(','), $.trim);
for (var i = 0, _len = filenames.length; i < _len; i++)
if(filenames[i] && $.inArray('.'+filenames[i].split('.').pop(), allowedFileTypes) == -1)
return false;
return true;
};
$.fn.multifile.checkFileSize = function(file, MaxFileSize) {
//Size info not available or max file is not set (let server-side handle it).
if(!MaxFileSize || !file.size)
return true;
var filesizes = $.map(file.size.split(','), $.trim);
for (var i = 0, _len = filesizes.length; i < _len; i++)
if(filesizes[i] > MaxFileSize)
return false;
return true;
};
//Clone file input and clear the value without triggering a warning!
$.fn.multifile.cloneInput = function(input) {
var $clone = input.clone(true);
if ($.browser.msie) {
$clone.replaceWith(function () { return $(this).clone(true); });
} else {
$clone.val('');
}
return $clone;
}
//Get file object
$.fn.multifile.getFileObject = function(input) {
var file = {};
file.count = 1;
// check for HTML5 FileList support
if ( !!global.FileList ) {
file.size = '' + input.files[0].size;
} else { //Multi-select
// We do this in order to support `multiple` files.
// You can't display them separately because they
// belong to only one file input. It is impossible
// to remove just one of the files.
file.name = input.files[0].name;
file.size = '' + input.files[0].size;
for (var i = 1, _len = input.files.length; i < _len; i++) {
file.size += ', ' + input.files[i].size;
}
file.count = i;
}
} else {
file.name = input.value;
}
return file;
};
//Default options
$.fn.multifile.defaults = {
max_uploads: 1,
max_file_size: 0