LTI tool support for Django
Project description
django-lti
A Django reusable app providing support for LTI Advantage.
Installation
Install using pip.
pip install django-lti
Setup
Start by adding lti_tool to your project's INSTALLED_APPS.
INSTALLED_APPS = [
...
"lti_tool",
]
Then, add lti_tool.middleware.LtiLaunchMiddleware to the MIDDLEWARE setting.
It's important to list the LtiLaunchMiddleware after SessionMiddleware.
MIDDLEWARE = [
...
'django.contrib.sessions.middleware.SessionMiddleware',
'lti_tool.middleware.LtiLaunchMiddleware',
]
Finally, run migrations to initialize the needed database tables.
python manage.py migrate lti_tool
Usage
Adding JWKS and OIDC initiation URLs
To allow LTI platforms to retrieve a JWKS and initiate a launch, add paths for
lti_tool.views.jwks and lti_tool.views.OIDCLoginInitView to urls.py
...
from lti_tool.views import jwks, OIDCLoginInitView
urlpatterns = [
path(".well-known/jwks.json", jwks, name="jwks"),
path("init/<uuid:registration_uuid>/", OIDCLoginInitView.as_view(), name="init"),
]
Generating and rotating keys
Keys for the JWKS can be generated using the rotate_keys management command.
python manage.py rotate_keys
Registering an LTI platform
An LTI platform can be registered through the Django admin, or using a custom interface.
Handling an LTI launch
To handle the LTI launch, inherit from LtiLaunchBaseView and implement the handler
methods for the types of LTI message types that the application supports.
class ApplicationLaunchView(LtiLaunchBaseView):
def handle_resource_launch(self, request, lti_launch):
... # Required. Typically redirects the users to the appropriate page.
def handle_deep_linking_launch(self, request, lti_launch):
... # Optional.
def handle_submission_review_launch(self, request, lti_launch):
... # Optional.
def handle_data_privacy_launch(self, request, lti_launch):
... # Optional.
Each handler method receives the request, as well as a LtiLaunch object.
When a session is initiated by an LTI launch, data about the launch is available from
the request at request.lti_launch as an LtiLaunch object. During a non-LTI session
request.lti_launch will refer to an AbsentLtiLaunch object.
It is possible to distinguish between LtiLaunch and AbsentLtiLaunch objects using
the .is_present and .is_absent properties.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_lti-0.9.2.tar.gz.
File metadata
- Download URL: django_lti-0.9.2.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b9a8815de185f152b364e57c2cddf3462492c04c3bf75f980cdf861d69935bc
|
|
| MD5 |
a3fde1ae449838726c987b2611cf8ca0
|
|
| BLAKE2b-256 |
1cf28b439df7b13d33adc027d6e7161bd2d4ebff37c9280d39b3846a406a89d5
|
File details
Details for the file django_lti-0.9.2-py3-none-any.whl.
File metadata
- Download URL: django_lti-0.9.2-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b96cab371cf0f94af5ea3d7120ba47f06b474c5c1006cde9a77a8fa828002708
|
|
| MD5 |
97b6672ed8a00ea6a267ff2cfe8452fa
|
|
| BLAKE2b-256 |
94c2265a4f84912309a07cfaa5de6068498bd540d3211e4c4a1cf6b960375fd8
|