mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Added ajaxWithCredentials option
This commit is contained in:
parent
03fec96f33
commit
c820f9f918
@ -551,8 +551,11 @@
|
|||||||
* If collectionMode is true, specifies the margin, in viewport coordinates, between each TiledImage.
|
* If collectionMode is true, specifies the margin, in viewport coordinates, between each TiledImage.
|
||||||
*
|
*
|
||||||
* @property {String|Boolean} [crossOriginPolicy=false]
|
* @property {String|Boolean} [crossOriginPolicy=false]
|
||||||
* Valid values are 'Anonymous', 'use-credentials', and false. If false, canvas requests will
|
* Valid values are 'Anonymous', 'use-credentials', and false. If false, canvas requests will
|
||||||
* not use CORS, and the canvas will be tainted.
|
* not use CORS, and the canvas will be tainted.
|
||||||
|
*
|
||||||
|
* @property {Boolean} [ajaxWithCredentials=false]
|
||||||
|
* Whether to set the withCredentials XHR flag for AJAX requests (when loading tile sources).
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -911,6 +914,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
tileHost: null,
|
tileHost: null,
|
||||||
initialPage: 0,
|
initialPage: 0,
|
||||||
crossOriginPolicy: false,
|
crossOriginPolicy: false,
|
||||||
|
ajaxWithCredentials: false,
|
||||||
|
|
||||||
//PAN AND ZOOM SETTINGS AND CONSTRAINTS
|
//PAN AND ZOOM SETTINGS AND CONSTRAINTS
|
||||||
panHorizontal: true,
|
panHorizontal: true,
|
||||||
@ -1923,6 +1927,15 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
* @throws {Error}
|
* @throws {Error}
|
||||||
*/
|
*/
|
||||||
makeAjaxRequest: function( url, onSuccess, onError ) {
|
makeAjaxRequest: function( url, onSuccess, onError ) {
|
||||||
|
var withCredentials;
|
||||||
|
|
||||||
|
if( $.isPlainObject( url ) ){
|
||||||
|
onSuccess = url.success;
|
||||||
|
onError = url.error;
|
||||||
|
withCredentials = url.withCredentials;
|
||||||
|
url = url.url;
|
||||||
|
}
|
||||||
|
|
||||||
var protocol = $.getUrlProtocol( url );
|
var protocol = $.getUrlProtocol( url );
|
||||||
var request = $.createAjaxRequest( protocol === "file:" );
|
var request = $.createAjaxRequest( protocol === "file:" );
|
||||||
|
|
||||||
@ -1949,6 +1962,10 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (withCredentials) {
|
||||||
|
request.withCredentials = true;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
request.open( "GET", url, true );
|
request.open( "GET", url, true );
|
||||||
request.send( null );
|
request.send( null );
|
||||||
|
@ -74,8 +74,9 @@
|
|||||||
* The maximum level to attempt to load.
|
* The maximum level to attempt to load.
|
||||||
*/
|
*/
|
||||||
$.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLevel ) {
|
$.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLevel ) {
|
||||||
var callback = null,
|
var _this = this;
|
||||||
args = arguments,
|
|
||||||
|
var args = arguments,
|
||||||
options,
|
options,
|
||||||
i;
|
i;
|
||||||
|
|
||||||
@ -102,19 +103,23 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
//source
|
//source
|
||||||
$.extend( true, this, options );
|
$.extend( true, this, options );
|
||||||
|
|
||||||
//Any functions that are passed as arguments are bound to the ready callback
|
if (!this.success) {
|
||||||
/*jshint loopfunc:true*/
|
//Any functions that are passed as arguments are bound to the ready callback
|
||||||
for ( i = 0; i < arguments.length; i++ ) {
|
for ( i = 0; i < arguments.length; i++ ) {
|
||||||
if ( $.isFunction( arguments[ i ] ) ) {
|
if ( $.isFunction( arguments[ i ] ) ) {
|
||||||
callback = arguments[ i ];
|
this.success = arguments[ i ];
|
||||||
this.addHandler( 'ready', function ( event ) {
|
//only one callback per constructor
|
||||||
callback( event );
|
break;
|
||||||
} );
|
}
|
||||||
//only one callback per constructor
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.success) {
|
||||||
|
this.addHandler( 'ready', function ( event ) {
|
||||||
|
_this.success( event );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ratio of width to height
|
* Ratio of width to height
|
||||||
* @member {Number} aspectRatio
|
* @member {Number} aspectRatio
|
||||||
@ -127,7 +132,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* The size of the image tiles used to compose the image.
|
* The size of the image tiles used to compose the image.
|
||||||
* Please note that tileSize may be deprecated in a future release.
|
* Please note that tileSize may be deprecated in a future release.
|
||||||
* Instead the getTileSize(level) function should be used.
|
* Instead the getTileSize(level) function should be used.
|
||||||
* @member {Number} tileSize
|
* @member {Number} tileSize
|
||||||
* @memberof OpenSeadragon.TileSource#
|
* @memberof OpenSeadragon.TileSource#
|
||||||
@ -148,12 +153,16 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
* @memberof OpenSeadragon.TileSource#
|
* @memberof OpenSeadragon.TileSource#
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @member {Boolean} ready
|
* @member {Boolean} ready
|
||||||
* @memberof OpenSeadragon.TileSource#
|
* @memberof OpenSeadragon.TileSource#
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if( 'string' == $.type( arguments[ 0 ] ) ){
|
if( 'string' == $.type( arguments[ 0 ] ) ){
|
||||||
|
this.url = arguments[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.url) {
|
||||||
//in case the getImageInfo method is overriden and/or implies an
|
//in case the getImageInfo method is overriden and/or implies an
|
||||||
//async mechanism set some safe defaults first
|
//async mechanism set some safe defaults first
|
||||||
this.aspectRatio = 1;
|
this.aspectRatio = 1;
|
||||||
@ -165,7 +174,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
this.ready = false;
|
this.ready = false;
|
||||||
//configuration via url implies the extending class
|
//configuration via url implies the extending class
|
||||||
//implements and 'configure'
|
//implements and 'configure'
|
||||||
this.getImageInfo( arguments[ 0 ] );
|
this.getImageInfo( this.url );
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
@ -185,8 +194,8 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
Math.log( 2 )
|
Math.log( 2 )
|
||||||
) : 0
|
) : 0
|
||||||
);
|
);
|
||||||
if( callback && $.isFunction( callback ) ){
|
if( this.success && $.isFunction( this.success ) ){
|
||||||
callback( this );
|
this.success( this );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,7 +206,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
$.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{
|
$.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the tileSize for a given level.
|
* Return the tileSize for a given level.
|
||||||
* Subclasses should override this if tileSizes can be different at different levels
|
* Subclasses should override this if tileSizes can be different at different levels
|
||||||
* such as in IIIFTileSource. Code should use this function rather than reading
|
* such as in IIIFTileSource. Code should use this function rather than reading
|
||||||
* from .tileSize directly. tileSize may be deprecated in a future release.
|
* from .tileSize directly. tileSize may be deprecated in a future release.
|
||||||
@ -355,6 +364,10 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{
|
|||||||
}
|
}
|
||||||
|
|
||||||
options = $TileSource.prototype.configure.apply( _this, [ data, url ]);
|
options = $TileSource.prototype.configure.apply( _this, [ data, url ]);
|
||||||
|
if (options.ajaxWithCredentials === undefined) {
|
||||||
|
options.ajaxWithCredentials = _this.ajaxWithCredentials;
|
||||||
|
}
|
||||||
|
|
||||||
readySource = new $TileSource( options );
|
readySource = new $TileSource( options );
|
||||||
_this.ready = true;
|
_this.ready = true;
|
||||||
/**
|
/**
|
||||||
@ -383,45 +396,50 @@ $.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// request info via xhr asynchronously.
|
// request info via xhr asynchronously.
|
||||||
$.makeAjaxRequest( url, function( xhr ) {
|
$.makeAjaxRequest( {
|
||||||
var data = processResponse( xhr );
|
url: url,
|
||||||
callback( data );
|
withCredentials: this.ajaxWithCredentials,
|
||||||
}, function ( xhr, exc ) {
|
success: function( xhr ) {
|
||||||
var msg;
|
var data = processResponse( xhr );
|
||||||
|
callback( data );
|
||||||
|
},
|
||||||
|
error: function ( xhr, exc ) {
|
||||||
|
var msg;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
IE < 10 will block XHR requests to different origins. Any property access on the request
|
IE < 10 will block XHR requests to different origins. Any property access on the request
|
||||||
object will raise an exception which we'll attempt to handle by formatting the original
|
object will raise an exception which we'll attempt to handle by formatting the original
|
||||||
exception rather than the second one raised when we try to access xhr.status
|
exception rather than the second one raised when we try to access xhr.status
|
||||||
*/
|
*/
|
||||||
try {
|
try {
|
||||||
msg = "HTTP " + xhr.status + " attempting to load TileSource";
|
msg = "HTTP " + xhr.status + " attempting to load TileSource";
|
||||||
} catch ( e ) {
|
} catch ( e ) {
|
||||||
var formattedExc;
|
var formattedExc;
|
||||||
if ( typeof( exc ) == "undefined" || !exc.toString ) {
|
if ( typeof( exc ) == "undefined" || !exc.toString ) {
|
||||||
formattedExc = "Unknown error";
|
formattedExc = "Unknown error";
|
||||||
} else {
|
} else {
|
||||||
formattedExc = exc.toString();
|
formattedExc = exc.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
msg = formattedExc + " attempting to load TileSource";
|
||||||
}
|
}
|
||||||
|
|
||||||
msg = formattedExc + " attempting to load TileSource";
|
/***
|
||||||
|
* Raised when an error occurs loading a TileSource.
|
||||||
|
*
|
||||||
|
* @event open-failed
|
||||||
|
* @memberof OpenSeadragon.TileSource
|
||||||
|
* @type {object}
|
||||||
|
* @property {OpenSeadragon.TileSource} eventSource - A reference to the TileSource which raised the event.
|
||||||
|
* @property {String} message
|
||||||
|
* @property {String} source
|
||||||
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
||||||
|
*/
|
||||||
|
_this.raiseEvent( 'open-failed', {
|
||||||
|
message: msg,
|
||||||
|
source: url
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/***
|
|
||||||
* Raised when an error occurs loading a TileSource.
|
|
||||||
*
|
|
||||||
* @event open-failed
|
|
||||||
* @memberof OpenSeadragon.TileSource
|
|
||||||
* @type {object}
|
|
||||||
* @property {OpenSeadragon.TileSource} eventSource - A reference to the TileSource which raised the event.
|
|
||||||
* @property {String} message
|
|
||||||
* @property {String} source
|
|
||||||
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
|
||||||
*/
|
|
||||||
_this.raiseEvent( 'open-failed', {
|
|
||||||
message: msg,
|
|
||||||
source: url
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2051,14 +2051,22 @@ function getTileSourceImplementation( viewer, tileSource, successCallback,
|
|||||||
setTimeout( function() {
|
setTimeout( function() {
|
||||||
if ( $.type( tileSource ) == 'string' ) {
|
if ( $.type( tileSource ) == 'string' ) {
|
||||||
//If its still a string it means it must be a url at this point
|
//If its still a string it means it must be a url at this point
|
||||||
tileSource = new $.TileSource( tileSource, function( event ) {
|
tileSource = new $.TileSource({
|
||||||
successCallback( event.tileSource );
|
url: tileSource,
|
||||||
|
ajaxWithCredentials: viewer.ajaxWithCredentials,
|
||||||
|
success: function( event ) {
|
||||||
|
successCallback( event.tileSource );
|
||||||
|
}
|
||||||
});
|
});
|
||||||
tileSource.addHandler( 'open-failed', function( event ) {
|
tileSource.addHandler( 'open-failed', function( event ) {
|
||||||
failCallback( event );
|
failCallback( event );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
} else if ( $.isPlainObject( tileSource ) || tileSource.nodeType ) {
|
} else if ( $.isPlainObject( tileSource ) || tileSource.nodeType ) {
|
||||||
|
if (tileSource.ajaxWithCredentials === undefined) {
|
||||||
|
tileSource.ajaxWithCredentials = viewer.ajaxWithCredentials;
|
||||||
|
}
|
||||||
|
|
||||||
if ( $.isFunction( tileSource.getTileUrl ) ) {
|
if ( $.isFunction( tileSource.getTileUrl ) ) {
|
||||||
//Custom tile source
|
//Custom tile source
|
||||||
var customTileSource = new $.TileSource( tileSource );
|
var customTileSource = new $.TileSource( tileSource );
|
||||||
|
Loading…
Reference in New Issue
Block a user