/* One Click Upload - jQuery Plugin -------------------------------- Copyright (c) 2008 Michael Mitchell - http://www.michaelmitchell.co.nz Copyright (c) 2011 Andrey Fedoseev - http://andreyfedoseev.name Copyright (c) 2012 vol7ron Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ (function($) { $.fn.upload = function(options) { /** Merge the users options with our defaults */ options = $.extend({ name : 'file', enctype : 'multipart/form-data', action : '', autoSubmit : true, onSubmit : function() {}, onComplete : function() {}, onSelect : function() {}, params : {} }, options); return new $.ocupload(this, options); }; $.ocupload = function(element, options) { /** Fix scope problems */ var self = this; /** A unique id so we can find our elements later */ var id = new Date().getTime().toString(); /** Upload iframe */ var iframe = $("", { id : "iframe" + id, name : "iframe" + id }).css({ display : "none" }); /** Form */ var form = $("
", { method : "post", enctype : options.enctype, action : options.action, target : "iframe" + id }).css({ margin : 0, padding : 0 }); /** Get cursor type from the object ocupload was assigned to */ /** TODO: Add parameter to init? cursor: auto, cursor: pointer etc */ var element_cursor = element.css('cursor'); /** File Input */ var input = $("", { name : options.name + '[]', multiple : 'multiple', type : 'file' }).css({ position : 'absolute', display : 'none', cursor : element_cursor, opacity : 0 }); /** Put everything together */ element.wrap("
"); form.append(input); element.after(form); element.after(iframe); element.click(function(){input.click()}); /** Find the container and make it nice and snug */ var container = element.parent().css({ position : 'relative', display : element.css('display'), height : element.outerHeight() + 'px', width : element.outerWidth() + 'px', overflow : 'hidden', cursor : element_cursor, margin : 0, padding : 0 }); /** Get input dimensions so we can put it in the right place */ var input_height = input.outerHeight(1); var input_width = input.outerWidth(1); /** Watch for file selection */ input.change(function() { /** Do something when a file is selected. */ self.onSelect(); /** Submit the form automaticly after selecting the file */ if (self.autoSubmit) { self.submit(); } }); /** Methods */ $.extend(this, { autoSubmit : options.autoSubmit, // vol7ron: changed 'true' to 'options.autoSubmit' onSubmit : options.onSubmit, onComplete : options.onComplete, onSelect : options.onSelect, /** get filename */ filename: function() { return input.attr('value'); }, /** get/set params */ params: function(params) { params = params ? params: false; if (params) { options.params = $.extend(options.params, params); } else { return options.params; } }, /** get/set name */ name: function(name) { name = name ? name: false; if (name) { input.attr('name', value); } else { return input.attr('name'); } }, /** get/set action */ action: function(action) { action = action ? action: false; if (action) { form.attr('action', action); } else { return form.attr('action'); } }, /** get/set enctype */ enctype: function(enctype) { enctype = enctype ? enctype: false; if (enctype) { form.attr('enctype', enctype); } else { return form.attr('enctype'); } }, /** set options */ set: function(obj, value) { value = value ? value: false; function option(action, value) { switch (action) { case 'name': self.name(value); break; case 'action': self.action(value); break; case 'enctype': self.enctype(value); break; case 'params': self.params(value); break; case 'autoSubmit': self.autoSubmit = value; break; case 'onSubmit': self.onSubmit = value; break; case 'onComplete': self.onComplete = value; break; case 'onSelect': self.onSelect = value; break; default: throw new Error("[jQuery.ocupload.set] '" + action + "' is an invalid option."); } } if (value) { option(obj, value); } else { $.each(obj, function(key, value) { option(key, value); }); } }, /** Submit the form */ submit: function() { /** Do something before we upload */ // if onSubmit returns true, don't send to server (for debugging) var exit = this.onSubmit(); if (exit) return; $(".ocupload-" + id,form).remove(); // clear the previous used attributes in case loading multiple files /** add additional paramters before sending */ $.each(options.params, function(key, value) { form.append($("",{ type : "hidden", name : key, value : value, 'class' : "ocupload-" + id // including the upload id })); }); /** Submit the actual form */ form.submit(); /** Do something after we are finished uploading */ iframe.unbind().load(function() { /** Get a response from the server in plain text */ var myFrame = document.getElementById(iframe.attr('name')); var response = $(myFrame.contentWindow.document.body).html(); /** Do something on complete */ self.onComplete(response); }); } }); }; })(jQuery);