Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
241 changes: 241 additions & 0 deletions core-war/src/main/webapp/wysiwyg/jsp/ckeditor/plugins/ajax/plugin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
/* global ActiveXObject */
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* CKEditor 4 LTS ("Long Term Support") is available under the terms of the Extended Support Model.
*/

/**
* @fileOverview Defines the {@link CKEDITOR.ajax} object, which stores Ajax methods for
* data loading.
*/

( function() {
CKEDITOR.plugins.add( 'ajax', {
requires: 'xml'
} );

/**
* Ajax methods for data loading.
*
* @class
* @singleton
*/
CKEDITOR.ajax = ( function() {
function createXMLHttpRequest() {
// In IE, using the native XMLHttpRequest for local files may throw
// "Access is Denied" errors.
if ( !CKEDITOR.env.ie || location.protocol != 'file:' ) {
try {
return new XMLHttpRequest();
} catch ( e ) {
}
}

try {
return new ActiveXObject( 'Msxml2.XMLHTTP' );
} catch ( e ) {}
try {
return new ActiveXObject( 'Microsoft.XMLHTTP' );
} catch ( e ) {}

return null;
}

function checkStatus( xhr ) {
// HTTP Status Codes:
// 2xx : Success
// 304 : Not Modified
// 0 : Returned when running locally (file://)
// 1223 : IE may change 204 to 1223 (see http://dev.jquery.com/ticket/1450)

return ( xhr.readyState == 4 && ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status === 0 || xhr.status == 1223 ) );
}

function getResponse( xhr, type ) {
if ( !checkStatus( xhr ) ) {
return null;
}

switch ( type ) {
case 'text':
return xhr.responseText;
case 'xml':
var xml = xhr.responseXML;
return new CKEDITOR.xml( xml && xml.firstChild ? xml : xhr.responseText );
case 'arraybuffer':
return xhr.response;
default:
return null;
}
}

function load( url, callback, responseType ) {
var async = !!callback;

var xhr = createXMLHttpRequest();

if ( !xhr )
return null;

if ( async && responseType !== 'text' && responseType !== 'xml' ) {
xhr.responseType = responseType;
}

xhr.open( 'GET', url, async );

if ( async ) {
// TODO: perform leak checks on this closure.
xhr.onreadystatechange = function() {
if ( xhr.readyState == 4 ) {
callback( getResponse( xhr, responseType ) );
xhr = null;
}
};
}

xhr.send( null );

return async ? '' : getResponse( xhr, responseType );
}

function post( url, data, contentType, callback, responseType ) {
var xhr = createXMLHttpRequest();

if ( !xhr )
return null;

xhr.open( 'POST', url, true );

xhr.onreadystatechange = function() {
if ( xhr.readyState == 4 ) {
if ( callback ) {
callback( getResponse( xhr, responseType ) );
}
xhr = null;
}
};

xhr.setRequestHeader( 'Content-type', contentType || 'application/x-www-form-urlencoded; charset=UTF-8' );

xhr.send( data );
}

return {
/**
* Loads data from a given URL.
*
* // Load data synchronously.
* var data = CKEDITOR.ajax.load( 'somedata.txt' );
* alert( data );
*
* // Load data asynchronously.
* var data = CKEDITOR.ajax.load( 'somedata.txt', function( data ) {
* alert( data );
* } );
*
* @param {String} url The URL from which the data is loaded.
* @param {Function} [callback] A callback function to be called on
* data load. If not provided, the data will be loaded synchronously.
* @param {String} [responseType='text'] Defines type of returned data.
* Currently supports: `text`, `xml`, `arraybuffer`. This parameter was introduced in `4.16.0`.
* @returns {String/null} The loaded data for synchronous request. For asynchronous requests -
* empty string. For invalid requests - `null`.
*/
load: function( url, callback, responseType ) {
responseType = responseType || 'text';

return load( url, callback, responseType );
},

/**
* Creates an asynchronous POST `XMLHttpRequest` of the given `url`, `data` and optional `contentType`.
* Once the request is done, regardless if it is successful or not, the `callback` is called
* with `XMLHttpRequest#responseText` or `null` as an argument.
*
* CKEDITOR.ajax.post( 'url/post.php', 'foo=bar', null, function( data ) {
* console.log( data );
* } );
*
* CKEDITOR.ajax.post( 'url/post.php', JSON.stringify( { foo: 'bar' } ), 'application/json', function( data ) {
* console.log( data );
* } );
*
* @since 4.4
* @param {String} url The URL of the request.
* @param {String/Object/Array} data Data passed to `XMLHttpRequest#send`.
* @param {String} [contentType='application/x-www-form-urlencoded; charset=UTF-8'] The value of the `Content-type` header.
* @param {Function} [callback] A callback executed asynchronously with `XMLHttpRequest#responseText` or `null` as an argument,
* depending on the `status` of the request.
*/
post: function( url, data, contentType, callback ) {
return post( url, data, contentType, callback, 'text' );
},

/**
* Loads data from a given URL as XML.
*
* // Load XML synchronously.
* var xml = CKEDITOR.ajax.loadXml( 'somedata.xml' );
* alert( xml.getInnerXml( '//' ) );
*
* // Load XML asynchronously.
* var data = CKEDITOR.ajax.loadXml( 'somedata.xml', function( xml ) {
* alert( xml.getInnerXml( '//' ) );
* } );
*
* @param {String} url The URL from which the data is loaded.
* @param {Function} [callback] A callback function to be called on
* data load. If not provided, the data will be loaded synchronously.
* @returns {CKEDITOR.xml} An XML object storing the loaded data for synchronous
* request. For asynchronous requests - empty string. For invalid requests - `null`.
*/
loadXml: function( url, callback ) {
return load( url, callback, 'xml' );
},

/**
* Loads data from a given URL as text.
*
* // Load text synchronously.
* var text = CKEDITOR.ajax.loadText( 'somedata.txt' );
* alert( text );
*
* // Load text asynchronously.
* var data = CKEDITOR.ajax.loadText( 'somedata.txt', function( textData ) {
* alert( textData );
* } );
*
* @param {String} url The URL from which the data is loaded.
* @param {Function} [callback] A callback function to be called on
* data load. If not provided, the data will be loaded synchronously.
* @returns {String} String storing the loaded data for synchronous
* request. For asynchronous requests - empty string. For invalid requests - `null`.
*/
loadText: function( url, callback ) {
return load( url, callback, 'text' );
},

/**
* Loads data from a given URL as binary data.
*
* // Load data synchronously.
* var binaryData = CKEDITOR.ajax.loadBinary( 'somedata.png' );
* alert( binaryData );
*
* // Load data asynchronously.
* var data = CKEDITOR.ajax.loadBinary( 'somedata.png', function( binaryData ) {
* alert( binaryData );
* } );
*
* @param {String} url The URL from which the data is loaded.
* @param {Function} [callback] A callback function to be called on
* data load. If not provided, the data will be loaded synchronously.
* @returns {ArrayBuffer} ArrayBuffer storing the loaded data for synchronous
* request. For asynchronous requests - empty string. For invalid requests - `null`.
*/
loadBinary: function( url, callback ) {
return load( url, callback, 'arraybuffer' );
}
};
} )();
} )();
Loading