Installable Django Authentication that adds support for Platform One
Project description
p1-auth
Provides an authentication system for Platform One by decoding non-encrypted JWTs.
Additionally provides configurations to automatically populate user attributes and assign user membership from JWT fields.
settings.py
This section covers configurations that can be set in the settings.py file.
USER_ATTRIBUTES_MAP
A python dictionary to map between fields on the User model and the JWT fields.
USER_ATTRIBUTES_MAP = {
"PYTHON_USER_MODEL_FIELD_NAME": "JWT_FIELD_NAME",
"first_name": "given_name",
}
USER_MEMBERSHIPS
A python dictionary to map between models based on JWT fields. The JWT side can be an id, string, or list.
NOTE: the connection between the models must allow connections like the following user.connection_name.update_or_create(**{"field_name": "jwt_memberships"})
USER_MEMBERSHIPS = {
"PYTHON_USER_MODEL_CONNECTION_NAME": {
"CONNECTED_MODEL_FIELD": "JWT_MEMBERSHIP_FIELD"
},
"groups": {
"name": "simple_groups"
},
}
USER_STAFF_FLAG
A key for the JWT to be checked to determine if the user should be marked as staff. This uses the is_staff
flag Django's AbstractUser model.
NOTE: if USER_STAFF_VALUE is not set, staff status will be determined by USER_STAFF_FLAG existing in the JWT, and having a non-empty value. So an empty list or string will not confer staff status.
USER_STAFF_FLAG = "JWT_STAFF_FLAG"
USER_STAFF_VALUE
A value to check for in the JWT under the USER_STAFF_FLAG. If the JWT contains a list under USER_STAFF_FLAG, it will check to see if the value of USER_STAFF_VALUE is within the list. The value of USER_STAFF_VALUE is not type restricted, but the comparison is type dependent, so '1' == 1
would fail.
USER_STAFF_VALUE = 123
USER_SUPERUSER_FLAG
A key for the JWT to be checked to determine if the user should be marked as superuser. This uses the is_superuser
flag Django's AbstractUser model.
NOTE: if USER_SUPERUSER_VALUE is not set, superuser status will be determined by USER_SUPERUSER_FLAG existing in the JWT, and having a non-empty value. So an empty list or string will not confer staff status.
USER_SUPERUSER_FLAG = "JWT_SUPERUSER_FLAG"
USER_SUPERUSER_VALUE
A value to check for in the JWT under the USER_SUPERUSER_FLAG. If the JWT contains a list under USER_SUPERUSER_FLAG, it will check to see if the value of USER_SUPERUSER_VALUE is within the list. The value of USER_SUPERUSER_VALUE is not type restricted, but the comparison is type dependent, so '1' == 1
would fail.
USER_SUPERUSER_VALUE = 123
REQUIRE_JWT
A flag to require JWTs on every request.
REQUIRE_JWT = True
Django Admin
This section covers configurations that can be set in the Django Admin.
RelatedAssignment
RelatedAssignment allows selecting a Model (object_model) and instance (object_pk) that a user should be assigned to if all related AttributeChecks pass.
Object_model is a dropdown of the enabled content types within the application, where you select the object type you want to assign users to.
Object_pk is the Primary Key of the object you want to assign users to.
AttributeCheck
AttributeCheck allows specifying the JWT key (jwt_attribute) and an expected value.
Jwt_attribute should be a valid JSON key, or a JSON object for traversing the JWT to where the key will be.
Expected_value is the expected JSON value.
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 p1_auth-0.1.0.tar.gz
.
File metadata
- Download URL: p1_auth-0.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d393c557d6010cd723e52f2102e091f2e5124a8f3932300e628b44ca11c73cc0 |
|
MD5 | d2c40297ed7768189bdac0ac39163634 |
|
BLAKE2b-256 | 2ac5fd657dd30bb22ff1daa32452b11d20caf56c901a5a69c04c76c9f1cd3cf3 |
File details
Details for the file p1_auth-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: p1_auth-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9385885e704061eadde37caa1729040a3f1fe3f4d78a13353f1cbce53a98b2fe |
|
MD5 | 6717bab46d853592a10fee5f294fd49b |
|
BLAKE2b-256 | 62217f3f883fb9a4b3404e4b8206f76ee4d39eeb68d10e4f12d09b7aa38f6819 |