Eve JWT authentication
Project description
An OAuth 2 JWT token validation module for Eve.
Installation
To install eve-auth-jwt, simply:
$ pip install eve-auth-jwt
At Eve initialization:
from eve import Eve from eve_auth_jwt import JWTAuth app = Eve(auth=JWTAuth, settings=SETTINGS)
Configuration
This module reads its configuration form Eve settings. Here is the list of new directives:
JWT_SECRET (required): Defines the symetric secret token secret used to de/encode the token (async keys support is a TODO).
JWT_ISSUER (required): Defines the required token issuer (iss claim).
JWT_AUDIENCES: Defines a list of accepted audiences (aud claim). If not provided, only tokens with no audience set will be accepted. The resource level audiences parameter is also available.
JWT_ROLES_CLAIM: Defines the claim name for roles. If set, Eve roles check will be activated, and any resources with allowed_roles set will require to have those roles present in the defined token’s claim.
JWT_SCOPE_CLAIM: Defines the claim name for scope. If set and the token has a claim of the same name containing the string viewer, only GET and HEAD methods will be granted. All other values are ignored and added to the list of exposed roles with the scope: prefix.
Reading Roles
If access is granted, the authentication module exposes roles and token’s claims thru get_authen_roles() and get_authen_claims() methods. You may access those values from your event hook as follow:
def my_hook(...) resource_def = app.config['DOMAIN'][resource_name] auth = resource_def['authentication'] if 'somerole' in auth.get_authen_roles(): # grant some finer access
Securing custom routes
JWT Authorization can be applied to any custom routes using the @requires_token wrapper. This annotation will only provide audience and role access control. User level access must be written manually.
Example of audience access control:
from eve_auth_jwt import requires_token, get_request_auth_value @app.route('/my_resource/download', methods=['GET']) @requires_token(audiences=['myAudience']) def csv_download(): # Allows all users with myAudience to access download account_id = get_request_auth_value() if check_user(account_id): abort(401) return generateCSV(account_id)
Example of myAdmin access control:
from eve_auth_jwt import requires_token @app.route('/admin/my_resource/download', methods=['GET']) @requires_token(audiences=['myAudience'], allowed_roles=['myAdmin']) def csv_download(): account_id = request.args.get('account_id', None) return generateCSV(account_id)
Access the parsed JWT token values
The parsed JWT token values are stored in the flask.g dict, but custom functions exist to aid in reading the values. The values are only available after the JWT token integrity check and user authorization occurs.
Example of access the parse JWT token fields:
from eve_auth_jwt import get_request_auth_value, get_authen_claims, get_authen_roles def my_fn(): # Request authentication value as a str account_id = get_request_auth_value() # JWT claims as a dict[str] payload = get_authen_claims() # Roles as arr[str] roles = get_authen_roles()
Licenses
All source code is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eve-auth-jwt-1.0.5.tar.gz
.
File metadata
- Download URL: eve-auth-jwt-1.0.5.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4a1823cccf9bd39f5dc60e347486e328291cc0804cd551aa50ae4a4715f04e3 |
|
MD5 | b7c027f4db8ada1606ac01a880e8dc7f |
|
BLAKE2b-256 | ed6d1d96fe6ae6a7a659d42c0576c664695ed5a1f17bae64c738a6bb612a20e2 |
File details
Details for the file eve_auth_jwt-1.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: eve_auth_jwt-1.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8b11fb7299b02022761d094f908b1a9c8d69c0d5dcecc7495c5045a5995a1e1 |
|
MD5 | bdae379857a366d1125e7a02f7b4d1d6 |
|
BLAKE2b-256 | ff0408f6740db62bd69c4b3d2fd37d7c1b723c3fa6f758e7d6b78ccbabb2442f |