initial import
[roojs1] / Roo / data / HttpProxy.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11 /**
12  * @class Roo.data.HttpProxy
13  * @extends Roo.data.DataProxy
14  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
15  * configured to reference a certain URL.<br><br>
16  * <p>
17  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
18  * from which the running page was served.<br><br>
19  * <p>
20  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
21  * <p>
22  * Be aware that to enable the browser to parse an XML document, the server must set
23  * the Content-Type header in the HTTP response to "text/xml".
24  * @constructor
25  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
26  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
27  * will be used to make the request.
28  */
29 Roo.data.HttpProxy = function(conn){
30     Roo.data.HttpProxy.superclass.constructor.call(this);
31     // is conn a conn config or a real conn?
32     this.conn = conn;
33     this.useAjax = !conn || !conn.events;
34   
35 };
36
37 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
38     // thse are take from connection...
39     
40     /**
41      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
42      */
43     /**
44      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
45      * extra parameters to each request made by this object. (defaults to undefined)
46      */
47     /**
48      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
49      *  to each request made by this object. (defaults to undefined)
50      */
51     /**
52      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
53      */
54     /**
55      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
56      */
57      /**
58      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
59      * @type Boolean
60      */
61   
62
63     /**
64      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
65      * @type Boolean
66      */
67     /**
68      * Return the {@link Roo.data.Connection} object being used by this Proxy.
69      * @return {Connection} The Connection object. This object may be used to subscribe to events on
70      * a finer-grained basis than the DataProxy events.
71      */
72     getConnection : function(){
73         return this.useAjax ? Roo.Ajax : this.conn;
74     },
75
76     /**
77      * Load data from the configured {@link Roo.data.Connection}, read the data object into
78      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
79      * process that block using the passed callback.
80      * @param {Object} params An object containing properties which are to be used as HTTP parameters
81      * for the request to the remote server.
82      * @param {Roo.data.DataReader} reader The Reader object which converts the data
83      * object into a block of Roo.data.Records.
84      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
85      * The function must be passed <ul>
86      * <li>The Record block object</li>
87      * <li>The "arg" argument from the load function</li>
88      * <li>A boolean success indicator</li>
89      * </ul>
90      * @param {Object} scope The scope in which to call the callback
91      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
92      */
93     load : function(params, reader, callback, scope, arg){
94         if(this.fireEvent("beforeload", this, params) !== false){
95             var  o = {
96                 params : params || {},
97                 request: {
98                     callback : callback,
99                     scope : scope,
100                     arg : arg
101                 },
102                 reader: reader,
103                 callback : this.loadResponse,
104                 scope: this
105             };
106             if(this.useAjax){
107                 Roo.applyIf(o, this.conn);
108                 if(this.activeRequest){
109                     Roo.Ajax.abort(this.activeRequest);
110                 }
111                 this.activeRequest = Roo.Ajax.request(o);
112             }else{
113                 this.conn.request(o);
114             }
115         }else{
116             callback.call(scope||this, null, arg, false);
117         }
118     },
119
120     // private
121     loadResponse : function(o, success, response){
122         delete this.activeRequest;
123         if(!success){
124             this.fireEvent("loadexception", this, o, response);
125             o.request.callback.call(o.request.scope, null, o.request.arg, false);
126             return;
127         }
128         var result;
129         try {
130             result = o.reader.read(response);
131         }catch(e){
132             this.fireEvent("loadexception", this, o, response, e);
133             o.request.callback.call(o.request.scope, null, o.request.arg, false);
134             return;
135         }
136         
137         this.fireEvent("load", this, o, o.request.arg);
138         o.request.callback.call(o.request.scope, result, o.request.arg, true);
139     },
140
141     // private
142     update : function(dataSet){
143
144     },
145
146     // private
147     updateResponse : function(dataSet){
148
149     }
150 });