I am using web.py framework for designing a small web application, presently i have created a login page and code is below
index.py
import web
from web import form
from web.contrib.auth import DBAuth
import MySQLdb as mdb
render = web.template.render('templates/')
urls = (
'/', 'Login',
'/projects', 'Projects',
'/logout', 'Logout',
)
app = web.application(urls, globals()) # Creating an instance(object) app which is the mediator between our classes and the web.It will handle browser requests and serve your pages
web.config.debug = False
db = web.database(dbn='mysql', db='Python_Web', user='root', pw='redhat')
settings = {}
if web.config.get('_session') is None:
session = web.session.Session(app,web.session.DiskStore('sessions'),initializer={'user':'anonymous','loggedin':False})
web.config._session = session
else:
session = web.config._session
auth = DBAuth(app, db, session,**settings)
def logged():
if session['loggedin'] == 1:
return True
else:
return False
class Login:
# field validators
username_required = form.Validator("Username not provided", bool)
password_required = form.Validator("Password not provided", bool)
# form validators
login_details_required = form.Validator("Please Enter Login Details", lambda f: f["username"] or f["password"])
login_form = form.Form(
form.Textbox('username', username_required),
form.Password('password',password_required,description="Password"),
form.Button('Login'),
)
def GET(self):
if logged():
raise web.seeother('/projects')
else:
form = self.login_form()
return render.login(form)
def POST(self):
if not my_form.validates(dict(username="", password="small")):
return render.login(form)
i = web.input()
username = i.username.strip()
password = i.password.strip()
user = auth.authenticate(username, password)
if not user:
session.loggedin = False
return render.login_error(form)
else:
auth.login(user)
session.loggedin = True
session.user = i.username.strip()
raise web.seeother('/projects')
if __name__ == "__main__":
web.internalerror = web.debugerror
app.run()
Here in the above code my intention is
1.If username not provided it should display "Username not provided" when clicked on Login
2.If password not provided it should display "password not provided" when clicked on Login
3.If password provided but length is less than 7 characters it should display "Password length should be minimum 7 characters" when clicked on Login(Of course this validation concept suits when creating a user by selecting password )
4.If Both not provided it should display "Please Enter Login Details" when clicked on Login
5.If Login details not matched it should display "Invalid Username or Password" when clicked on Login and if login Details matched should redirect to next page
In the above code when login details matched its redirecting to next page successfully and if not displaying Invalid username or password through return render.login_error(form) (I copied same html code from login(form) page to login_error(form) and added "Invalid Username or Password" line extra in that)
Also i created a regex expression for password validation and hope thats working(I dint checked exactly) because if password length is less than 7 characters it is not redirecting to next page instead redirecting to same login page, but at the same time i want to display on the browser like the message "Password length should be minimum 7 characters" which i am unable to do(dont know how to do)
Also i had given username as form.notnull() validation in Form creation as above, when i tried to click login it is checking whether the form validates or not and if not redirecting to the same login page, but i want to display the message "Please enter the username" and also for password if not provided
Whether the above regex will work correctly (i dint worked on regex until now)
How to display the above validation messages on browser if username,password, not provided on the browser, because i had created another html page just for the
Invalid username or passwordmessage to appear on the browser when details are incorrect
Whether we can do all this validations in single html file(like login.html) itself ? ,
i have tried a lot but i am unable catch the process going on here, if so we can save of creating more than one html for individual messages
can anyone let me know on how to solve the above common problems ? Don't mind for my queries as this is my first step in web applications and i dint worked on web applications before