A powerful simple JWT integration with Lilya
Documentation: https://lilya-simple-jwt.dymmond.com 📚
Source Code: https://github.com/dymmond/lilya-simple-jwt
The official supported version is always the latest released.
This package serves the purpose of facilitating a simple JWT integration of Lilya and any application that requires JWT.
Based on the standards and security explanations of the official documentation, a simple jwt approach was designed to facilitate the life of the developers and it is 100% custom.
Lilya Simple JWT aims to simplify the generation of the access_token and refresh_token by
providing out of the box mechanisms and views that can be imported directly into your application.
This package uses Pydantic for its own schemas.
$ pip install lilya-simple-jwtLilya Simple JWT comes with a simple way of using the package.
- Via Include where you can simply import directly the views into your routing system.
This is not all what the package brings to you. It also brings scaffolds for your custom backend authentication and schemas to represent your token on response. All of this can be found in the documentation and in more details.
It is very simple, actually. Like everything in Lilya can be done through the settings, this package wouldn't be any different.
In a nutshell, you will need to use the SimpleJWT configuration provided by the package inside your settings and then import the urls into your package.
The Lilya Simple JWT does not come with a middleware for any application and the reason for this its because you can have your own custom middlewares and your own design without being forced to use a specific one.
For the sake of this example, Edgy will be used as ORM but feel free to use your own and override anything you want and need.
What will we need?
- A User model. For this we will be using the Edgy contrib from Esmerald since it provides already some out of the box configurations. Feel free to adapt it and use your own models.
- A backend authentication allowing out user to be validated for authentication.
- A backend refresh that handles with the refresh token of the user already logged in.
- A SimpleJWT configuration to be added to the application settings.
Both backend and refresh authentication will be using the default Token from the package.
Esmerald provides already some out of the box integrations with databases like Edgy but the package is not only strict to it. You can change and use whatever it suits you better.
This file will be placed in a myapp/apps/accounts/models.py.
{!> ../docs_src/quickstart/user.py !}The backend authentication does what the names suggests. Validates
and autenticates the user in the system and returns an access_token and refresh_token.
The backend authentication will be placed inside a myapps/apps/accounts/backends.py.
{!> ../docs_src/quickstart/backend_auth.py !}There is a lot to unwrap here right? Well, yes and no.
Although it looks very complex, in fact, it
is only using the simple_jwt settings to populate the necessary fields and get
some defaults from it such as access_token_lifetime and refresh_token_lifetime as well as
the names that will be displayed in the response for the tokens such as access_token_name and
refresh_token_name.
The rest is simple python logic to validate the login of a user.
The backend refresh as the name suggests, serves the purpose of
refreshing the access_token from an existing refresh_token only.
The RefreshAuthentication on the contrary of the backend authentication, it is already provided
out of the box within Lilya Simple JWT but you don't need to use it as well. Everything
can be customisable for your own needs.
The backend refresh will be placed inside a myapps/apps/accounts/backends.py as well.
{!> ../docs_src/quickstart/backend_refresh.py !}With the same principle of backend authentication, it uses the SimpleJWT configuration to populate the default values.
This is where we assemble the configurations for the package. The SimpleJWT is placed inside your application settings file and then used by the application directly.
The configuration will be living inside myapp/configs/settings.py.
{!> ../docs_src/quickstart/settings.py !}Did you see how simple it was? Basically you just need to implement your own backend and refresh backends and then import them into the SimpleJWT configuration.
!!! Danger
The settings must be called simple_jwt or the application will fail to use the
Lilya Simple JWT package.
Now it is time to assemble the application and use the package.
As mentioned at the beginning, there are two different ways.
- Via Include where you can simply import directly the views into your routing system.
This is the simplest approach to almost every application in Esmerald.
{!> ../docs_src/quickstart/via_include.py !}With everything assembled, we can now start our application but before we need to tell the application to use our custom settings.
$ export LILYA_SETTINGS_MODULE=myapp.configs.settings.AppSettingsYou can now start the application and access the endpoints via POST.
/auth/signin- The login view to generate theaccess_tokenand therefresh_token./auth/refresh-access- The refresh view to generate the newaccess_tokenfrom therefresh_token.
When Lilya Simple JWT is added into your application, unless specified not to, when enable_openapi=True, it will add the
urls automatically to your OpenAPI documentation and so you can also access them via:
/docs/swagger- The default OpenAPI url for the documentation of any Lilya application.
