Roo/Login.js
[roojs1] / Roo / Login.js
1 //<script type="text/javascript">
2
3
4 /**
5 * A generic Login Dialog..... - only one needed in theory!?!?
6 *
7 * Fires XComponent builder on success...
8
9 * Sends 
10 *    username,password, lang = for login actions.
11 *    check = 1 for periodic checking that sesion is valid.
12 *    passwordRequest = email request password
13 *    logout = 1 = to logout
14
15 * Affects: (this id="????" elements)
16 *   loading  (removed) (used to indicate application is loading)
17 *   loading-mask (hides) (used to hide application when it's building loading)
18 *   
19
20 * Usage: 
21 *    
22
23 * Myapp.login = Roo.Login({
24     url: xxxx,
25   
26     realm : 'Myapp', 
27     
28     
29     method : 'POST',
30     
31     
32     * 
33 })
34
35
36
37 * Ext.apply(_T, _T[lang]);
38
39 **/
40  
41 Roo.Login = function(cfg)
42 {
43     this.addEvents({
44         'refreshed' : true,
45     });
46     
47     Roo.apply(this,cfg);
48     
49     Roo.onReady(function() {
50         this.onLoad();
51     }, this);
52     // call parent..
53     
54    
55     Roo.Login.superclass.constructor.call(this, this);
56     //this.addxtype(this.items[0]);
57     
58     
59 }
60
61
62 Roo.extend(Roo.Login, Roo.LayoutDialog, {
63     
64     /**
65      * @cfg {String} method
66      * Method used to query for login details.
67      */
68     
69     method : 'POST',
70     /**
71      * @cfg {String} url
72      * URL to query login data. - eg. baseURL + '/Login.php'
73      */
74     url : '',
75     
76     /**
77      * @property user
78      * The user data - if user.id < 0 then login will be bypassed. (used for inital setup situation.
79      * @type {Object} 
80      */
81     user : false,
82     /**
83      * @property checkFails
84      * Number of times we have attempted to get authentication check, and failed.
85      * @type {Number} 
86      */
87     checkFails : 0,
88       /**
89      * @property intervalID
90      * The window interval that does the constant login checking.
91      * @type {Number} 
92      */
93     intervalID : 0,
94     
95     
96     onLoad : function() // called on page load...
97     {
98         // load 
99          
100         if (Roo.get('loading')) { // clear any loading indicator..
101             Roo.get('loading').remove();
102         }
103         
104         //this.switchLang('en'); // set the language to english..
105        
106         this.check({
107             success:  function(response, opts)  {  // check successfull...
108             
109                 var res = this.processResponse(response);
110                 this.checkFails =0;
111                 if (!res.success) { // error!
112                     this.checkFails = 5;
113                     //console.log('call failure');
114                     return this.failure(response,opts);
115                 }
116                 
117                 if (!res.data.id) { // id=0 == login failure.
118                     return this.show();
119                 }
120                 
121                               
122                         //console.log(success);
123                 this.fillAuth(res.data);   
124                 this.checkFails =0;
125                 Roo.XComponent.build();
126             },
127             failure : this.show
128         });
129         
130     }, 
131     
132     
133     check: function(cfg) // called every so often to refresh cookie etc..
134     {
135         if (cfg.again) { // could be undefined..
136             this.checkFails++;
137         } else {
138             this.checkFails = 0;
139         }
140         var _this = this;
141         if (this.sending) {
142             if ( this.checkFails > 4) {
143                 Roo.MessageBox.alert("Error",  
144                     "Error getting authentication status. - try reloading, or wait a while", function() {
145                         _this.sending = false;
146                     }); 
147                 return;
148             }
149             cfg.again = true;
150             _this.check.defer(10000, _this, [ cfg ]); // check in 10 secs.
151             return;
152         }
153         this.sending = true;
154         
155         Roo.Ajax.request({  
156             url: this.url,
157             params: {
158                 getAuthUser: true
159             },  
160             method: this.method,
161             success:  cfg.success || this.success,
162             failure : cfg.failure || this.failure,
163             scope : this,
164             callCfg : cfg
165               
166         });  
167     }, 
168     
169     
170     logout: function()
171     {
172         window.onbeforeunload = function() { }; // false does not work for IE..
173         this.user = false;
174         var _this = this;
175         
176         Roo.Ajax.request({  
177             url: this.url,
178             params: {
179                 logout: 1
180             },  
181             method: 'GET',
182             failure : function() {
183                 Roo.MessageBox.alert("Error", "Error logging out. - continuing anyway.", function() {
184                     document.location = document.location.toString() + '?ts=' + Math.random();
185                 });
186                 
187             },
188             success : function() {
189                 _this.user = false;
190                 this.checkFails =0;
191                 // fixme..
192                 document.location = document.location.toString() + '?ts=' + Math.random();
193             }
194               
195               
196         }); 
197     },
198     
199     processResponse : function (response)
200     {
201         var res = '';
202         try {
203             res = Roo.decode(response.responseText);
204             // oops...
205             if (typeof(res) != 'object') {
206                 res = { success : false, errorMsg : res, errors : true };
207             }
208             if (typeof(res.success) == 'undefined') {
209                 res.success = false;
210             }
211             
212         } catch(e) {
213             res = { success : false,  errorMsg : response.responseText, errors : true };
214         }
215         return res;
216     },
217     
218     success : function(response, opts)  // check successfull...
219     {  
220         this.sending = false;
221         var res = this.processResponse(response);
222         if (!res.success) {
223             return this.failure(response, opts);
224         }
225         if (!res.data || !res.data.id) {
226             return this.failure(response,opts);
227         }
228         //console.log(res);
229         this.fillAuth(res.data);
230         
231         this.checkFails =0;
232         
233     },
234     
235     
236     failure : function (response, opts) // called if login 'check' fails.. (causes re-check)
237     {
238         this.authUser = -1;
239         this.sending = false;
240         var res = this.processResponse(response);
241         //console.log(res);
242         if ( this.checkFails > 2) {
243         
244             Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : 
245                 "Error getting authentication status. - try reloading"); 
246             return;
247         }
248         opts.callCfg.again = true;
249         this.check.defer(1000, this, [ opts.callCfg ]);
250         return;  
251     },
252     
253     
254     
255     fillAuth: function(au) {
256         this.startAuthCheck();
257         this.authUserId = au.id;
258         this.authUser = au;
259         this.lastChecked = new Date();
260         this.fireEvent('refreshed', au);
261         //Pman.Tab.FaxQueue.newMaxId(au.faxMax);
262         //Pman.Tab.FaxTab.setTitle(au.faxNumPending);
263         
264         //this.switchLang(Roo.state.Manager.get('Pman.Login.lang', 'en'));
265         Roo.state.Manager.set( this.realm + 'lang' , au.lang);
266         this.switchLang(au.lang);
267         
268      
269         // open system... - -on setyp..
270         if (this.authUserId  < 0) {
271             Roo.MessageBox.alert("Warning", 
272                 "This is an open system - please set up a admin user with a password.");  
273         }
274          
275         //Pman.onload(); // which should do nothing if it's a re-auth result...
276         
277              
278     },
279     
280     startAuthCheck : function() // starter for timeout checking..
281     {
282         if (this.intervalID) { // timer already in place...
283             return false;
284         }
285         var _this = this;
286         this.intervalID =  window.setInterval(function() {
287               _this.check(false);
288             }, 120000); // every 120 secs = 2mins..
289         
290         
291     },
292          
293     
294     switchLang : function (lang) 
295     {
296         _T = typeof(_T) == 'undefined' ? false : _T;
297           if (!_T && !lang.length) {
298             return;
299         }
300         
301         if (!_T && lang != 'en') {
302             Roo.MessageBox.alert("Sorry", "Language not available yet (" + lang +')');
303             return;
304         }
305         
306         if (typeof(_T.en) == 'undefined') {
307             _T.en = {};
308             Roo.apply(_T.en, _T);
309         }
310         
311         if (typeof(_T[lang]) == 'undefined') {
312             Roo.MessageBox.alert("Sorry", "Language not available yet (" + lang +')');
313             return;
314         }
315         
316         
317         Roo.apply(_T, _T[lang]);
318         // just need to set the text values for everything...
319         var _this = this;
320         /* this will not work ...
321         if (this.form) { 
322             
323                
324             function formLabel(name, val) {
325                 _this.form.findField(name).fieldEl.child('label').dom.innerHTML  = val;
326             }
327             
328             formLabel('password', "Password"+':');
329             formLabel('username', "Email Address"+':');
330             formLabel('lang', "Language"+':');
331             this.dialog.setTitle("Login");
332             this.dialog.buttons[0].setText("Forgot Password");
333             this.dialog.buttons[1].setText("Login");
334         }
335         */
336         
337         
338     },
339     
340     
341     title: "Login",
342     modal: true,
343     width:  350,
344     height: 230,
345     shadow: true,
346     minWidth:200,
347     minHeight:180,
348     //proxyDrag: true,
349     closable: false,
350     draggable: false,
351     collapsible: false,
352     resizable: false,
353     center: {  // needed??
354         autoScroll:false,
355         titlebar: false,
356        // tabPosition: 'top',
357         hideTabs: true,
358         closeOnTab: true,
359         alwaysShowTabs: false
360     } ,
361     listeners : {
362         
363         show  : function(dlg)
364         {
365             //console.log(this);
366             this.form = this.layout.getRegion('center').activePanel.form;
367             this.form.dialog = dlg;
368             this.buttons[0].form = this.form;
369             this.buttons[0].dialog = dlg
370             this.buttons[1].form = this.form;
371             this.buttons[1].dialog = dlg;
372            
373            //this.resizeToLogo.defer(1000,this);
374             // this is all related to resizing for logos..
375             //var sz = Roo.get(Pman.Login.form.el.query('img')[0]).getSize();
376            //// if (!sz) {
377              //   this.resizeToLogo.defer(1000,this);
378              //   return;
379            // }
380             //var w = Ext.lib.Dom.getViewWidth() - 100;
381             //var h = Ext.lib.Dom.getViewHeight() - 100;
382             //this.resizeTo(Math.max(350, Math.min(sz.width + 30, w)),Math.min(sz.height+200, h));
383             //this.center();
384             if (this.disabled) {
385                 this.hide();
386                 return;
387             }
388             
389             if (this.user.id < 0) { // used for inital setup situations.
390                 return;
391             }
392             
393             if (this.intervalID) {
394                 // remove the timer
395                 window.clearInterval(this.intervalID);
396                 this.intervalID = false;
397             }
398             
399             
400             if (Roo.get('loading')) {
401                 Roo.get('loading').remove();
402             }
403             if (Roo.get('loading-mask')) {
404                 Roo.get('loading-mask').hide();
405             }
406             
407             //incomming._node = tnode;
408             this.form.reset();
409             //this.dialog.modal = !modal;
410             //this.dialog.show();
411             this.el.unmask(); 
412             
413             
414             this.form.setValues({
415                 'username' : Roo.state.Manager.get(this.realm + '.username', ''),
416                 'lang' : Roo.state.Manager.get(this.realm + '.lang', 'en')
417             });
418             
419             this.switchLang(Roo.state.Manager.get(this.realm + '.lang', ''));
420             if (this.form.findField('username').getValue().length > 0 ){
421                 this.form.findField('password').focus();
422             } else {
423                this.form.findField('username').focus();
424             }
425     
426         }
427     },
428     items : [
429          {
430        
431             xtype : 'ContentPanel',
432             xns : Roo,
433             region: 'center',
434             fitToFrame : true,
435             items : [
436     
437                 {
438                
439                     xtype : 'Form',
440                     xns : Roo.form,
441                     labelWidth: 100,
442                     style : 'margin : 10px;',
443                     listeners : {
444                         actionfailed : function(f, act) {
445                             // form can return { errors: .... }
446                                 
447                             //act.result.errors // invalid form element list...
448                             //act.result.errorMsg// invalid form element list...
449                             
450                             this.dialog.el.unmask();
451                             Roo.MessageBox.alert("Error", act.result.errorMsg ? act.result.errorMsg : 
452                                         "Login failed - communication error - try again.");
453                                       
454                         },
455                         actioncomplete: function(re, act) {
456                              
457                             Roo.state.Manager.set(
458                                 this.dialog.realm + '.username',  
459                                     this.findField('username').getValue()
460                             );
461                             Roo.state.Manager.set(
462                                 this.dialog.realm + '.lang',  
463                                 this.findField('lang').getValue() 
464                             );
465                             
466                             this.dialog.fillAuth(act.result.data);
467                               
468                             this.dialog.hide();
469                             
470                             if (Roo.get('loading-mask')) {
471                                 Roo.get('loading-mask').show();
472                             }
473                             Roo.XComponent.build();
474                             
475                              
476                             
477                         }
478                     },
479                     items : [
480                         {
481                             xtype : 'TextField',
482                             xns : Roo.form,
483                             fieldLabel: "Email Address",
484                             name: 'username',
485                             width:200,
486                             autoCreate : {tag: "input", type: "text", size: "20"}
487                         },
488                         {
489                             xtype : 'TextField',
490                             xns : Roo.form,
491                             fieldLabel: "Password",
492                             inputType: 'password',
493                             name: 'password',
494                             width:200,
495                             autoCreate : {tag: "input", type: "text", size: "20"},
496                             listeners : {
497                                 specialkey : function(e,ev) {
498                                     if (ev.keyCode == 13) {
499                                         this.form.dialog.el.mask("Logging in");
500                                         this.form.doAction('submit', {
501                                             url: this.form.dialog.url,
502                                             method: this.form.dialog.method,
503                                         });
504                                     }
505                                 }
506                             }  
507                         },
508                         {
509                             xtype : 'ComboBox',
510                             xns : Roo.form,
511                             fieldLabel: "Language",
512                             name : 'langdisp',
513                             store: {
514                                 xtype : 'SimpleStore',
515                                 fields: ['lang', 'ldisp'],
516                                 data : [
517                                     [ 'en', 'English' ],
518                                     [ 'zh_HK' , '\u7E41\u4E2D' ],
519                                     [ 'zh_CN', '\u7C21\u4E2D' ]
520                                 ]
521                             },
522                             
523                             valueField : 'lang',
524                             hiddenName:  'lang',
525                             width: 200,
526                             displayField:'ldisp',
527                             typeAhead: false,
528                             editable: false,
529                             mode: 'local',
530                             triggerAction: 'all',
531                             emptyText:'Select a Language...',
532                             selectOnFocus:true,
533                             listeners : {
534                                 select :  function(cb, rec, ix) {
535                                     this.form.switchLang(rec.data.lang);
536                                 }
537                             }
538                         
539                         }
540                     ]
541                 }
542                   
543                 
544             ]
545         }
546     ],
547     buttons : [
548         {
549             xtype : 'Button',
550             xns : 'Roo',
551             text : "Forgot Password",
552             listeners : {
553                 click : function() {
554                     //console.log(this);
555                     var n = this.form.findField('username').getValue();
556                     if (!n.length) {
557                         Roo.MessageBox.alert("Error", "Fill in your email address");
558                         return;
559                     }
560                     Roo.Ajax.request({
561                         url: this.dialog.url,
562                         params: {
563                             passwordRequest: n
564                         },
565                         method: this.dialog.method,
566                         success:  function(response, opts)  {  // check successfull...
567                         
568                             var res = this.dialog.processResponse(response);
569                             if (!res.success) { // error!
570                                Roo.MessageBox.alert("Error" ,
571                                     res.errorMsg ? res.errorMsg  : "Problem Requesting Password Reset");
572                                return;
573                             }
574                             Roo.MessageBox.alert("Notice" ,
575                                 "Please check you email for the Password Reset message");
576                         },
577                         failure : function() {
578                             Roo.MessageBox.alert("Error" , "Problem Requesting Password Reset");
579                         }
580                         
581                     });
582                 }
583             }
584         },
585         {
586             xtype : 'Button',
587             xns : 'Roo',
588             text : "Login",
589             listeners : {
590                 
591                 click : function () {
592                         
593                     this.dialog.el.mask("Logging in");
594                     this.form.doAction('submit', {
595                             url: this.dialog.url,
596                             method: this.dialog.method
597                     });
598                 }
599             }
600         }
601     ]
602   
603   
604 })
605  
606
607
608