mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			231 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			231 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#
 | 
						|
# Copyright 2016,2017
 | 
						|
# - Skia <skia@libskia.so>
 | 
						|
# - Sli <antoine@bartuccio.fr>
 | 
						|
#
 | 
						|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
 | 
						|
# http://ae.utbm.fr.
 | 
						|
#
 | 
						|
# This program is free software; you can redistribute it and/or modify it under
 | 
						|
# the terms of the GNU General Public License a published by the Free Software
 | 
						|
# Foundation; either version 3 of the License, or (at your option) any later
 | 
						|
# version.
 | 
						|
#
 | 
						|
# This program is distributed in the hope that it will be useful, but WITHOUT
 | 
						|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 | 
						|
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 | 
						|
# details.
 | 
						|
#
 | 
						|
# You should have received a copy of the GNU General Public License along with
 | 
						|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
 | 
						|
# Place - Suite 330, Boston, MA 02111-1307, USA.
 | 
						|
#
 | 
						|
#
 | 
						|
 | 
						|
from django.urls import path, re_path, register_converter
 | 
						|
 | 
						|
from core.converters import (
 | 
						|
    BooleanStringConverter,
 | 
						|
    FourDigitYearConverter,
 | 
						|
    TwoDigitMonthConverter,
 | 
						|
)
 | 
						|
from core.views import *
 | 
						|
 | 
						|
register_converter(FourDigitYearConverter, "yyyy")
 | 
						|
register_converter(TwoDigitMonthConverter, "mm")
 | 
						|
