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             xtype : 'Form',
243             xns : Roo.form,
244             labelWidth: 100,
245             
246             listeners : {
247                 actionfailed : function(f, act) {
248                     // form can return { errors: .... }
249                         
250                     //act.result.errors // invalid form element list...
251                     //act.result.errorMsg// invalid form element list...
252                     
253                     this.dialog.el.unmask();
254                     Roo.MessageBox.alert("Error", act.result.errorMsg ? act.result.errorMsg : 
255                                 "Login failed - communication error - try again.");
256                               
257                 },
258                 actioncomplete: function(re, act) {
259                      
260                     Roo.state.Manager.set(
261                         this.dialog.realm + '.' + this.dialog.params.username,  
262                             this.form.findField(this.dialog.params.username).getValue() 
263                     );
264                     Roo.state.Manager.set(
265                         this.dialog.realm + '.lang',  
266                         Pman.Login.form.findField('lang').getValue() 
267                     );
268                     
269                     this.dialog.fillAuth(act.result.data);
270                       
271                     this.dialog.hide();
272                     
273                     if (Roo.get('loading-mask')) {
274                         Roo.get('loading-mask').show();
275                     }
276                     Roo.XComponent.build();
277                     
278                      
279                     
280                 }
281             },
282             items : [
283                 {
284                     xtype : 'TextField',
285                     xns : Roo.form,
286                     fieldLabel: "Email Address",
287                     name: 'username',
288                     width:200,
289                     autoCreate : {tag: "input", type: "text", size: "20"}
290                 },
291                 {
292                     xtype : 'TextField',
293                     xns : Roo.form,
294                     fieldLabel: "Password",
295                     inputType: 'password',
296                     name: 'password',
297                     width:200,
298                     autoCreate : {tag: "input", type: "text", size: "20"},
299                     listeners : {
300                         specialkey : function(e,ev) {
301                             if (ev.keyCode == 13) {
302                                 this.form.dialog.el.mask("Logging in");
303                                 this.form.doAction('submit', {
304                                     url: this.form.dialog.url,
305                                     method: this.form.dialog.method,
306                                 });
307                             }
308                         }
309                     }  
310                 },
311                 {
312                     xtype : 'ComboBox',
313                     xns : Roo.form,
314                     fieldLabel: "Language",
315                     name : 'langdisp',
316                     store: {
317                         xtype : 'SimpleStore',
318                         fields: ['lang', 'ldisp'],
319                         data : [
320                             [ 'en', 'English' ],
321                             [ 'zh_HK' , '\u7E41\u4E2D' ],
322                             [ 'zh_CN', '\u7C21\u4E2D' ]
323                         ]
324                     },
325                     
326                     valueField : 'lang',
327                     hiddenName:  'lang',
328                     width: 200,
329                     displayField:'ldisp',
330                     typeAhead: false,
331                     editable: false,
332                     mode: 'local',
333                     triggerAction: 'all',
334                     emptyText:'Select a Language...',
335                     selectOnFocus:true,
336                     listeners : {
337                         select :  function(cb, rec, ix) {
338                             this.form.switchLang(rec.data.lang);
339                         }
340                     }
341                 
342                 }
343         
344             
345         
346     ]
347     
348 }
349
350 Pman.Login =  new Roo.util.Observable({
351     
352     events : {
353         
354         'render' : true
355     },
356     disabled : false,
357     
358     dialog : false,
359     form: false,
360     haslogo : false,
361     
362     authUserId: 0,
363     authUser: { id : false },
364        
365     checkFails : 0,
366     versionWarn: false,
367     sending : false,
368     
369     
370      
371     
372     
373     intervalID : false,   /// the login refresher...
374     
375     lastChecked : false,
376     
377     
378     
379     create : function()
380     {
381         if (this.dialog) {
382             return;
383         }
384         var _this = this;
385         
386         this.dialog = new Roo.LayoutDialog(Roo.get(document.body).createChild({tag:'div'}),
387         { // the real end set is here...
388             autoCreated: true,
389             title: "Login",
390             modal: true,
391             width:  350,
392             height: 230,
393             shadow:true,
394             minWidth:200,
395             minHeight:180,
396             //proxyDrag: true,
397             closable: false,
398             draggable: false,
399             collapsible: false,
400             resizable: false,
401             center: {
402                 autoScroll:false,
403                 titlebar: false,
404                // tabPosition: 'top',
405                 hideTabs: true,
406                 closeOnTab: true,
407                 alwaysShowTabs: false
408             }  
409             
410         });
411         
412         
413         
414         this.dialog.addButton("Forgot Password", function()
415         {
416             
417             var n = _this.form.findField('username').getValue();
418             if (!n.length) {
419                 Roo.MessageBox.alert("Error", "Fill in your email address");
420                 return;
421             }
422             Roo.Ajax.request({
423                 url: baseURL + '/Login.js',  
424                 params: {
425                     passwordRequest: n
426                 },
427                 method: 'POST',  
428                 success:  function(response, opts)  {  // check successfull...
429                 
430                     var res = Pman.processResponse(response);
431                     if (!res.success) { // error!
432                        Roo.MessageBox.alert("Error" , res.errorMsg ? res.errorMsg  : "Problem Requesting Password Reset");
433                        return;
434                     }
435                     Roo.MessageBox.alert("Notice" , "Please check you email for the Password Reset message");
436                 },
437                 failure : function() {
438                     Roo.MessageBox.alert("Error" , "Problem Requesting Password Reset");
439                 }
440                 
441             });
442         });
443         
444         this.dialog.addButton("Login", function()
445         {
446             Pman.Login.dialog.el.mask("Logging in");
447             Pman.Login.form.doAction('submit', {
448                     url: baseURL + '/Login',
449                     method: 'POST'
450             });
451         });
452         this.layout = this.dialog.getLayout();
453         this.layout.beginUpdate();
454         
455         //layout.add('center', new Roo.ContentPanel('center', {title: 'The First Tab'}));
456         // generate some other tabs
457         this.form = new Roo.form.Form({
458             labelWidth: 100 ,
459             
460             listeners : {
461                 actionfailed : function(f, act) {
462                     // form can return { errors: .... }
463                         
464                     //act.result.errors // invalid form element list...
465                     //act.result.errorMsg// invalid form element list...
466                     
467                     Pman.Login.dialog.el.unmask();
468                     Roo.MessageBox.alert("Error", act.result.errorMsg ? act.result.errorMsg : 
469                                 "Login failed - communication error - try again.");
470                               
471                 },
472                 actioncomplete: function(re, act) {
473                      
474                     Roo.state.Manager.set('Pman.Login.username.'+appNameShort,  Pman.Login.form.findField('username').getValue() );
475                     Roo.state.Manager.set('Pman.Login.lang.'+appNameShort,  Pman.Login.form.findField('lang').getValue() );
476                     Pman.Login.fillAuth(act.result.data);
477                       
478                     Pman.Login.dialog.hide();
479                     if (Roo.get('loading-mask')) {
480                         //Roo.get('loading').show();
481                         Roo.get('loading-mask').show();
482                     }
483                    
484                     Pman.onload();
485                     
486                      
487                     
488                 }
489             }
490         
491             
492             
493              
494         });
495           
496         
497         
498         this.form.add( 
499        
500            
501
502         );
503          
504         
505         var ef = this.dialog.getLayout().getEl().createChild({tag: 'div'});
506         ef.dom.style.margin = 10;
507           
508         this.form.render(ef.dom);
509          // logoprefix comes from base config.
510         Pman.Login.form.el.createChild({
511                 tag: 'img', 
512                 src: rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif',
513                 style: 'margin-bottom: 10px;'
514             },
515             Pman.Login.form.el.dom.firstChild 
516         );
517        
518         var vp = this.dialog.getLayout().add('center', new Roo.ContentPanel(ef, {
519             autoCreate : true,
520             //title: 'Org Details',
521             //toolbar: this.tb,
522             width: 250,
523             maxWidth: 250,
524             fitToFrame:true
525         }));
526         
527         this.layout.endUpdate();
528         
529         this.fireEvent('render', this);
530         
531         
532         
533         
534         
535     },
536     resizeToLogo : function()
537     {
538         var sz = Roo.get(Pman.Login.form.el.query('img')[0]).getSize();
539         if (!sz) {
540             this.resizeToLogo.defer(1000,this);
541             return;
542         }
543         var w = Ext.lib.Dom.getViewWidth() - 100;
544         var h = Ext.lib.Dom.getViewHeight() - 100;
545         Pman.Login.dialog.resizeTo(Math.max(350, Math.min(sz.width + 30, w)),Math.min(sz.height+200, h));
546         Pman.Login.dialog.center();
547     },
548     
549      
550     
551     show: function (modal) 
552     {
553         if (this.disabled) {
554             return;
555         }
556         modal = modal || false;
557         if (Pman.Login.authUserId < 0) { // logout!?
558             return;
559         }
560         
561         if (Pman.Login.intervalID) {
562             // remove the timer
563             window.clearInterval(Pman.Login.intervalID);
564             Pman.Login.intervalID = false;
565         }
566         
567         this.create();
568         
569         
570         
571         if (Roo.get('loading')) {
572             Roo.get('loading').remove();
573         }
574         if (Roo.get('loading-mask')) {
575             Roo.get('loading-mask').hide();
576         }
577         
578         //incomming._node = tnode;
579         this.form.reset();
580         this.dialog.modal = !modal;
581         this.dialog.show();
582         this.dialog.el.unmask(); 
583         this.resizeToLogo.defer(1000,this);
584         
585          
586         this.form.setValues({
587             'username' : Roo.state.Manager.get('Pman.Login.username.'+appNameShort, ''),
588             'lang' : Roo.state.Manager.get('Pman.Login.lang.'+appNameShort, 'en')
589         });
590         Pman.Login.switchLang(Roo.state.Manager.get('Pman.Login.lang.'+appNameShort, ''));
591         if (this.form.findField('username').getValue().length > 0 ){
592             this.form.findField('password').focus();
593         } else {
594            this.form.findField('username').focus();
595         }
596         
597         
598     },
599  
600     
601      
602     logout: function()
603     {
604         window.onbeforeunload = function() { }; // false does not work for IE..
605         Pman.Login.authUserId = -1;
606         Roo.Ajax.request({  
607             url: baseURL + '/Login.html',  
608             params: {
609                 logout: 1
610             },  
611             method: 'GET',
612             failure : function() {
613                 Roo.MessageBox.alert("Error", "Error logging out. - continuing anyway.", function() {
614                     document.location = baseURL + '?ts=' + Math.random();
615                 });
616                 
617             },
618             success : function() {
619                 Pman.Login.authUserId = -1;
620                 Pman.Login.checkFails =0;
621                 // remove the 
622                 document.location = baseURL + '?ts=' + Math.random();
623             }
624               
625               
626         }); 
627     },
628     switchLang : function (lang) {
629         if (!lang.length) {
630             return;
631         }
632         if (typeof(_T.en) == 'undefined') {
633             _T.en = {};
634             Roo.apply(_T.en, _T);
635         }
636         
637         if (typeof(_T[lang]) == 'undefined') {
638             Roo.MessageBox.alert("Sorry", "Language not available yet (" + lang +')');
639             return;
640         }
641         
642         
643         Roo.apply(_T, _T[lang]);
644         // just need to set the text values for everything...
645         if (this.form) {
646             
647                
648             function formLabel(name, val) {
649                 
650                 var lbl = Pman.Login.form.findField( name ).el.dom.parentNode.parentNode;
651                 if (lbl.getElementsByTagName('label').length) {
652                     lbl = lbl.getElementsByTagName('label')[0];
653                 } else  {
654                     lbl = lbl.parentNode.getElementsByTagName('label')[0];
655                 }
656                    
657                 lbl.innerHTML = val;
658             }
659             
660             formLabel('password', "Password"+':');
661             formLabel('username', "Email Address"+':');
662             formLabel('lang', "Language"+':');
663             this.dialog.setTitle("Login");
664             this.dialog.buttons[0].setText("Forgot Password");
665             this.dialog.buttons[1].setText("Login");
666         }
667         
668         
669     },
670     
671     inGroup : function(g)
672     {
673         return this.authUser && this.authUser.groups && 
674             this.authUser.groups.indexOf(g) > -1;
675     },
676     isOwner : function()
677     {
678         return this.authUser && this.authUser.company_id_comptype && 
679             this.authUser.company_id_comptype == 'OWNER';
680     },
681     
682     /**
683      * Depreciated = use Pman.I18n
684      */
685     
686     i18nList: function (type, codes)
687     {
688         
689         return Pman.I18n.listToNames(type, codes);
690     },
691     i18n: function(type, code) 
692     {
693         return Pman.I18n.toName(type, code);
694         
695     }
696     
697     
698 });
699
700
701
702
703