Skip to main content

Module for use ksu sso service

Project description

Настройка

В settings проекта добавить:

  • 'sso_auth' в INSTALLED_APPS
    После этого выполнить команды
python3 manage.py makemigrations sso_auth
python3 manage.py migrate

Добавить в urls.py проекта в переменную urlpatterns выше всего остального следующий код:

path('admin/login/', AdminLogin.as_view()),
path('admin/logout/', UserLogout.as_view()),
path('sso/', include('sso_auth.urls')),

До этого сделать импорт:

from django.urls import path, include
from sso_auth.views import AdminLogin, UserLogout

В settings проекта добавить:

  • 'sso_auth.middleware.OauthMiddleware' в MIDDLEWARE
  • код ниже. нужно заполнить реальными данными от сервера авторизации
# settings for sso login
AUTH_USER_MODEL = 'sso_auth.OauthUser'
AUTHENTICATION_BACKENDS = ('sso_auth.backends.TokenAuth',)
SSO_URL = 'http://127.0.0.1:8000/oauth/'
CLIENT_ID = '1bc2aea0-4dad-4f4a-9f3d-4e205b0fc10a'
CLIENT_SECRET = 'Zo8DtoPgu6m533ySFDfBImo0Lao_sh50dxE-EAHJCkwCrNvaPztIsOQaxdB0nKrX11o'
REDIRECT_URI = 'http://127.0.0.1:8001/sso/process'

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

ksu_sso_auth-0.1.0.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

ksu_sso_auth-0.1.0-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file ksu_sso_auth-0.1.0.tar.gz.

File metadata

  • Download URL: ksu_sso_auth-0.1.0.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.3

File hashes

Hashes for ksu_sso_auth-0.1.0.tar.gz
Algorithm Hash digest
SHA256 204c2aae71dfda11c70542a90d4896fec3455dcc3cdd7e0b6ff23f26afe0aa84
MD5 fc91e957326e9ff96d88513838624941
BLAKE2b-256 09c93b497ac6f888cbf3c77ea79ee8d4801b125b0966b3c65a04492e24a1d7cc

See more details on using hashes here.

File details

Details for the file ksu_sso_auth-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ksu_sso_auth-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.3

File hashes

Hashes for ksu_sso_auth-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7013d2fee789afa7e7899932e814190c25de2f82522c7d7631856dfd0390fe1c
MD5 0b05b411cbcb19aac5e312e9ac9d9db4
BLAKE2b-256 9b8e578b9fb6148ab57fc842a206565bc64f54e05b2dc0447adb4bba2703e73d

See more details on using hashes here.

Supported by

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