Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

474 lines
20 KiB

  1. /*!
  2. * Ext JS Library 3.2.0
  3. * Copyright(c) 2006-2010 Ext JS, Inc.
  4. * licensing@extjs.com
  5. * http://www.extjs.com/license
  6. */
  7. /**
  8. * @class Ext.data.XmlWriter
  9. * @extends Ext.data.DataWriter
  10. * DataWriter extension for writing an array or single {@link Ext.data.Record} object(s) in preparation for executing a remote CRUD action via XML.
  11. * XmlWriter uses an instance of {@link Ext.XTemplate} for maximum flexibility in defining your own custom XML schema if the default schema is not appropriate for your needs.
  12. * See the {@link #tpl} configuration-property.
  13. */
  14. Ext.data.XmlWriter = function(params) {
  15. Ext.data.XmlWriter.superclass.constructor.apply(this, arguments);
  16. // compile the XTemplate for rendering XML documents.
  17. this.tpl = (typeof(this.tpl) === 'string') ? new Ext.XTemplate(this.tpl).compile() : this.tpl.compile();
  18. };
  19. Ext.extend(Ext.data.XmlWriter, Ext.data.DataWriter, {
  20. /**
  21. * @cfg {String} documentRoot [xrequest] (Optional) The name of the XML document root-node. <b>Note:</b>
  22. * this parameter is required </b>only when</b> sending extra {@link Ext.data.Store#baseParams baseParams} to the server
  23. * during a write-request -- if no baseParams are set, the {@link Ext.data.XmlReader#record} meta-property can
  24. * suffice as the XML document root-node for write-actions involving just a <b>single record</b>. For requests
  25. * involving <b>multiple</b> records and <b>NO</b> baseParams, the {@link Ext.data.XmlWriter#root} property can
  26. * act as the XML document root.
  27. */
  28. documentRoot: 'xrequest',
  29. /**
  30. * @cfg {Boolean} forceDocumentRoot [false] Set to <tt>true</tt> to force XML documents having a root-node as defined
  31. * by {@link #documentRoot}, even with no baseParams defined.
  32. */
  33. forceDocumentRoot: false,
  34. /**
  35. * @cfg {String} root [records] The name of the containing element which will contain the nodes of an write-action involving <b>multiple</b> records. Each
  36. * xml-record written to the server will be wrapped in an element named after {@link Ext.data.XmlReader#record} property.
  37. * eg:
  38. <code><pre>
  39. &lt;?xml version="1.0" encoding="UTF-8"?>
  40. &lt;user>&lt;first>Barney&lt;/first>&lt;/user>
  41. </code></pre>
  42. * However, when <b>multiple</b> records are written in a batch-operation, these records must be wrapped in a containing
  43. * Element.
  44. * eg:
  45. <code><pre>
  46. &lt;?xml version="1.0" encoding="UTF-8"?>
  47. &lt;records>
  48. &lt;first>Barney&lt;/first>&lt;/user>
  49. &lt;records>&lt;first>Barney&lt;/first>&lt;/user>
  50. &lt;/records>
  51. </code></pre>
  52. * Defaults to <tt>records</tt>. Do not confuse the nature of this property with that of {@link #documentRoot}
  53. */
  54. root: 'records',
  55. /**
  56. * @cfg {String} xmlVersion [1.0] The <tt>version</tt> written to header of xml documents.
  57. <code><pre>&lt;?xml version="1.0" encoding="ISO-8859-15"?></pre></code>
  58. */
  59. xmlVersion : '1.0',
  60. /**
  61. * @cfg {String} xmlEncoding [ISO-8859-15] The <tt>encoding</tt> written to header of xml documents.
  62. <code><pre>&lt;?xml version="1.0" encoding="ISO-8859-15"?></pre></code>
  63. */
  64. xmlEncoding: 'ISO-8859-15',
  65. /**
  66. * @cfg {String/Ext.XTemplate} tpl The XML template used to render {@link Ext.data.Api#actions write-actions} to your server.
  67. * <p>One can easily provide his/her own custom {@link Ext.XTemplate#constructor template-definition} if the default does not suffice.</p>
  68. * <p>Defaults to:</p>
  69. <code><pre>
  70. &lt;?xml version="{version}" encoding="{encoding}"?>
  71. &lt;tpl if="documentRoot">&lt;{documentRoot}>
  72. &lt;tpl for="baseParams">
  73. &lt;tpl for=".">
  74. &lt;{name}>{value}&lt;/{name}>
  75. &lt;/tpl>
  76. &lt;/tpl>
  77. &lt;tpl if="records.length &gt; 1">&lt;{root}>',
  78. &lt;tpl for="records">
  79. &lt;{parent.record}>
  80. &lt;tpl for=".">
  81. &lt;{name}>{value}&lt;/{name}>
  82. &lt;/tpl>
  83. &lt;/{parent.record}>
  84. &lt;/tpl>
  85. &lt;tpl if="records.length &gt; 1">&lt;/{root}>&lt;/tpl>
  86. &lt;tpl if="documentRoot">&lt;/{documentRoot}>&lt;/tpl>
  87. </pre></code>
  88. * <p>Templates will be called with the following API</p>
  89. * <ul>
  90. * <li>{String} version [1.0] The xml version.</li>
  91. * <li>{String} encoding [ISO-8859-15] The xml encoding.</li>
  92. * <li>{String/false} documentRoot The XML document root-node name or <tt>false</tt> if not required. See {@link #documentRoot} and {@link #forceDocumentRoot}.</li>
  93. * <li>{String} record The meta-data parameter defined on your {@link Ext.data.XmlReader#record} configuration represents the name of the xml-tag containing each record.</li>
  94. * <li>{String} root The meta-data parameter defined by {@link Ext.data.XmlWriter#root} configuration-parameter. Represents the name of the xml root-tag when sending <b>multiple</b> records to the server.</li>
  95. * <li>{Array} records The records being sent to the server, ie: the subject of the write-action being performed. The records parameter will be always be an array, even when only a single record is being acted upon.
  96. * Each item within the records array will contain an array of field objects having the following properties:
  97. * <ul>
  98. * <li>{String} name The field-name of the record as defined by your {@link Ext.data.Record#create Ext.data.Record definition}. The "mapping" property will be used, otherwise it will match the "name" property. Use this parameter to define the XML tag-name of the property.</li>
  99. * <li>{Mixed} value The record value of the field enclosed within XML tags specified by name property above.</li>
  100. * </ul></li>
  101. * <li>{Array} baseParams. The baseParams as defined upon {@link Ext.data.Store#baseParams}. Note that the baseParams have been converted into an array of [{name : "foo", value: "bar"}, ...] pairs in the same manner as the <b>records</b> parameter above. See {@link #documentRoot} and {@link #forceDocumentRoot}.</li>
  102. * </ul>
  103. */
  104. // Encoding the ? here in case it's being included by some kind of page that will parse it (eg. PHP)
  105. tpl: '<tpl for="."><\u003fxml version="{version}" encoding="{encoding}"\u003f><tpl if="documentRoot"><{documentRoot}><tpl for="baseParams"><tpl for="."><{name}>{value}</{name}</tpl></tpl></tpl><tpl if="records.length&gt;1"><{root}></tpl><tpl for="records"><{parent.record}><tpl for="."><{name}>{value}</{name}></tpl></{parent.record}></tpl><tpl if="records.length&gt;1"></{root}></tpl><tpl if="documentRoot"></{documentRoot}></tpl></tpl>',
  106. /**
  107. * XmlWriter implementation of the final stage of a write action.
  108. * @param {Object} params Transport-proxy's (eg: {@link Ext.Ajax#request}) params-object to write-to.
  109. * @param {Object} baseParams as defined by {@link Ext.data.Store#baseParams}. The baseParms must be encoded by the extending class, eg: {@link Ext.data.JsonWriter}, {@link Ext.data.XmlWriter}.
  110. * @param {Object/Object[]} data Data-object representing the compiled Store-recordset.
  111. */
  112. render : function(params, baseParams, data) {
  113. baseParams = this.toArray(baseParams);
  114. params.xmlData = this.tpl.applyTemplate({
  115. version: this.xmlVersion,
  116. encoding: this.xmlEncoding,
  117. documentRoot: (baseParams.length > 0 || this.forceDocumentRoot === true) ? this.documentRoot : false,
  118. record: this.meta.record,
  119. root: this.root,
  120. baseParams: baseParams,
  121. records: (Ext.isArray(data[0])) ? data : [data]
  122. });
  123. },
  124. /**
  125. * createRecord
  126. * @protected
  127. * @param {Ext.data.Record} rec
  128. * @return {Array} Array of <tt>name:value</tt> pairs for attributes of the {@link Ext.data.Record}. See {@link Ext.data.DataWriter#toHash}.
  129. */
  130. createRecord : function(rec) {
  131. return this.toArray(this.toHash(rec));
  132. },
  133. /**
  134. * updateRecord
  135. * @protected
  136. * @param {Ext.data.Record} rec
  137. * @return {Array} Array of {name:value} pairs for attributes of the {@link Ext.data.Record}. See {@link Ext.data.DataWriter#toHash}.
  138. */
  139. updateRecord : function(rec) {
  140. return this.toArray(this.toHash(rec));
  141. },
  142. /**
  143. * destroyRecord
  144. * @protected
  145. * @param {Ext.data.Record} rec
  146. * @return {Array} Array containing a attribute-object (name/value pair) representing the {@link Ext.data.DataReader#idProperty idProperty}.
  147. */
  148. destroyRecord : function(rec) {
  149. var data = {};
  150. data[this.meta.idProperty] = rec.id;
  151. return this.toArray(data);
  152. }
  153. });
  154. /**
  155. * @class Ext.data.XmlReader
  156. * @extends Ext.data.DataReader
  157. * <p>Data reader class to create an Array of {@link Ext.data.Record} objects from an XML document
  158. * based on mappings in a provided {@link Ext.data.Record} constructor.</p>
  159. * <p><b>Note</b>: that in order for the browser to parse a returned XML document, the Content-Type
  160. * header in the HTTP response must be set to "text/xml" or "application/xml".</p>
  161. * <p>Example code:</p>
  162. * <pre><code>
  163. var Employee = Ext.data.Record.create([
  164. {name: 'name', mapping: 'name'}, // "mapping" property not needed if it is the same as "name"
  165. {name: 'occupation'} // This field will use "occupation" as the mapping.
  166. ]);
  167. var myReader = new Ext.data.XmlReader({
  168. totalProperty: "results", // The element which contains the total dataset size (optional)
  169. record: "row", // The repeated element which contains row information
  170. idProperty: "id" // The element within the row that provides an ID for the record (optional)
  171. messageProperty: "msg" // The element within the response that provides a user-feedback message (optional)
  172. }, Employee);
  173. </code></pre>
  174. * <p>
  175. * This would consume an XML file like this:
  176. * <pre><code>
  177. &lt;?xml version="1.0" encoding="UTF-8"?>
  178. &lt;dataset>
  179. &lt;results>2&lt;/results>
  180. &lt;row>
  181. &lt;id>1&lt;/id>
  182. &lt;name>Bill&lt;/name>
  183. &lt;occupation>Gardener&lt;/occupation>
  184. &lt;/row>
  185. &lt;row>
  186. &lt;id>2&lt;/id>
  187. &lt;name>Ben&lt;/name>
  188. &lt;occupation>Horticulturalist&lt;/occupation>
  189. &lt;/row>
  190. &lt;/dataset>
  191. </code></pre>
  192. * @cfg {String} totalProperty The DomQuery path from which to retrieve the total number of records
  193. * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
  194. * paged from the remote server.
  195. * @cfg {String} record The DomQuery path to the repeated element which contains record information.
  196. * @cfg {String} record The DomQuery path to the repeated element which contains record information.
  197. * @cfg {String} successProperty The DomQuery path to the success attribute used by forms.
  198. * @cfg {String} idPath The DomQuery path relative from the record element to the element that contains
  199. * a record identifier value.
  200. * @constructor
  201. * Create a new XmlReader.
  202. * @param {Object} meta Metadata configuration options
  203. * @param {Object} recordType Either an Array of field definition objects as passed to
  204. * {@link Ext.data.Record#create}, or a Record constructor object created using {@link Ext.data.Record#create}.
  205. */
  206. Ext.data.XmlReader = function(meta, recordType){
  207. meta = meta || {};
  208. // backwards compat, convert idPath or id / success
  209. Ext.applyIf(meta, {
  210. idProperty: meta.idProperty || meta.idPath || meta.id,
  211. successProperty: meta.successProperty || meta.success
  212. });
  213. Ext.data.XmlReader.superclass.constructor.call(this, meta, recordType || meta.fields);
  214. };
  215. Ext.extend(Ext.data.XmlReader, Ext.data.DataReader, {
  216. /**
  217. * This method is only used by a DataProxy which has retrieved data from a remote server.
  218. * @param {Object} response The XHR object which contains the parsed XML document. The response is expected
  219. * to contain a property called <tt>responseXML</tt> which refers to an XML document object.
  220. * @return {Object} records A data block which is used by an {@link Ext.data.Store} as
  221. * a cache of Ext.data.Records.
  222. */
  223. read : function(response){
  224. var doc = response.responseXML;
  225. if(!doc) {
  226. throw {message: "XmlReader.read: XML Document not available"};
  227. }
  228. return this.readRecords(doc);
  229. },
  230. /**
  231. * Create a data block containing Ext.data.Records from an XML document.
  232. * @param {Object} doc A parsed XML document.
  233. * @return {Object} records A data block which is used by an {@link Ext.data.Store} as
  234. * a cache of Ext.data.Records.
  235. */
  236. readRecords : function(doc){
  237. /**
  238. * After any data loads/reads, the raw XML Document is available for further custom processing.
  239. * @type XMLDocument
  240. */
  241. this.xmlData = doc;
  242. var root = doc.documentElement || doc,
  243. q = Ext.DomQuery,
  244. totalRecords = 0,
  245. success = true;
  246. if(this.meta.totalProperty){
  247. totalRecords = this.getTotal(root, 0);
  248. }
  249. if(this.meta.successProperty){
  250. success = this.getSuccess(root);
  251. }
  252. var records = this.extractData(q.select(this.meta.record, root), true); // <-- true to return Ext.data.Record[]
  253. // TODO return Ext.data.Response instance. @see #readResponse
  254. return {
  255. success : success,
  256. records : records,
  257. totalRecords : totalRecords || records.length
  258. };
  259. },
  260. /**
  261. * Decode an XML response from server.
  262. * @param {String} action [{@link Ext.data.Api#actions} create|read|update|destroy]
  263. * @param {Object} response HTTP Response object from browser.
  264. * @return {Ext.data.Response} An instance of {@link Ext.data.Response}
  265. */
  266. readResponse : function(action, response) {
  267. var q = Ext.DomQuery,
  268. doc = response.responseXML;
  269. // create general Response instance.
  270. var res = new Ext.data.Response({
  271. action: action,
  272. success : this.getSuccess(doc),
  273. message: this.getMessage(doc),
  274. data: this.extractData(q.select(this.meta.record, doc) || q.select(this.meta.root, doc), false),
  275. raw: doc
  276. });
  277. if (Ext.isEmpty(res.success)) {
  278. throw new Ext.data.DataReader.Error('successProperty-response', this.meta.successProperty);
  279. }
  280. // Create actions from a response having status 200 must return pk
  281. if (action === Ext.data.Api.actions.create) {
  282. var def = Ext.isDefined(res.data);
  283. if (def && Ext.isEmpty(res.data)) {
  284. throw new Ext.data.JsonReader.Error('root-empty', this.meta.root);
  285. }
  286. else if (!def) {
  287. throw new Ext.data.JsonReader.Error('root-undefined-response', this.meta.root);
  288. }
  289. }
  290. return res;
  291. },
  292. getSuccess : function() {
  293. return true;
  294. },
  295. /**
  296. * build response-data extractor functions.
  297. * @private
  298. * @ignore
  299. */
  300. buildExtractors : function() {
  301. if(this.ef){
  302. return;
  303. }
  304. var s = this.meta,
  305. Record = this.recordType,
  306. f = Record.prototype.fields,
  307. fi = f.items,
  308. fl = f.length;
  309. if(s.totalProperty) {
  310. this.getTotal = this.createAccessor(s.totalProperty);
  311. }
  312. if(s.successProperty) {
  313. this.getSuccess = this.createAccessor(s.successProperty);
  314. }
  315. if (s.messageProperty) {
  316. this.getMessage = this.createAccessor(s.messageProperty);
  317. }
  318. this.getRoot = function(res) {
  319. return (!Ext.isEmpty(res[this.meta.record])) ? res[this.meta.record] : res[this.meta.root];
  320. };
  321. if (s.idPath || s.idProperty) {
  322. var g = this.createAccessor(s.idPath || s.idProperty);
  323. this.getId = function(rec) {
  324. var id = g(rec) || rec.id;
  325. return (id === undefined || id === '') ? null : id;
  326. };
  327. } else {
  328. this.getId = function(){return null;};
  329. }
  330. var ef = [];
  331. for(var i = 0; i < fl; i++){
  332. f = fi[i];
  333. var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
  334. ef.push(this.createAccessor(map));
  335. }
  336. this.ef = ef;
  337. },
  338. /**
  339. * Creates a function to return some particular key of data from a response.
  340. * @param {String} key
  341. * @return {Function}
  342. * @private
  343. * @ignore
  344. */
  345. createAccessor : function(){
  346. var q = Ext.DomQuery;
  347. return function(key) {
  348. switch(key) {
  349. case this.meta.totalProperty:
  350. return function(root, def){
  351. return q.selectNumber(key, root, def);
  352. };
  353. break;
  354. case this.meta.successProperty:
  355. return function(root, def) {
  356. var sv = q.selectValue(key, root, true);
  357. var success = sv !== false && sv !== 'false';
  358. return success;
  359. };
  360. break;
  361. default:
  362. return function(root, def) {
  363. return q.selectValue(key, root, def);
  364. };
  365. break;
  366. }
  367. };
  368. }(),
  369. /**
  370. * extracts values and type-casts a row of data from server, extracted by #extractData
  371. * @param {Hash} data
  372. * @param {Ext.data.Field[]} items
  373. * @param {Number} len
  374. * @private
  375. * @ignore
  376. */
  377. extractValues : function(data, items, len) {
  378. var f, values = {};
  379. for(var j = 0; j < len; j++){
  380. f = items[j];
  381. var v = this.ef[j](data);
  382. values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue, data);
  383. }
  384. return values;
  385. }
  386. });/**
  387. * @class Ext.data.XmlStore
  388. * @extends Ext.data.Store
  389. * <p>Small helper class to make creating {@link Ext.data.Store}s from XML data easier.
  390. * A XmlStore will be automatically configured with a {@link Ext.data.XmlReader}.</p>
  391. * <p>A store configuration would be something like:<pre><code>
  392. var store = new Ext.data.XmlStore({
  393. // store configs
  394. autoDestroy: true,
  395. storeId: 'myStore',
  396. url: 'sheldon.xml', // automatically configures a HttpProxy
  397. // reader configs
  398. record: 'Item', // records will have an "Item" tag
  399. idPath: 'ASIN',
  400. totalRecords: '@TotalResults'
  401. fields: [
  402. // set up the fields mapping into the xml doc
  403. // The first needs mapping, the others are very basic
  404. {name: 'Author', mapping: 'ItemAttributes > Author'},
  405. 'Title', 'Manufacturer', 'ProductGroup'
  406. ]
  407. });
  408. * </code></pre></p>
  409. * <p>This store is configured to consume a returned object of the form:<pre><code>
  410. &#60?xml version="1.0" encoding="UTF-8"?>
  411. &#60ItemSearchResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2009-05-15">
  412. &#60Items>
  413. &#60Request>
  414. &#60IsValid>True&#60/IsValid>
  415. &#60ItemSearchRequest>
  416. &#60Author>Sidney Sheldon&#60/Author>
  417. &#60SearchIndex>Books&#60/SearchIndex>
  418. &#60/ItemSearchRequest>
  419. &#60/Request>
  420. &#60TotalResults>203&#60/TotalResults>
  421. &#60TotalPages>21&#60/TotalPages>
  422. &#60Item>
  423. &#60ASIN>0446355453&#60/ASIN>
  424. &#60DetailPageURL>
  425. http://www.amazon.com/
  426. &#60/DetailPageURL>
  427. &#60ItemAttributes>
  428. &#60Author>Sidney Sheldon&#60/Author>
  429. &#60Manufacturer>Warner Books&#60/Manufacturer>
  430. &#60ProductGroup>Book&#60/ProductGroup>
  431. &#60Title>Master of the Game&#60/Title>
  432. &#60/ItemAttributes>
  433. &#60/Item>
  434. &#60/Items>
  435. &#60/ItemSearchResponse>
  436. * </code></pre>
  437. * An object literal of this form could also be used as the {@link #data} config option.</p>
  438. * <p><b>Note:</b> Although not listed here, this class accepts all of the configuration options of
  439. * <b>{@link Ext.data.XmlReader XmlReader}</b>.</p>
  440. * @constructor
  441. * @param {Object} config
  442. * @xtype xmlstore
  443. */
  444. Ext.data.XmlStore = Ext.extend(Ext.data.Store, {
  445. /**
  446. * @cfg {Ext.data.DataReader} reader @hide
  447. */
  448. constructor: function(config){
  449. Ext.data.XmlStore.superclass.constructor.call(this, Ext.apply(config, {
  450. reader: new Ext.data.XmlReader(config)
  451. }));
  452. }
  453. });
  454. Ext.reg('xmlstore', Ext.data.XmlStore);