Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 18, 2015 01:00 pm

Creating a Web App From Scratch Using Python Flask and MySQL: Part 2

In the previous part of this series, we saw how to get started with Python Flask and MySQL and implemented the user registration portion of our application. In this tutorial, we'll take this to the next level by implementing the sign-in and logout functionality for our application.

Getting Started

First clone the source code of the previous tutorial from GitHub.

Once the source code has been cloned, navigate to the PythonFlaskMySQLApp---Part-1 directory and start the server.

Point your browser to https://localhost:5002 and you should have the application running.

Creating the Sign-In Interface

Navigate to PythonFlaskMySQLApp---Part-1/templates and create a new file called signin.html. Open signin.html and add the following HTML code:

Open app.py and add a new route for the sign-in interface.

Next, open up index.html and signup.html, and add the href link for sign-in on both the pages as /showSignin. Save all the changes and restart the server. 

Point your browser to https://localhost:5002 and click on the Sign In link, and you should be able to see the sign-in page.

Sign In page

Implementing Sign-In

Now, we need to create function to validate the user login. On clicking Sign In we'll post the entered email address and password to the validate user function.

Creating a Stored Procedure 

To validate a user, we'll need a MySQL stored procedure. So create a MySQL stored procedure as shown:

We'll get the user details based on the username from the MySQL database using sp_validateLogin. Once we have the hashed password we'll validate it against the password entered by the user.

Validate the User Method

Create a method to validate the user which we'll call when the user submits the form:

As seen in the above code, we have read the posted email address and password into _username and _password. Now we'll call the sp_validateLogin procedure with the parameter _username. So create a MySQL connection inside the validateLogin method:

Once the connection has been created, create a cursor using the con connection.

Using the cursor, call the MySQL stored procedure as shown:

Get the fetched records from the cursor as shown:

If the data has some records, we'll match the retrieved password against the password entered by the user.

As seen in the above code, we have used a method called check_password_hash to check if the returned hash password matches the password entered by the user. If all is good then we'll redirect the user to userHome.html. And if there is any error, we'll display error.html with the error message.

Here is the complete validateLogin code:

Create a page called userHome.html inside the templates folder and add the following HTML code:

Also create an error page called error.html in templates folder and add the following HTML code:

Inside error.html we have an element as shown:

The value for the variable can be passed from the render_template function and can be set dynamically.

On successful sign-in we are redirecting the user to the user home page, so we need to create a route called /userHome as shown:

Save all the changes and restart the server. Click on the Sign In link in the home page and try to sign in using a valid email address and password. On successful user validation, you should have a page as shown below:

User home on successful user sign  in

On an unsuccessful user validation the user will be redirected to an error page as shown below:

Error message on unsuccessful user sign in

Here we have used a separate error page to display the error. It's also fine if you want to use the same page to display the error message. 

Restricting Unauthorized Access to the User Home Page

On successful user validation a user is redirected to the user home page. But right now even an unauthorized user can view the home page by simply browsing the URL https://localhost:5002/userHome

To restrict unauthorized user access, we'll check for a session variable which we'll set on successful user login. So import session from flask: 

We also need to set a secret key for the session. So in app.py, after the app as been initialized, set the secret key as shown :

Now, inside the validateLogin method, before redirecting the user to /userHome on successful sign-in, set the session variable as shown:

Next, inside the userHome method, check for the session variable before rendering userHome.html. If the session variable is not found, redirect to the error page.

Save all the changes and restart the server. Without signing in, try to navigate to https://localhost:5002/userHome and since you haven't logged in yet, you should be redirected to the error page.

Unauthorized access error

Implementing Logout

Implementing the logout functionality is the simplest. All we need to do is make the session variable user null and redirect the user to the main page. 

Inside app.py, create a new route and method for logout as shown: 

We have already set the href for the log out button to /logout. So save all the changes and restart the server. From the home page, click on Sign In and try to log in using a valid email address and password. Once signed in, click on the Logout button in user home and you should be successfully logged out from the application.

Conclusion

In this part of the tutorial, we saw how to implement the user login and logout functionality. We also saw how to restrict unauthorized access to application pages. In the next part of this tutorial, we'll implement the functionality for the logged-in user to add and edit a blog post in the application.

Source code from this tutorial is available on GitHub.

Do let us know your thoughts in the comments below!


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code