/*
|
This file is part of Ext JS 4.2
|
|
Copyright (c) 2011-2013 Sencha Inc
|
|
Contact: http://www.sencha.com/contact
|
|
GNU General Public License Usage
|
This file may be used under the terms of the GNU General Public License version 3.0 as
|
published by the Free Software Foundation and appearing in the file LICENSE included in the
|
packaging of this file.
|
|
Please review the following information to ensure the GNU General Public License version 3.0
|
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
|
|
If you are unsure which license is appropriate for your use, please contact the sales department
|
at http://www.sencha.com/contact.
|
|
Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314)
|
*/
|
/**
|
* A base provider for communicating using JSON. This is an abstract class
|
* and should not be instanced directly.
|
*
|
* @abstract
|
*/
|
|
Ext.define('Ext.direct.JsonProvider', {
|
extend: 'Ext.direct.Provider',
|
alias: 'direct.jsonprovider',
|
|
uses: [
|
'Ext.direct.ExceptionEvent',
|
'Ext.direct.Manager'
|
],
|
|
/**
|
* Parse the JSON response
|
* @private
|
*
|
* @param {Object} response The XHR response object
|
*
|
* @return {Object} The data in the response.
|
*/
|
parseResponse: function(response) {
|
if (!Ext.isEmpty(response.responseText)) {
|
if (Ext.isObject(response.responseText)) {
|
return response.responseText;
|
}
|
|
return Ext.decode(response.responseText);
|
}
|
|
return null;
|
},
|
|
/**
|
* Creates a set of events based on the XHR response
|
*
|
* @param {Object} response The XHR response
|
*
|
* @return {Ext.direct.Event[]} An array of Ext.direct.Event
|
*/
|
createEvents: function(response) {
|
var me = this,
|
data = null,
|
events = [],
|
event, i, len;
|
|
try {
|
data = me.parseResponse(response);
|
}
|
catch (e) {
|
event = new Ext.direct.ExceptionEvent({
|
data: e,
|
xhr: response,
|
code: Ext.direct.Manager.exceptions.PARSE,
|
message: 'Error parsing json response: \n\n ' + e
|
});
|
|
return [event];
|
}
|
|
if (Ext.isArray(data)) {
|
for (i = 0, len = data.length; i < len; ++i) {
|
events.push(me.createEvent(data[i]));
|
}
|
}
|
else if (Ext.isObject(data)) {
|
events.push(me.createEvent(data));
|
}
|
|
return events;
|
},
|
|
/**
|
* Create an event from a response object
|
*
|
* @param {Object} response Response object
|
*
|
* @return {Ext.direct.Event} The event
|
*/
|
createEvent: function(response) {
|
if (typeof response !== 'object'|| !('type' in response)) {
|
return new Ext.direct.ExceptionEvent({
|
data: response,
|
code: Ext.direct.Manager.exceptions.DATA,
|
message: 'Invalid data: event type is not specified'
|
});
|
}
|
|
return Ext.create('direct.' + response.type, response);
|
}
|
});
|