urls.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. """AnsjerPush URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/2.1/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.contrib import admin
  16. from django.urls import path
  17. from Controller import DetectController, ShadowController, TestDetectController, EquipmentInfo, DetectControllerV2, \
  18. AiController, TestController, gatewayController
  19. from django.conf.urls import url
  20. from Controller.ComboCron import ComboCronPushController
  21. urlpatterns = [
  22. path('admin/', admin.site.urls),
  23. path('notify/push', DetectController.NotificationView.as_view()),
  24. path('notifyV2/push', DetectControllerV2.NotificationView.as_view()),
  25. path('notifyV2/powerWarningPush', DetectControllerV2.PWnotificationView.as_view()),
  26. path('deviceShadow/update', ShadowController.update_device_shadow),
  27. path('deviceShadow/generateUTK', ShadowController.generate_utk),
  28. path('test/notify/push', TestDetectController.NotificationView.as_view()),
  29. path('eq/del', EquipmentInfo.deleteExpireEquipmentInfo),
  30. path('push/healthCheck', EquipmentInfo.healthCheck),
  31. path('notifyV2/push', DetectControllerV2.NotificationView.as_view()),
  32. url(r'^notifyV2/(?P<operation>.*)$', DetectControllerV2.NotificationView.as_view()),
  33. url(r'^AiService/(?P<operation>.*)$', AiController.AiView.as_view()),
  34. url(r'^gatewayService/(?P<operation>.*)$', gatewayController.GatewayView.as_view()),
  35. url('testDetect/testJpush', TestController.testDetect),
  36. url('testDetect/testApns', TestController.testDetectApns),
  37. url('unicom/device/combo/(?P<operation>.*)$', ComboCronPushController.ComboCronPushView.as_view())
  38. ]