Skip to main content

Django app for KU SSO authentication

Project description

KU SSO for Django

This is a Django application written to support authentication via KU Single Sign-On (KU SSO) system.

Installation

Use pip to install the package from PyPI.

pip install kusso-django

Edit the project's settings.py to include the kusso_django.kusso app.

INSTALLED_APPS = [
    :
    'kusso_django.kusso',
]

Synchronize the database with the command

./manage.py migrate

Edit the project's urls.py to include necessary paths. A different prefix may be used, but the redirect URI needs to be changed accordingly.

from django.urls import path, include
urlpatterns = [
    :
    path('kusso', include('kusso_django.kusso.urls', namespace='kusso'))
]

With the example above, the redirect URI to be requested to the Office of Computer Services will be:

https://<host>/<subpath>/kusso/authorize/

Add KUSSO_CONFIG to settings.py with the client ID and secret given by the Office of Computer Services. The create_new_user flag indicates whether a non-existent user will be automatically created upon successful login from KU SSO.

KUSSO_CONFIG = {
    'client_id': '<client-id>',
    'client_secret': '<client-secret>',
    'create_new_user': <True or False>,
}

Login/Logout Template Tags

Assuming the URL namespace is kusso, use the url template tag to generate login and logout links:

  • Login link
    <a href="{% url 'kusso:login' %}?next={{ request.GET.next }}">KU All-Login</a>
    
  • Logout link
    <a href="{% url 'kusso:logout' %}">Logout</a>
    

Error Handling

When an error is encountered during the authentication process, the user will be sent back to the login page. A corresponding error message is also sent as a message via Django's messages framework. To make the error message visible to the user, the login template must include something like:

{% if messages %}
<ul class="messages">
    {% for message in messages %}
    <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
    {% endfor %}
</ul>
{% endif %}

Deploying App with Reverse Proxy

To ensure the redirect-uri for KU SSO is constructed correctly when deploying the project behind a reverse proxy like Nginx, add the following configurations to the project's settings.py.

USE_X_FORWARDED_HOST = True
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

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

kusso_django-1.1.5.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kusso_django-1.1.5-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file kusso_django-1.1.5.tar.gz.

File metadata

  • Download URL: kusso_django-1.1.5.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.3 Darwin/23.6.0

File hashes

Hashes for kusso_django-1.1.5.tar.gz
Algorithm Hash digest
SHA256 f4f2c15486d798e50fcb27ad74182838a996687c1ddd40cce59b9245be3fc9fd
MD5 93e5ac391a5f8a7ff0d0c82e9047d92b
BLAKE2b-256 a883e2f8ce6f3218696f88da9a4a44618482eae275885e6db3de15a5b2814cc6

See more details on using hashes here.

File details

Details for the file kusso_django-1.1.5-py3-none-any.whl.

File metadata

  • Download URL: kusso_django-1.1.5-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.3 Darwin/23.6.0

File hashes

Hashes for kusso_django-1.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f4a00e331d63c9f9fa3d756e8bbf42497bf6a85b6208bf9e3c783a21d44cf1f3
MD5 c37917f56c706bba0627a262c15c09ab
BLAKE2b-256 0b814d2c7800849c5233eca2ff80ba431370f0d2c8c4369b79f2e36bb41c0cc5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page