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', 'django.contrib.auth.backends.ModelBackend')
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.0.8.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

ksu_sso_auth-0.0.8-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ksu_sso_auth-0.0.8.tar.gz
  • Upload date:
  • Size: 5.8 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.0.8.tar.gz
Algorithm Hash digest
SHA256 f4996cd550f26fce453e2d34f181e1d8f261cded7609182e627a7137e54215ed
MD5 c532f91a0aed9b1a97b1d165380c8866
BLAKE2b-256 29a34b930528c201e2d5c29846ffe502a5a53d3d81c01044d84e24c05a9cd08f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ksu_sso_auth-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 10.6 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.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 c8e1a98a5e12be60b7c8efd494c674cd0843dafad66d0f602bbf2d2de4b0da84
MD5 e6305b5d124e83c8ca7dc011cad8a939
BLAKE2b-256 e8f51e383842de424ce29c3d2c18c7aa259213ddc61c373c446fc892311c57d6

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