mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
39782e75e7
* added support for oidc auth * fixed oidc usernames * hiding password for users that aren't logged in via local auth * add dependency, update settings * keep change password link * add tests * add docs --------- Co-authored-by: Sascha Ißbrücker <sascha.issbruecker@gmail.com>
71 lines
2.2 KiB
Python
71 lines
2.2 KiB
Python
"""siteroot URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
|
|
from django.conf import settings
|
|
from django.contrib.auth import views as auth_views
|
|
from django.urls import path, include
|
|
|
|
from bookmarks.admin import linkding_admin_site
|
|
|
|
|
|
class LinkdingLoginView(auth_views.LoginView):
|
|
"""
|
|
Custom login view to lazily add additional context data
|
|
Allows to override settings in tests
|
|
"""
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
context["allow_registration"] = settings.ALLOW_REGISTRATION
|
|
context["enable_oidc"] = settings.LD_ENABLE_OIDC
|
|
return context
|
|
|
|
|
|
urlpatterns = [
|
|
path("admin/", linkding_admin_site.urls),
|
|
path(
|
|
"login/",
|
|
LinkdingLoginView.as_view(redirect_authenticated_user=True),
|
|
name="login",
|
|
),
|
|
path("logout/", auth_views.LogoutView.as_view(), name="logout"),
|
|
path(
|
|
"change-password/",
|
|
auth_views.PasswordChangeView.as_view(),
|
|
name="change_password",
|
|
),
|
|
path(
|
|
"password-change-done/",
|
|
auth_views.PasswordChangeDoneView.as_view(),
|
|
name="password_change_done",
|
|
),
|
|
path("", include("bookmarks.urls")),
|
|
]
|
|
|
|
if settings.LD_ENABLE_OIDC:
|
|
urlpatterns.append(path("oidc/", include("mozilla_django_oidc.urls")))
|
|
|
|
if settings.LD_CONTEXT_PATH:
|
|
urlpatterns = [path(settings.LD_CONTEXT_PATH, include(urlpatterns))]
|
|
|
|
if settings.DEBUG:
|
|
import debug_toolbar
|
|
|
|
urlpatterns.append(path("__debug__/", include(debug_toolbar.urls)))
|
|
|
|
if settings.ALLOW_REGISTRATION:
|
|
urlpatterns.append(path("", include("django_registration.backends.one_step.urls")))
|