"""
URL configuration for shirazClinic project.

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/5.0/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.contrib import admin
from django.urls import path, include
from django.views.generic import RedirectView
from django.conf import settings
from django.conf.urls.static import static
from django.contrib.auth.decorators import login_required
from django.contrib.auth.mixins import LoginRequiredMixin
from django.conf.urls import handler403
from userauth.views import unauthorized_view


handler403 = unauthorized_view

urlpatterns = [
    path('admin/', admin.site.urls),
    path('accounts/', include('userauth.urls', namespace='userauth')),
    path('dashboard/', include('core.urls', namespace='core')),
    path('medical/', include('doctor.urls', namespace='doctor')),
    path('patients/', include('patient.urls', namespace='patient')),
    path('accountant/', include('accountant.urls', namespace='accountant')),
    path('warehouse/', include('warehouse.urls', namespace='warehouse') ),
    path('reservation/', include('reservation.urls', namespace='reservation')),
    path('', RedirectView.as_view(url='/accounts/login/', permanent=True)),
]

# Serve static and media files
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

# Apply login_required to specific URL patterns
for pattern in urlpatterns:
    if pattern.pattern.regex.pattern.startswith('^(dashboard/|medical/|patients/|accountant/|warehouse/|reservation/)'):
        pattern.callback = login_required(pattern.callback)


if settings.DEBUG:
    urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
    urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
