jquery/src/ajax/jsonp.js

84 lines
2.2 KiB
JavaScript
Raw Normal View History

(function( jQuery ) {
var jsc = jQuery.now(),
jsre = /(\=)(?:\?|%3F)(&|$)|()(?:\?\?|%3F%3F)()/i,
rquery_jsonp = /\?/;
// Default jsonp settings
jQuery.ajaxSetup({
jsonp: "callback",
jsonpCallback: function() {
return "jsonp" + jsc++;
}
// Normalize jsonp queries
// 1) put callback parameter in url or data
// 2) sneakily ensure transportDataType is always jsonp for jsonp requests
}).ajaxPrefilter("json jsonp", function(s, originalSettings) {
2011-01-05 22:41:23 +01:00
if ( s.dataTypes[ 0 ] === "jsonp" ||
originalSettings.jsonp ||
originalSettings.jsonpCallback ||
jsre.test(s.url) ||
typeof(s.data) === "string" && jsre.test(s.data) ) {
var jsonpCallback = s.jsonpCallback =
jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback,
url = s.url.replace(jsre, "$1" + jsonpCallback + "$2"),
data = s.url === url && typeof(s.data) === "string" ? s.data.replace(jsre, "$1" + jsonpCallback + "$2") : s.data;
2011-01-05 22:41:23 +01:00
if ( url === s.url && data === s.data ) {
url += (rquery_jsonp.test( url ) ? "&" : "?") + s.jsonp + "=" + jsonpCallback;
}
2011-01-05 22:41:23 +01:00
s.url = url;
s.data = data;
s.dataTypes[ 0 ] = "jsonp";
}
2011-01-05 22:41:23 +01:00
// Bind transport to jsonp dataType
}).ajaxTransport("jsonp", function(s) {
2011-01-05 22:41:23 +01:00
// Put callback in place
var responseContainer,
jsonpCallback = s.jsonpCallback,
previous = window[ jsonpCallback ];
2011-01-05 22:41:23 +01:00
window [ jsonpCallback ] = function( response ) {
responseContainer = [response];
};
2011-01-05 22:41:23 +01:00
s.complete = [function() {
// Set callback back to previous value
window[ jsonpCallback ] = previous;
2011-01-05 22:41:23 +01:00
// Call if it was a function and we have a response
if ( previous) {
if ( responseContainer && jQuery.isFunction ( previous ) ) {
window[ jsonpCallback ] ( responseContainer[0] );
}
} else {
// else, more memory leak avoidance
try{ delete window[ jsonpCallback ]; } catch(e){}
}
2011-01-05 22:41:23 +01:00
}, s.complete ];
2011-01-05 22:41:23 +01:00
// Sneakily ensure this will be handled as json
s.dataTypes[ 0 ] = "json";
2011-01-05 22:41:23 +01:00
// Use data converter to retrieve json after script execution
s.converters["script json"] = function() {
if ( ! responseContainer ) {
jQuery.error( jsonpCallback + " was not called" );
}
return responseContainer[ 0 ];
};
// Delegate to script transport
return "script";
});
})( jQuery );