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