115 lines
4.3 KiB
Python
115 lines
4.3 KiB
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.contrib.auth.decorators import user_passes_test
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
from django.urls import include, path, re_path
|
|
from django.views import defaults as default_views
|
|
from ratelimit.exceptions import Ratelimited
|
|
from wagtail import urls as wagtail_urls
|
|
from wagtail.admin import urls as wagtailadmin_urls
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
|
|
|
from vbv_lernwelt.completion.views import request_learning_path_completion, request_circle_completion, \
|
|
mark_circle_completion
|
|
from vbv_lernwelt.core.middleware.auth import django_view_authentication_exempt
|
|
from vbv_lernwelt.core.views import (
|
|
rate_limit_exceeded_view,
|
|
permission_denied_view,
|
|
check_rate_limit, cypress_reset_view, vue_home, vue_login, me_user_view, vue_logout, generate_web_component_icons, )
|
|
from vbv_lernwelt.learnpath.views import page_api_view
|
|
|
|
|
|
def raise_example_error(request):
|
|
"""
|
|
raise error to check if it gets logged
|
|
"""
|
|
raise Exception("Test Error: I know python!")
|
|
# pylint: disable=unreachable
|
|
return HttpResponse("no error?")
|
|
|
|
|
|
# fmt: off
|
|
urlpatterns = [
|
|
path(settings.ADMIN_URL, admin.site.urls),
|
|
|
|
# wagtail urls
|
|
path('server/cms/', include(wagtailadmin_urls)),
|
|
path('server/documents/', include(wagtaildocs_urls)),
|
|
path('server/pages/', include(wagtail_urls)),
|
|
|
|
# user management
|
|
path("sso/", include("vbv_lernwelt.sso.urls")),
|
|
re_path(r'api/core/me/$', me_user_view, name='me_user_view'),
|
|
re_path(r'api/core/login/$', django_view_authentication_exempt(vue_login), name='vue_login'),
|
|
re_path(r'api/core/logout/$', vue_logout, name='vue_logout'),
|
|
|
|
# core
|
|
re_path(r"server/core/icons/$", generate_web_component_icons, name="generate_web_component_icons"),
|
|
|
|
# learnpath
|
|
path(r"api/learnpath/page/<slug:slug>/", page_api_view, name="page_api_view"),
|
|
|
|
# completion
|
|
path(r"api/completion/circle/<uuid:circle_key>/", request_circle_completion, name="request_circle_completion"),
|
|
path(r"api/completion/learning_path/<uuid:learning_path_key>/", request_learning_path_completion, name="request_learning_path_completion"),
|
|
path(r"api/completion/circle/mark/", mark_circle_completion, name="mark_circle_completion"),
|
|
|
|
# testing and debug
|
|
path('server/raise_error/', user_passes_test(lambda u: u.is_superuser, login_url='/login/')(raise_example_error), ),
|
|
path("server/checkratelimit/", check_rate_limit),
|
|
]
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
if settings.DEBUG:
|
|
# Static file serving when using Gunicorn + Uvicorn for local web socket development
|
|
urlpatterns += staticfiles_urlpatterns()
|
|
|
|
if settings.APP_ENVIRONMENT != 'production':
|
|
urlpatterns += [
|
|
re_path(r'api/core/cypressreset/$', cypress_reset_view, name='cypress_reset_view'),
|
|
]
|
|
# fmt: on
|
|
|
|
|
|
def handler403(request, exception=None):
|
|
if isinstance(exception, Ratelimited):
|
|
# if request.path.startswith("/swisscom/customer"):
|
|
# return SwisscomCustomerLandingPageErrorView.as_view()(request)
|
|
return rate_limit_exceeded_view(request, exception)
|
|
return permission_denied_view(request, exception)
|
|
|
|
|
|
handler500 = "vbv_lernwelt.core.views.server_json_error"
|
|
|
|
|
|
if settings.DEBUG:
|
|
# This allows the error pages to be debugged during development, just visit
|
|
# these url in browser to see how these error pages look like.
|
|
urlpatterns += [
|
|
path(
|
|
"400/",
|
|
default_views.bad_request,
|
|
kwargs={"exception": Exception("Bad Request!")},
|
|
),
|
|
path(
|
|
"403/",
|
|
default_views.permission_denied,
|
|
kwargs={"exception": Exception("Permission Denied")},
|
|
),
|
|
path(
|
|
"404/",
|
|
default_views.page_not_found,
|
|
kwargs={"exception": Exception("Page not Found")},
|
|
),
|
|
path("500/", default_views.server_error),
|
|
]
|
|
if "debug_toolbar" in settings.INSTALLED_APPS:
|
|
import debug_toolbar
|
|
|
|
urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
|
|
|
|
|
|
# serve everything else via the vue app
|
|
urlpatterns += [re_path(r'^(?!.*(server/|api/|sso/)).*$', vue_home, name='home')]
|