urls.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. from django.contrib.auth.decorators import login_required
  2. from django.contrib.auth.views import LogoutView
  3. from django.urls import path, include, re_path
  4. from django_spaghetti.views import Plate
  5. from rest_framework import routers
  6. from schema_graph.views import Schema
  7. from sharix_admin.apiviews import *
  8. from sharix_admin.views import *
  9. # START Backend
  10. # TODO: move to backend repo
  11. router = routers.SimpleRouter()
  12. router.register(r'sharix-users', SharixUserMVS)
  13. router.register(r'group', GroupMVS)
  14. # END Backend
  15. app_name = "sharix_admin"
  16. urlpatterns = [
  17. # Главная
  18. path('', login_required(MainView.as_view()), name='main'),
  19. # --- Ниже страницы, требующие ревью ---
  20. path('transactions/', login_required(TransactionsView.as_view()), name='transactions'),
  21. path('payment/', login_required(PaymentView.as_view()), name='payment'),
  22. # Страница "Сотрудничество" (запрос на подключение к сервису)
  23. path('cooperate/', login_required(CooperateView.as_view()), name='cooperate'),
  24. # Страница "О партнере"
  25. path('partner/', login_required(PartnerDetailView.as_view()), name='partner_detail'),
  26. path('partner/edit/', login_required(PartnerEditView.as_view()), name='partner_edit'),
  27. path('partner/doc/<str:doc_code>/upload', login_required(PartnerDocUploadView.as_view()),
  28. name='partner_doc_upload'),
  29. path('partner/doc/<str:doc_code>', login_required(PartnerDocView.as_view()), name='partner_doc'),
  30. path('partners/', login_required(PartnersListView.as_view()), name='partners'),
  31. path('resource/', login_required(ResourceListView.as_view()), name='resource'),
  32. path('provider/', login_required(ProviderListView.as_view()), name='provider'),
  33. path('service_tariff/', login_required(ServiceTariffListView.as_view()), name='service_tariff'),
  34. path('service_tariff/add/', login_required(ServiceTariffCreate.as_view()), name='service_tariff/add/'),
  35. path('service_tariff/edit/<int:pk>', login_required(ServiceTariffUpdateView.as_view()),
  36. name='service_tariff/edit/'),
  37. path('service_category/', login_required(ServiceCategoryListView.as_view()), name='service_category'),
  38. path('service_category/edit/<int:pk>', login_required(ServiceCategoryUpdateView.as_view()), name='service_category/edit/'),
  39. path('service_category/add/', login_required(ServiceCategoryCreate.as_view()), name='service_category/add/'),
  40. path('service_category/delete/<int:pk>', login_required(ServiceCategoryDelete.as_view()), name='service_category/delete/'),
  41. path('service_information/add/', login_required(ServiceInformationCreate.as_view()),
  42. name='service_information-add'),
  43. path('service_information/edit/<int:pk>', login_required(ServiceInformationUpdateView.as_view()),
  44. name='service_information/edit/'),
  45. path('service/', ServiceListView.as_view(), name='service'),
  46. # path('partner_information/', login_required(PartnerInfoView.as_view()), name='partner_information/'),
  47. # path('partner_information/add/', login_required(PartnerInformationCreate.as_view()), name='partner_information/add/'),
  48. # path('partner_information/edit/<int:pk>', login_required(PartnerInformationUpdateView.as_view()), name='partner_information/edit/'),
  49. path('user_information', login_required(UserListView.as_view()), name='user_information'),
  50. # TODO: Посмотреть, может тоже нужно переместить
  51. path('senderphone/', PhoneSender.as_view()),
  52. # schemas
  53. path('schemav1/', login_required(Schema.as_view()), name='schemav1'),
  54. path('schemav2/', login_required(Plate.as_view()), name='schemav2'),
  55. path('schemav3/', schema_v3, name='schema'),
  56. re_path(r'^redoc/$', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
  57. # START Backend
  58. # TODO: move to backend repo
  59. # Регистрация / Вход / Выход
  60. path('auth/signup/', ShariXSignUpView.as_view(), name="auth_signup"),
  61. path('auth/login/', ShariXLoginView.as_view(), name='auth_login'),
  62. path('auth/logout/', login_required(LogoutView.as_view()), name="auth_logout"),
  63. path('auth/reset-password/', ShariXResetPasswordView.as_view(), name='auth_reset_password'),
  64. path('transactions/<int:trans_id>/', trans_id, name='transid'),
  65. path('balance/', balance, name='balance'),
  66. path('partners/change_status/', change_partners_status, name='partners/change_status'),
  67. path('resource/change_status/', change_resource_status, name='resource/change_status'),
  68. path('provider/change_status/', change_provider_status, name='provider/change_status'),
  69. path('service/change_status/', change_service_status, name='service/change_status'),
  70. path('api/v1/auth/', include('djoser.urls.authtoken'), name="api-auth"),
  71. path('api/v1/platform/', include(router.urls), name="api-platform"),
  72. path('by_phone/<phone_number>/', get_user_by_phone_number, name='get_user_by_phone_number'),
  73. # END Backend
  74. ]