register_converter(BooleanStringConverter, "bool")
 | 
						|
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path("", index, name="index"),
 | 
						|
    path("notifications/", NotificationList.as_view(), name="notification_list"),
 | 
						|
    path("notification/<int:notif_id>/", notification, name="notification"),
 | 
						|
    # Search
 | 
						|
    path("search/", search_view, name="search"),
 | 
						|
    path("search_json/", search_json, name="search_json"),
 | 
						|
    path("search_user/", search_user_json, name="search_user"),
 | 
						|
    # Login and co
 | 
						|
    path("login/", SithLoginView.as_view(), name="login"),
 | 
						|
    path("logout/", logout, name="logout"),
 | 
						|
    path("password_change/", SithPasswordChangeView.as_view(), name="password_change"),
 | 
						|
    path(
 | 
						|
        "password_change/<int:user_id>/",
 | 
						|
        password_root_change,
 | 
						|
        name="password_root_change",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "password_change/done/",
 | 
						|
        SithPasswordChangeDoneView.as_view(),
 | 
						|
        name="password_change_done",
 | 
						|
    ),
 | 
						|
    path("password_reset/", SithPasswordResetView.as_view(), name="password_reset"),
 | 
						|
    path(
 | 
						|
        "password_reset/done/",
 | 
						|
        SithPasswordResetDoneView.as_view(),
 | 
						|
        name="password_reset_done",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        r"reset/<str:uidb64>/<str:token>/",
 | 
						|
        SithPasswordResetConfirmView.as_view(),
 | 
						|
        name="password_reset_confirm",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "reset/done/",
 | 
						|
        SithPasswordResetCompleteView.as_view(),
 | 
						|
        name="password_reset_complete",
 | 
						|
    ),
 | 
						|
    path("register/", UserCreationView.as_view(), name="register"),
 | 
						|
    # Group handling
 | 
						|
    path("group/", GroupListView.as_view(), name="group_list"),
 | 
						|
    path("group/new/", GroupCreateView.as_view(), name="group_new"),
 | 
						|
    path("group/<int:group_id>/", GroupEditView.as_view(), name="group_edit"),
 | 
						|
    path(
 | 
						|
        "group/<int:group_id>/delete/",
 | 
						|
        GroupDeleteView.as_view(),
 | 
						|
        name="group_delete",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "group/<int:group_id>/detail/",
 | 
						|
        GroupTemplateView.as_view(),
 | 
						|
        name="group_detail",
 | 
						|
    ),
 | 
						|
    # User views
 | 
						|
    path("user/", UserListView.as_view(), name="user_list"),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/mini/",
 | 
						|
        UserMiniView.as_view(),
 | 
						|
        name="user_profile_mini",
 | 
						|
    ),
 | 
						|
    path("user/<int:user_id>/", UserView.as_view(), name="user_profile"),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/pictures/",
 | 
						|
        UserPicturesView.as_view(),
 | 
						|
        name="user_pictures",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/godfathers/",
 | 
						|
        UserGodfathersView.as_view(),
 | 
						|
        name="user_godfathers",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/godfathers/tree/",
 | 
						|
        UserGodfathersTreeView.as_view(),
 | 
						|
        name="user_godfathers_tree",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/godfathers/tree/pict/",
 | 
						|
        UserGodfathersTreePictureView.as_view(),
 | 
						|
        name="user_godfathers_tree_pict",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/godfathers/<int:godfather_id>/<bool:is_father>/delete/",
 | 
						|
        delete_user_godfather,
 | 
						|
        name="user_godfathers_delete",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/edit/",
 | 
						|
        UserUpdateProfileView.as_view(),
 | 
						|
        name="user_edit",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/profile_upload/",
 | 
						|
        UserUploadProfilePictView.as_view(),
 | 
						|
        name="user_profile_upload",
 | 
						|
    ),
 | 
						|
    path("user/<int:user_id>/clubs/", UserClubView.as_view(), name="user_clubs"),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/prefs/",
 | 
						|
        UserPreferencesView.as_view(),
 | 
						|
        name="user_prefs",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/groups/",
 | 
						|
        UserUpdateGroupView.as_view(),
 | 
						|
        name="user_groups",
 | 
						|
    ),
 | 
						|
    path("user/tools/", UserToolsView.as_view(), name="user_tools"),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/account/",
 | 
						|
        UserAccountView.as_view(),
 | 
						|
        name="user_account",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/account/<yyyy:year>/<mm:month>/",
 | 
						|
        UserAccountDetailView.as_view(),
 | 
						|
        name="user_account_detail",
 | 
						|
    ),
 | 
						|
    path("user/<int:user_id>/stats/", UserStatsView.as_view(), name="user_stats"),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/gift/create/",
 | 
						|
        GiftCreateView.as_view(),
 | 
						|
        name="user_gift_create",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "user/<int:user_id>/gift/delete/<int:gift_id>/",
 | 
						|
        GiftDeleteView.as_view(),
 | 
						|
        name="user_gift_delete",
 | 
						|
    ),
 | 
						|
    # File views
 | 
						|
    re_path(r"^file/(?P<popup>popup)?$", FileListView.as_view(), name="file_list"),
 | 
						|
    re_path(
 | 
						|
        r"^file/(?P<file_id>[0-9]+)/(?P<popup>popup)?$",
 | 
						|
        FileView.as_view(),
 | 
						|
        name="file_detail",
 | 
						|
    ),
 | 
						|
    re_path(
 | 
						|
        r"^file/(?P<file_id>[0-9]+)/edit/(?P<popup>popup)?$",
 | 
						|
        FileEditView.as_view(),
 | 
						|
        name="file_edit",
 | 
						|
    ),
 | 
						|
    re_path(
 | 
						|
        r"^file/(?P<file_id>[0-9]+)/prop/(?P<popup>popup)?$",
 | 
						|
        FileEditPropView.as_view(),
 | 
						|
        name="file_prop",
 | 
						|
    ),
 | 
						|
    re_path(
 | 
						|
        r"^file/(?P<file_id>[0-9]+)/delete/(?P<popup>popup)?$",
 | 
						|
        FileDeleteView.as_view(),
 | 
						|
        name="file_delete",
 | 
						|
    ),
 | 
						|
    path("file/moderation/", FileModerationView.as_view(), name="file_moderation"),
 | 
						|
    path(
 | 
						|
        "file/<int:file_id>/moderate/",
 | 
						|
        FileModerateView.as_view(),
 | 
						|
        name="file_moderate",
 | 
						|
    ),
 | 
						|
    path("file/<int:file_id>/download/", send_file, name="download"),
 | 
						|
    # Page views
 | 
						|
    path("page/", PageListView.as_view(), name="page_list"),
 | 
						|
    path("page/create/", PageCreateView.as_view(), name="page_new"),
 | 
						|
    path(
 | 
						|
        "page/<int:page_id>/delete/",
 | 
						|
        PageDeleteView.as_view(),
 | 
						|
        name="page_delete",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "page/<path:page_name>/edit/",
 | 
						|
        PageEditView.as_view(),
 | 
						|
        name="page_edit",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "page/<path:page_name>/prop/",
 | 
						|
        PagePropView.as_view(),
 | 
						|
        name="page_prop",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "page/<path:page_name>/hist/",
 | 
						|
        PageHistView.as_view(),
 | 
						|
        name="page_hist",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "page/<path:page_name>/rev/<int:rev>/",
 | 
						|
        PageRevView.as_view(),
 | 
						|
        name="page_rev",
 | 
						|
    ),
 | 
						|
    path(
 | 
						|
        "page/<path:page_name>/",
 | 
						|
        PageView.as_view(),
 | 
						|
        name="page",
 | 
						|
    ),
 | 
						|
]
 |