X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Login.js;h=234b9c099d3eef4ef42aea03dc812eec73172906;hp=dc39a3de462ea192f576d556273300354b70137a;hb=HEAD;hpb=c9904f978c7295a8bb4869ab6fd4c589eafd2c17 diff --git a/Pman.Login.js b/Pman.Login.js index dc39a3de..a7b77e23 100644 --- a/Pman.Login.js +++ b/Pman.Login.js @@ -36,6 +36,8 @@ Pman.Login = new Roo.util.Observable({ versionWarn: false, sending : false, + checkConnection : false, // the Roo.data.Connection for checking if still authenticated. + onLoad : function() // called on page load... { // load @@ -105,8 +107,10 @@ Pman.Login = new Roo.util.Observable({ return; } this.sending = true; - - Roo.Ajax.request({ + if (!this.checkConnection) { + this.checkConnection = new Roo.data.Connection(); + } + this.checkConnection.request({ url: baseURL + '/Login.js', params: { getAuthUser: true @@ -128,7 +132,9 @@ Pman.Login = new Roo.util.Observable({ var res = Pman.processResponse(response); //console.log(res); if ( Pman.Login.checkFails > 2) { - Pman.Preview.disable(); + if (typeof(Pman.Preview) != 'undefined') { + Pman.Preview.disable(); // not sure why this was added - but MO chrome does not have it. + } Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : "Error getting authentication status. - try reloading"); return; @@ -255,15 +261,15 @@ Pman.Login = new Roo.util.Observable({ Roo.MessageBox.alert("Error", "Fill in your email address"); return; } - Roo.Ajax.request({ - url: baseURL + '/Login.js', + new Pman.Request({ + url: baseURL + '/Login.js', + mask : "Sending Password Reset email", params: { passwordRequest: n }, method: 'POST', - success: function(response, opts) { // check successfull... + success: function(res) { // check successfull... - var res = Pman.processResponse(response); if (!res.success) { // error! Roo.MessageBox.alert("Error" , res.errorMsg ? res.errorMsg : "Problem Requesting Password Reset"); return; @@ -301,8 +307,9 @@ Pman.Login = new Roo.util.Observable({ //act.result.errorMsg// invalid form element list... Pman.Login.dialog.el.unmask(); - Roo.MessageBox.alert("Error", act.result.errorMsg ? act.result.errorMsg : - "Login failed - communication error - try again."); + var msg = act.result.errorMsg || act.result.message; + msg = msg || "Login failed - communication error - try again."; + Roo.MessageBox.alert("Error", msg); }, actioncomplete: function(re, act) { @@ -343,9 +350,8 @@ Pman.Login = new Roo.util.Observable({ autoCreate : {tag: "input", type: "text", size: "20"} }), - new Roo.form.TextField({ + new Roo.form.Password({ fieldLabel: "Password", - inputType: 'password', name: 'password', width:200, autoCreate : {tag: "input", type: "text", size: "20"}, @@ -402,14 +408,22 @@ Pman.Login = new Roo.util.Observable({ ef.dom.style.margin = 10; this.form.render(ef.dom); - // logoprefix comes from base config. - Pman.Login.form.el.createChild({ + // logoprefix comes from base config - normally the owner company logo... + // ??? + + var img = typeof(appLogo) != 'undefined' && appLogo.length ? appLogo : + rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif' ; + + Pman.Login.form.el.createChild({ tag: 'img', - src: rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif', + src: img, style: 'margin-bottom: 10px;' }, Pman.Login.form.el.dom.firstChild - ); + ).on('error', function() { + this.dom.style.visibility = 'hidden'; + this.dom.style.height = '10px'; + }); var vp = this.dialog.getLayout().add('center', new Roo.ContentPanel(ef, { autoCreate : true, @@ -449,6 +463,9 @@ Pman.Login = new Roo.util.Observable({ if (this.disabled) { return; } + + + this.callback = cb; // used for non-pman usage.. modal = modal || false; if (Pman.Login.authUserId < 0) { // logout!? @@ -480,6 +497,11 @@ Pman.Login = new Roo.util.Observable({ this.dialog.el.unmask(); this.resizeToLogo.defer(1000,this); + // if we have not created a provider.. do it now... + if (!Roo.state.Manager.getProvider().expires) { + Roo.state.Manager.setProvider(new Roo.state.CookieProvider()); + } + this.form.setValues({ 'username' : Roo.state.Manager.get('Pman.Login.username.'+appNameShort, ''),