mirror of https://gitee.com/anolis/sysom.git
45 lines
3.6 KiB
Python
45 lines
3.6 KiB
Python
from django.urls import path, include, re_path
|
|
from django.urls.conf import include
|
|
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from apps.hotfix import views
|
|
|
|
router = DefaultRouter()
|
|
router.register('hotfix', views.HotfixAPIView)
|
|
# router.register('releasehotfix', views.ReleaseHotfixListAPIView, basename='releasehotfix')
|
|
|
|
urlpatterns = [
|
|
path('api/v1/hotfix/create_hotfix/', views.HotfixAPIView.as_view({'post': 'create_hotfix'})),
|
|
path('api/v1/hotfix/get_hotfix_list/', views.HotfixAPIView.as_view({'get': 'get_hotfixlist'})),
|
|
path('api/v1/hotfix/get_formal_hotfix_list/', views.HotfixAPIView.as_view({'get': 'get_formal_hotfixlist'})),
|
|
path('api/v1/hotfix/delete_hotfix/', views.HotfixAPIView.as_view({'delete': 'delete_hotfix'})),
|
|
path('api/v1/hotfix/set_formal/', views.HotfixAPIView.as_view({'post': 'set_formal'})),
|
|
path('api/v1/hotfix/upload_patch/', views.SaveUploadFile.as_view()),
|
|
path('api/v1/hotfix/update_building_status/', views.HotfixAPIView.as_view({'post': 'update_building_status'})),
|
|
path('api/v1/hotfix/insert_building_log/', views.HotfixAPIView.as_view({'post': 'insert_building_log'})),
|
|
path('api/v1/hotfix/get_build_log/', views.HotfixAPIView.as_view({'get': 'get_build_log'})),
|
|
path('api/v1/hotfix/sync_building_log/', views.HotfixAPIView.as_view({'post': 'sync_build_log'})),
|
|
path('api/v1/hotfix/sync_kernel/', views.HotfixAPIView.as_view({'post': 'sync_kernel_by_os_type'})),
|
|
path('api/v1/hotfix/update_hotfix_name/', views.HotfixAPIView.as_view({'post': 'update_hotfix_name'})),
|
|
path('api/v1/hotfix/download_hotfix/', views.HotfixAPIView.as_view({'get': 'download_hotfix_file'})),
|
|
path('api/v1/hotfix/download_file/', views.HotfixAPIView.as_view({'get': 'download_file'})),
|
|
path('api/v1/hotfix/create_os_type_relation/', views.HotfixAPIView.as_view({'post': 'insert_os_type_relation'})),
|
|
path('api/v1/hotfix/create_kernel_relation/', views.HotfixAPIView.as_view({'post': 'insert_kernel_version_relation'})),
|
|
path('api/v1/hotfix/get_os_type_relation/', views.HotfixAPIView.as_view({'get': 'get_os_type_relation'})),
|
|
path('api/v1/hotfix/get_kernel_relation/', views.HotfixAPIView.as_view({'get': 'get_kernel_relation'})),
|
|
path('api/v1/hotfix/delete_os_type/', views.HotfixAPIView.as_view({'delete': 'delete_os_type'})),
|
|
path('api/v1/hotfix/delete_kernel_relation/', views.HotfixAPIView.as_view({'delete': 'delete_kernel_version'})),
|
|
path('api/v1/hotfix/update_kernel_relation/', views.HotfixAPIView.as_view({'post': 'update_kernel_version'})),
|
|
path('api/v1/hotfix/update_ostype/', views.HotfixAPIView.as_view({'post': 'update_ostype'})),
|
|
path('api/v1/hotfix/rebuild_hotfix/',views.HotfixAPIView.as_view({'post': 'rebuild_hotfix'})),
|
|
path('api/v1/hotfix/oneclick_deploy/', views.HotfixAPIView.as_view({'post': 'oneclick_deploy'})),
|
|
path('api/v1/hotfix/health_check/', views.HealthViewset.as_view({'get': 'health_check'})),
|
|
path('api/v1/hotfix/get_released_hotfixs/', views.ReleaseHotfixListAPIView.as_view({'get': 'get_filter_released_hotfixs'})),
|
|
path('api/v1/hotfix/insert_released_hotfix_info/', views.ReleaseHotfixListAPIView.as_view({'post': 'add_one_released_hotfix'})),
|
|
path('api/v1/hotfix/import_from_tablefiles/', views.ReleaseHotfixListAPIView.as_view({'post': 'import_from_table_v2'})),
|
|
path('api/v1/hotfix/update_put_released_hotfix_info/<int:pk>/', views.ReleaseHotfixListAPIView.as_view({'put': 'update_released_hotfix_record'})),
|
|
path('api/v1/hotfix/update_patch_released_hotfix_info/<int:pk>/', views.ReleaseHotfixListAPIView.as_view({'patch': 'update_released_hotfix_record'})),
|
|
path('api/v1/', include(router.urls)),
|
|
]
|