2018-10-13 20:01:45 +00:00
|
|
|
"""YtManager URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/1.11/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Import the include() function: from django.conf.urls import url, include
|
|
|
|
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
|
|
|
"""
|
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls import include
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from .views.auth import ExtendedLoginView, RegisterView, RegisterDoneView
|
2018-10-17 21:38:40 +00:00
|
|
|
from .views.index import index, ajax_get_tree, ajax_get_videos, CreateFolderModal, UpdateFolderModal, DeleteFolderModal,\
|
|
|
|
CreateSubscriptionModal, UpdateSubscriptionModal, DeleteSubscriptionModal
|
2018-10-20 22:20:31 +00:00
|
|
|
from .views.actions import SyncNowView, DeleteVideoFilesView, DownloadVideoFilesView, MarkVideoWatchedView, \
|
|
|
|
MarkVideoUnwatchedView
|
2018-10-13 20:01:45 +00:00
|
|
|
from .views import old_views
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
# Authentication URLs
|
|
|
|
path('login/', ExtendedLoginView.as_view(), name='login'),
|
|
|
|
path('register/', RegisterView.as_view(), name='register'),
|
|
|
|
path('register_done/', RegisterDoneView.as_view(), name='register_done'),
|
|
|
|
path('', include('django.contrib.auth.urls')),
|
|
|
|
|
2018-10-14 21:45:08 +00:00
|
|
|
# Ajax
|
2018-10-20 22:20:31 +00:00
|
|
|
path('ajax/action/sync_now/', SyncNowView.as_view(), name='ajax_action_sync_now'),
|
|
|
|
path('ajax/action/delete_video_files/<int:pk>', DeleteVideoFilesView.as_view(), name='ajax_action_delete_video_files'),
|
|
|
|
path('ajax/action/download_video_files/<int:pk>', DownloadVideoFilesView.as_view(), name='ajax_action_download_video_files'),
|
|
|
|
path('ajax/action/mark_video_watched/<int:pk>', MarkVideoWatchedView.as_view(), name='ajax_action_mark_video_watched'),
|
|
|
|
path('ajax/action/mark_video_unwatched/<int:pk>', MarkVideoUnwatchedView.as_view(), name='ajax_action_mark_video_unwatched'),
|
|
|
|
|
2018-10-17 21:38:40 +00:00
|
|
|
path('ajax/get_tree/', ajax_get_tree, name='ajax_get_tree'),
|
|
|
|
path('ajax/get_videos/', ajax_get_videos, name='ajax_get_videos'),
|
2018-10-14 21:45:08 +00:00
|
|
|
|
|
|
|
# Modals
|
|
|
|
path('modal/create_folder/', CreateFolderModal.as_view(), name='modal_create_folder'),
|
|
|
|
path('modal/create_folder/<int:parent_id>/', CreateFolderModal.as_view(), name='modal_create_folder'),
|
|
|
|
path('modal/update_folder/<int:pk>/', UpdateFolderModal.as_view(), name='modal_update_folder'),
|
|
|
|
path('modal/delete_folder/<int:pk>/', DeleteFolderModal.as_view(), name='modal_delete_folder'),
|
|
|
|
|
2018-10-17 21:38:40 +00:00
|
|
|
path('modal/create_subscription/', CreateSubscriptionModal.as_view(), name='modal_create_subscription'),
|
|
|
|
path('modal/create_subscription/<int:parent_folder_id>/', CreateSubscriptionModal.as_view(), name='modal_create_subscription'),
|
|
|
|
path('modal/update_subscription/<int:pk>/', UpdateSubscriptionModal.as_view(), name='modal_update_subscription'),
|
|
|
|
path('modal/delete_subscription/<int:pk>/', DeleteSubscriptionModal.as_view(), name='modal_delete_subscription'),
|
|
|
|
|
2018-10-14 21:45:08 +00:00
|
|
|
# Index
|
2018-10-13 20:01:45 +00:00
|
|
|
path('', index, name='home'),
|
|
|
|
|
2018-10-14 21:45:08 +00:00
|
|
|
|
2018-10-13 20:01:45 +00:00
|
|
|
# Old stuff
|
|
|
|
path('ajax/get_children', old_views.ajax_get_children, name='ajax_get_children'),
|
|
|
|
path('ajax/get_folders', old_views.ajax_get_folders, name='ajax_get_folders'),
|
|
|
|
path('ajax/edit_folder', old_views.ajax_edit_folder, name='ajax_edit_folder'),
|
|
|
|
path('ajax/delete_folder/<int:fid>/', old_views.ajax_delete_folder, name='ajax_delete_folder'),
|
|
|
|
path('ajax/edit_subscription', old_views.ajax_edit_subscription, name='ajax_edit_subscription'),
|
|
|
|
path('ajax/delete_subscription/<int:sid>/', old_views.ajax_delete_subscription, name='ajax_delete_subscription'),
|
|
|
|
path('ajax/list_videos', old_views.ajax_list_videos, name='ajax_list_videos'),
|
|
|
|
# path('', old_views.index, name='home')
|
|
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|