ajaxfileupload.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. jQuery.extend({
  2. handleError: function (s, xhr, status, e) {
  3. // If a local callback was specified, fire it
  4. if (s.error) {
  5. s.error.call(s.context || s, xhr, status, e);
  6. }
  7. // Fire the global callback
  8. if (s.global) {
  9. (s.context ? jQuery(s.context) : jQuery.event).trigger("ajaxError", [xhr, s, e]);
  10. }
  11. },
  12. createUploadIframe: function (id, uri) {
  13. //create frame
  14. var frameId = 'jUploadFrame' + id;
  15. var iframeHtml = '<iframe id="' + frameId + '" name="' + frameId + '" style="position:absolute; top:-9999px; left:-9999px"';
  16. if (window.ActiveXObject) {
  17. if (typeof uri == 'boolean') {
  18. iframeHtml += ' src="' + 'javascript:false' + '"';
  19. }
  20. else if (typeof uri == 'string') {
  21. iframeHtml += ' src="' + uri + '"';
  22. }
  23. }
  24. iframeHtml += ' />';
  25. jQuery(iframeHtml).appendTo(document.body);
  26. return jQuery('#' + frameId).get(0);
  27. },
  28. createUploadForm: function (id, fileElementId, data) {
  29. //create form
  30. var formId = 'jUploadForm' + id;
  31. var fileId = 'jUploadFile' + id;
  32. var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
  33. if (data) {
  34. for (var i in data) {
  35. jQuery('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form);
  36. }
  37. }
  38. var oldElement = jQuery('#' + fileElementId);
  39. var newElement = jQuery(oldElement).clone();
  40. jQuery(oldElement).attr('id', fileId);
  41. jQuery(oldElement).before(newElement);
  42. jQuery(oldElement).appendTo(form);
  43. //set attributes
  44. jQuery(form).css('position', 'absolute');
  45. jQuery(form).css('top', '-1200px');
  46. jQuery(form).css('left', '-1200px');
  47. jQuery(form).appendTo('body');
  48. return form;
  49. },
  50. ajaxFileUpload: function (s) {
  51. // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
  52. s = jQuery.extend({}, jQuery.ajaxSettings, s);
  53. var id = new Date().getTime()
  54. var form = jQuery.createUploadForm(id, s.fileElementId, (typeof(s.data) == 'undefined' ? false : s.data));
  55. var io = jQuery.createUploadIframe(id, s.secureuri);
  56. var frameId = 'jUploadFrame' + id;
  57. var formId = 'jUploadForm' + id;
  58. // Watch for a new set of requests
  59. if (s.global && !jQuery.active++) {
  60. jQuery.event.trigger("ajaxStart");
  61. }
  62. var requestDone = false;
  63. // Create the request object
  64. var xml = {}
  65. if (s.global)
  66. jQuery.event.trigger("ajaxSend", [xml, s]);
  67. // Wait for a response to come back
  68. var uploadCallback = function (isTimeout) {
  69. var io = document.getElementById(frameId);
  70. try {
  71. if (io.contentWindow) {
  72. xml.responseText = io.contentWindow.document.body ? io.contentWindow.document.body.innerHTML : null;
  73. xml.responseXML = io.contentWindow.document.XMLDocument ? io.contentWindow.document.XMLDocument : io.contentWindow.document;
  74. } else if (io.contentDocument) {
  75. xml.responseText = io.contentDocument.document.body ? io.contentDocument.document.body.innerHTML : null;
  76. xml.responseXML = io.contentDocument.document.XMLDocument ? io.contentDocument.document.XMLDocument : io.contentDocument.document;
  77. }
  78. } catch (e) {
  79. jQuery.handleError(s, xml, null, e);
  80. }
  81. var $responseText=jQuery('<div>'+xml.responseText+'</div>');
  82. $responseText.find('*').remove();
  83. xml.responseText=$responseText.text();
  84. if (xml || isTimeout == "timeout") {
  85. requestDone = true;
  86. var status;
  87. try {
  88. status = isTimeout != "timeout" ? "success" : "error";
  89. // Make sure that the request was successful or notmodified
  90. if (status != "error") {
  91. // process the data (runs the xml through httpData regardless of callback)
  92. var data = jQuery.uploadHttpData(xml, s.dataType);
  93. // If a local callback was specified, fire it and pass it the data
  94. if (s.success)
  95. s.success(data, status);
  96. // Fire the global callback
  97. if (s.global)
  98. jQuery.event.trigger("ajaxSuccess", [xml, s]);
  99. } else
  100. jQuery.handleError(s, xml, status);
  101. } catch (e) {
  102. status = "error";
  103. jQuery.handleError(s, xml, status, e);
  104. }
  105. // The request was completed
  106. if (s.global)
  107. jQuery.event.trigger("ajaxComplete", [xml, s]);
  108. // Handle the global AJAX counter
  109. if (s.global && !--jQuery.active)
  110. jQuery.event.trigger("ajaxStop");
  111. // Process result
  112. if (s.complete)
  113. s.complete(xml, status);
  114. jQuery(io).unbind()
  115. setTimeout(function () {
  116. try {
  117. jQuery(io).remove();
  118. jQuery(form).remove();
  119. } catch (e) {
  120. jQuery.handleError(s, xml, null, e);
  121. }
  122. }, 100)
  123. xml = null
  124. }
  125. }
  126. // Timeout checker
  127. if (s.timeout > 0) {
  128. setTimeout(function () {
  129. // Check to see if the request is still happening
  130. if (!requestDone) uploadCallback("timeout");
  131. }, s.timeout);
  132. }
  133. try {
  134. var form = jQuery('#' + formId);
  135. jQuery(form).attr('action', s.url);
  136. jQuery(form).attr('method', 'POST');
  137. jQuery(form).attr('target', frameId);
  138. if (form.encoding) {
  139. jQuery(form).attr('encoding', 'multipart/form-data');
  140. }
  141. else {
  142. jQuery(form).attr('enctype', 'multipart/form-data');
  143. }
  144. jQuery(form).submit();
  145. } catch (e) {
  146. jQuery.handleError(s, xml, null, e);
  147. }
  148. jQuery('#' + frameId).load(uploadCallback);
  149. return {
  150. abort: function () {
  151. }
  152. };
  153. },
  154. uploadHttpData: function (r, type) {
  155. var data = !type;
  156. data = type == "xml" || data ? r.responseXML : r.responseText;
  157. // If the type is "script", eval it in global context
  158. if (type == "script")
  159. jQuery.globalEval(data);
  160. // Get the JavaScript object, if JSON is used.
  161. if (type == "json")
  162. eval("data = " + data);
  163. // evaluate scripts within html
  164. if (type == "html")
  165. jQuery("<div>").html(data).evalScripts();
  166. return data;
  167. }
  168. })