|
define( [ |
|
"../core", |
|
"../var/support", |
|
"../ajax" |
|
], function( jQuery, support ) { |
|
|
|
jQuery.ajaxSettings.xhr = function() { |
|
try { |
|
return new window.XMLHttpRequest(); |
|
} catch ( e ) {} |
|
}; |
|
|
|
var xhrSuccessStatus = { |
|
|
|
|
|
0: 200, |
|
|
|
|
|
|
|
1223: 204 |
|
}, |
|
xhrSupported = jQuery.ajaxSettings.xhr(); |
|
|
|
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); |
|
support.ajax = xhrSupported = !!xhrSupported; |
|
|
|
jQuery.ajaxTransport( function( options ) { |
|
var callback, errorCallback; |
|
|
|
|
|
if ( support.cors || xhrSupported && !options.crossDomain ) { |
|
return { |
|
send: function( headers, complete ) { |
|
var i, |
|
xhr = options.xhr(); |
|
|
|
xhr.open( |
|
options.type, |
|
options.url, |
|
options.async, |
|
options.username, |
|
options.password |
|
); |
|
|
|
|
|
if ( options.xhrFields ) { |
|
for ( i in options.xhrFields ) { |
|
xhr[ i ] = options.xhrFields[ i ]; |
|
} |
|
} |
|
|
|
|
|
if ( options.mimeType && xhr.overrideMimeType ) { |
|
xhr.overrideMimeType( options.mimeType ); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { |
|
headers[ "X-Requested-With" ] = "XMLHttpRequest"; |
|
} |
|
|
|
|
|
for ( i in headers ) { |
|
xhr.setRequestHeader( i, headers[ i ] ); |
|
} |
|
|
|
|
|
callback = function( type ) { |
|
return function() { |
|
if ( callback ) { |
|
callback = errorCallback = xhr.onload = |
|
xhr.onerror = xhr.onabort = xhr.onreadystatechange = null; |
|
|
|
if ( type === "abort" ) { |
|
xhr.abort(); |
|
} else if ( type === "error" ) { |
|
|
|
|
|
|
|
|
|
if ( typeof xhr.status !== "number" ) { |
|
complete( 0, "error" ); |
|
} else { |
|
complete( |
|
|
|
|
|
xhr.status, |
|
xhr.statusText |
|
); |
|
} |
|
} else { |
|
complete( |
|
xhrSuccessStatus[ xhr.status ] || xhr.status, |
|
xhr.statusText, |
|
|
|
|
|
|
|
|
|
( xhr.responseType || "text" ) !== "text" || |
|
typeof xhr.responseText !== "string" ? |
|
{ binary: xhr.response } : |
|
{ text: xhr.responseText }, |
|
xhr.getAllResponseHeaders() |
|
); |
|
} |
|
} |
|
}; |
|
}; |
|
|
|
|
|
xhr.onload = callback(); |
|
errorCallback = xhr.onerror = callback( "error" ); |
|
|
|
|
|
|
|
|
|
if ( xhr.onabort !== undefined ) { |
|
xhr.onabort = errorCallback; |
|
} else { |
|
xhr.onreadystatechange = function() { |
|
|
|
|
|
if ( xhr.readyState === 4 ) { |
|
|
|
|
|
|
|
|
|
|
|
window.setTimeout( function() { |
|
if ( callback ) { |
|
errorCallback(); |
|
} |
|
} ); |
|
} |
|
}; |
|
} |
|
|
|
|
|
callback = callback( "abort" ); |
|
|
|
try { |
|
|
|
|
|
xhr.send( options.hasContent && options.data || null ); |
|
} catch ( e ) { |
|
|
|
|
|
if ( callback ) { |
|
throw e; |
|
} |
|
} |
|
}, |
|
|
|
abort: function() { |
|
if ( callback ) { |
|
callback(); |
|
} |
|
} |
|
}; |
|
} |
|
} ); |
|
|
|
} ); |
|
|