Roo/form/Action.js
[roojs1] / Roo / form / Action.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  /**
13  * @class Roo.form.Action
14  * Internal Class used to handle form actions
15  * @constructor
16  * @param {Roo.form.BasicForm} el The form element or its id
17  * @param {Object} config Configuration options
18  */
19  
20  
21 // define the action interface
22 Roo.form.Action = function(form, options){
23     this.form = form;
24     this.options = options || {};
25 };
26 /**
27  * Client Validation Failed
28  * @const 
29  */
30 Roo.form.Action.CLIENT_INVALID = 'client';
31 /**
32  * Server Validation Failed
33  * @const 
34  */
35  Roo.form.Action.SERVER_INVALID = 'server';
36  /**
37  * Connect to Server Failed
38  * @const 
39  */
40 Roo.form.Action.CONNECT_FAILURE = 'connect';
41 /**
42  * Reading Data from Server Failed
43  * @const 
44  */
45 Roo.form.Action.LOAD_FAILURE = 'load';
46
47 Roo.form.Action.prototype = {
48     type : 'default',
49     failureType : undefined,
50     response : undefined,
51     result : undefined,
52
53     // interface method
54     run : function(options){
55
56     },
57
58     // interface method
59     success : function(response){
60
61     },
62
63     // interface method
64     handleResponse : function(response){
65
66     },
67
68     // default connection failure
69     failure : function(response){
70         this.response = response;
71         this.failureType = Roo.form.Action.CONNECT_FAILURE;
72         this.form.afterAction(this, false);
73     },
74
75     processResponse : function(response){
76         this.response = response;
77         if(!response.responseText){
78             return true;
79         }
80         this.result = this.handleResponse(response);
81         return this.result;
82     },
83
84     // utility functions used internally
85     getUrl : function(appendParams){
86         var url = this.options.url || this.form.url || this.form.el.dom.action;
87         if(appendParams){
88             var p = this.getParams();
89             if(p){
90                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
91             }
92         }
93         return url;
94     },
95
96     getMethod : function(){
97         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
98     },
99
100     getParams : function(){
101         var bp = this.form.baseParams;
102         var p = this.options.params;
103         if(p){
104             if(typeof p == "object"){
105                 p = Roo.urlEncode(Roo.applyIf(p, bp));
106             }else if(typeof p == 'string' && bp){
107                 p += '&' + Roo.urlEncode(bp);
108             }
109         }else if(bp){
110             p = Roo.urlEncode(bp);
111         }
112         return p;
113     },
114
115     createCallback : function(){
116         return {
117             success: this.success,
118             failure: this.failure,
119             scope: this,
120             timeout: (this.form.timeout*1000),
121             upload: this.form.fileUpload ? this.success : undefined
122         };
123     }
124 };
125
126 Roo.form.Action.Submit = function(form, options){
127     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
128 };
129
130 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
131     type : 'submit',
132
133     haveProgress : false,
134     uploadComplete : false,
135     
136     // uploadPrograss indicator.
137     uploadProgress : function()
138     {
139         
140         if (!this.haveProgress) {
141             Roo.MessageBox.progress("Uploading", "Uploading");
142         }
143         if (this.uploadComplete) {
144            Roo.MessageBox.hide();
145            return;
146         }
147         
148         this.haveProgress = true;
149    
150         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
151         
152         var c = new Roo.data.Connection();
153         c.request({
154             url : this.form.progressUrl,
155             params: {
156                 id : uid
157             },
158             method: 'GET',
159             success : function(data){
160                //console.log(data);
161                 if (this.uploadComplete) {
162                    Roo.MessageBox.hide();
163                    return;
164                 }
165                    
166                 if (data){
167                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
168                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
169                     );
170                 }
171                 this.uploadProgress.defer(2000,this);
172             },
173             scope : this,
174            failure: function(data) {
175                 Roo.log('progress url failed ');
176                 Roo.log(data);
177            }
178         });
179            
180     },
181     
182     
183     run : function()
184     {
185         // run get Values on the form, so it syncs any secondary forms.
186         this.form.getValues();
187         
188         var o = this.options;
189         var method = this.getMethod();
190         var isPost = method == 'POST';
191         if(o.clientValidation === false || this.form.isValid()){
192             if (this.form.progressUrl) {
193            
194                 this.findField('UPLOAD_IDENTIFIER').setValue(
195                     (new Date() * 1) + '' + Math.random());
196                     
197             }
198             
199             
200             
201             Roo.Ajax.request(Roo.apply(this.createCallback(), {
202                 form:this.form.el.dom,
203                 url:this.getUrl(!isPost),
204                 method: method,
205                 params:isPost ? this.getParams() : null,
206                 isUpload: this.form.fileUpload
207             }));
208             
209             this.uploadProgress();
210
211         }else if (o.clientValidation !== false){ // client validation failed
212             this.failureType = Roo.form.Action.CLIENT_INVALID;
213             this.form.afterAction(this, false);
214         }
215     },
216
217     success : function(response)
218     {
219         this.uploadComplete= true;
220         if (this.haveProgress) {
221             Roo.MessageBox.hide();
222         }
223         
224         var result = this.processResponse(response);
225         if(result === true || result.success){
226             this.form.afterAction(this, true);
227             return;
228         }
229         if(result.errors){
230             this.form.markInvalid(result.errors);
231             this.failureType = Roo.form.Action.SERVER_INVALID;
232         }
233         this.form.afterAction(this, false);
234     },
235     failure : function(response)
236     {
237         this.uploadComplete= true;
238         if (this.haveProgress) {
239             Roo.MessageBox.hide();
240         }
241         
242         this.response = response;
243         this.failureType = Roo.form.Action.CONNECT_FAILURE;
244         this.form.afterAction(this, false);
245     },
246     
247     handleResponse : function(response){
248         if(this.form.errorReader){
249             var rs = this.form.errorReader.read(response);
250             var errors = [];
251             if(rs.records){
252                 for(var i = 0, len = rs.records.length; i < len; i++) {
253                     var r = rs.records[i];
254                     errors[i] = r.data;
255                 }
256             }
257             if(errors.length < 1){
258                 errors = null;
259             }
260             return {
261                 success : rs.success,
262                 errors : errors
263             };
264         }
265         var ret = false;
266         try {
267             ret = Roo.decode(response.responseText);
268         } catch (e) {
269             ret = {
270                 success: false,
271                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
272                 errors : []
273             };
274         }
275         return ret;
276         
277     }
278 });
279
280
281 Roo.form.Action.Load = function(form, options){
282     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
283     this.reader = this.form.reader;
284 };
285
286 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
287     type : 'load',
288
289     run : function(){
290         Roo.Ajax.request(Roo.apply(
291                 this.createCallback(), {
292                     method:this.getMethod(),
293                     url:this.getUrl(false),
294                     params:this.getParams()
295         }));
296     },
297
298     success : function(response){
299         var result = this.processResponse(response);
300         if(result === true || !result.success || !result.data){
301             this.failureType = Roo.form.Action.LOAD_FAILURE;
302             this.form.afterAction(this, false);
303             return;
304         }
305         this.form.clearInvalid();
306         this.form.setValues(result.data);
307         this.form.afterAction(this, true);
308     },
309
310     handleResponse : function(response){
311         if(this.form.reader){
312             var rs = this.form.reader.read(response);
313             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
314             return {
315                 success : rs.success,
316                 data : data
317             };
318         }
319         return Roo.decode(response.responseText);
320     }
321 });
322
323 Roo.form.Action.ACTION_TYPES = {
324     'load' : Roo.form.Action.Load,
325     'submit' : Roo.form.Action.Submit
326 };