router.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/controller"
  5. "iot_manager_service/app/middleware"
  6. )
  7. func InitRouter(engine *gin.Engine) {
  8. // 跨域处理
  9. engine.Use(middleware.Cors())
  10. // 登录验证中间件
  11. engine.Use(middleware.CheckLogin())
  12. // 校验权限
  13. engine.Use(middleware.CheckAuth())
  14. // 设备管理
  15. device := engine.Group("/api/longchi/device/")
  16. //桥梁
  17. bridge := device.Group("bridge")
  18. {
  19. bridge.GET("/detail", controller.Bridge.Detail)
  20. bridge.GET("/list", controller.Bridge.List)
  21. bridge.POST("/submit", controller.Bridge.CreateOrUpdate)
  22. bridge.POST("/remove", controller.Bridge.Remove)
  23. bridge.GET("/dropdown", controller.Bridge.GetList)
  24. bridge.POST("/import-excel", controller.Bridge.ImportExcel)
  25. bridge.GET("/export-excel", controller.Bridge.ExportExcel)
  26. bridge.GET("/export-template", controller.Bridge.ExportTemplate)
  27. }
  28. //桥梁传感器 控制器
  29. bridgeSensor := device.Group("bridgesensor")
  30. {
  31. bridgeSensor.GET("/detail", controller.BridgeSensor.Detail)
  32. bridgeSensor.GET("/list", controller.BridgeSensor.List)
  33. bridgeSensor.POST("/submit", controller.BridgeSensor.CreateOrUpdate)
  34. bridgeSensor.POST("/remove", controller.BridgeSensor.Remove)
  35. bridgeSensor.GET("/dropdown", controller.BridgeSensor.GetList)
  36. bridgeSensor.POST("/enable-disable", controller.BridgeSensor.Enable)
  37. bridgeSensor.POST("/import-excel", controller.BridgeSensor.ImportExcel)
  38. bridgeSensor.GET("/export-excel", controller.BridgeSensor.ExportExcel)
  39. bridgeSensor.GET("/export-template", controller.BridgeSensor.ExportTemplate)
  40. }
  41. //摄像头
  42. camera := device.Group("/camera")
  43. {
  44. camera.GET("/detail", controller.Camera.Detail)
  45. camera.GET("/list", controller.Camera.List)
  46. camera.POST("/submit", controller.Camera.CreateOrUpdate)
  47. camera.POST("/remove", controller.Camera.Remove)
  48. camera.POST("/import-excel", controller.Camera.ImportExcel)
  49. camera.GET("/export-excel", controller.Camera.ExportExcel)
  50. camera.GET("/export-template", controller.Camera.ExportTemplate)
  51. camera.POST("/enable-disable", controller.Camera.Enable)
  52. camera.GET("/getList", controller.Camera.GetList)
  53. }
  54. //抓拍单元+卡口 控制器
  55. captureUnit := device.Group("captureunit")
  56. {
  57. captureUnit.GET("/detail", controller.CaptureUint.Detail)
  58. captureUnit.GET("/capture-list", controller.CaptureUint.CaptureList)
  59. captureUnit.POST("/capture-submit", controller.CaptureUint.CaptureSubmit)
  60. captureUnit.GET("/capture-pull-down-list", controller.CaptureUint.CaptureGetList)
  61. captureUnit.GET("/point-list", controller.CaptureUint.PointList)
  62. captureUnit.POST("/point-submit", controller.CaptureUint.PointSubmit)
  63. captureUnit.GET("/point-pull-down-list", controller.CaptureUint.PointGetList)
  64. captureUnit.POST("/remove", controller.CaptureUint.Remove)
  65. }
  66. //垃圾桶台账 控制器
  67. garbage := device.Group("garbage")
  68. {
  69. garbage.GET("/detail", controller.Garbage.Detail)
  70. garbage.GET("/list", controller.Garbage.List)
  71. garbage.POST("/submit", controller.Garbage.CreateOrUpdate)
  72. garbage.POST("/remove", controller.Garbage.Remove)
  73. garbage.GET("/dropdown", controller.Garbage.GetList)
  74. garbage.POST("/import-excel", controller.Garbage.ImportExcel)
  75. garbage.GET("/export-excel", controller.Garbage.ExportExcel)
  76. garbage.GET("/export-template", controller.Garbage.ExportTemplate)
  77. }
  78. //垃圾桶道路分组管理 控制器
  79. garbageWayGroup := device.Group("garbage-way-group")
  80. {
  81. garbageWayGroup.GET("/detail", controller.GarbageWay.Detail)
  82. garbageWayGroup.GET("/list", controller.GarbageWay.List)
  83. garbageWayGroup.POST("/submit", controller.GarbageWay.CreateOrUpdate)
  84. garbageWayGroup.POST("/remove", controller.GarbageWay.Remove)
  85. garbageWayGroup.GET("/getList", controller.GarbageWay.GetList)
  86. }
  87. //灯随车走灯杆关联分组 控制器
  88. groupRelevanceLampPole := device.Group("group-relevance-lamppole")
  89. {
  90. groupRelevanceLampPole.GET("/detail", controller.GroupRelevanceLampPole.Detail)
  91. groupRelevanceLampPole.GET("/list", controller.GroupRelevanceLampPole.List)
  92. groupRelevanceLampPole.POST("/setting", controller.GroupRelevanceLampPole.Setting)
  93. groupRelevanceLampPole.POST("/remove", controller.GroupRelevanceLampPole.Remove)
  94. }
  95. //信息屏基本信息 控制器
  96. infoBoard := device.Group("infoboard")
  97. {
  98. infoBoard.GET("/detail", controller.InfoBoard.Detail)
  99. infoBoard.GET("/list", controller.InfoBoard.List)
  100. infoBoard.POST("/submit", controller.InfoBoard.CreateOrUpdate)
  101. infoBoard.POST("/remove", controller.InfoBoard.Remove)
  102. infoBoard.POST("/import-excel", controller.InfoBoard.ImportExcel)
  103. infoBoard.GET("/export-excel", controller.InfoBoard.ExportExcel)
  104. infoBoard.GET("/export-template", controller.InfoBoard.ExportTemplate)
  105. infoBoard.GET("/system-operation", controller.InfoBoard.CreateOrUpdate)
  106. infoBoard.POST("/enable-disable", controller.InfoBoard.Enable)
  107. infoBoard.POST("/show-setting", controller.InfoBoard.ShowSetting)
  108. }
  109. //IP广播基本信息 控制器
  110. ipBroadCast := device.Group("ipbroadcast")
  111. {
  112. ipBroadCast.GET("/detail", controller.IpBroadcast.Detail)
  113. ipBroadCast.GET("/list", controller.IpBroadcast.List)
  114. ipBroadCast.POST("/submit", controller.IpBroadcast.CreateOrUpdate)
  115. ipBroadCast.POST("/remove", controller.IpBroadcast.Remove)
  116. ipBroadCast.POST("/import-excel", controller.IpBroadcast.ImportExcel)
  117. ipBroadCast.GET("/export-excel", controller.IpBroadcast.ExportExcel)
  118. ipBroadCast.GET("/export-template", controller.IpBroadcast.ExportTemplate)
  119. ipBroadCast.POST("/setting-volume", controller.IpBroadcast.SettingVolume)
  120. }
  121. //一键报警服务表 控制器
  122. Alarm := device.Group("akeyalarmserve")
  123. {
  124. Alarm.GET("/detail", controller.Alarm.Detail)
  125. Alarm.GET("/list", controller.Alarm.List)
  126. Alarm.POST("/submit", controller.Alarm.CreateOrUpdate)
  127. Alarm.POST("/remove", controller.Alarm.Remove)
  128. Alarm.GET("/getList", controller.Alarm.GetList)
  129. Alarm.POST("/import-excel", controller.Alarm.ImportExcel)
  130. Alarm.GET("/export-excel", controller.Alarm.ExportExcel)
  131. Alarm.GET("/export-template", controller.Alarm.ExportTemplate)
  132. }
  133. //一键报警终端表 控制器
  134. AlarmTerminal := device.Group("akeyalarmterminal")
  135. {
  136. AlarmTerminal.GET("/detail", controller.AlarmTerminal.Detail)
  137. AlarmTerminal.GET("/list", controller.AlarmTerminal.List)
  138. AlarmTerminal.POST("/submit", controller.AlarmTerminal.CreateOrUpdate)
  139. AlarmTerminal.POST("/remove", controller.AlarmTerminal.Remove)
  140. AlarmTerminal.POST("/import-excel", controller.AlarmTerminal.ImportExcel)
  141. AlarmTerminal.GET("/export-excel", controller.AlarmTerminal.ExportExcel)
  142. AlarmTerminal.GET("/export-template", controller.AlarmTerminal.ExportTemplate)
  143. }
  144. //灯杆基本信息 控制器
  145. lampPole := device.Group("lamppole")
  146. {
  147. lampPole.GET("/detail", controller.LampPole.Detail)
  148. lampPole.GET("/getRelevanceDetail", controller.LampPole.GetRelevanceDetail)
  149. lampPole.GET("/list", controller.LampPole.List)
  150. lampPole.POST("/submit", controller.LampPole.CreateOrUpdate)
  151. lampPole.POST("/remove", controller.LampPole.Remove)
  152. lampPole.GET("/getList", controller.LampPole.GetList)
  153. lampPole.POST("/import-excel", controller.LampPole.ImportExcel)
  154. lampPole.GET("/export-excel", controller.LampPole.ExportExcel)
  155. lampPole.GET("/export-template", controller.LampPole.ExportTemplate)
  156. }
  157. //灯杆分组
  158. lampPoleGroup := device.Group("/lamppolegroup")
  159. {
  160. lampPoleGroup.GET("/detail", controller.LampPoleGroup.Detail)
  161. lampPoleGroup.GET("/list", controller.LampPoleGroup.List)
  162. lampPoleGroup.POST("/submit", controller.LampPoleGroup.CreateOrUpdate)
  163. lampPoleGroup.POST("/remove", controller.LampPoleGroup.Remove)
  164. lampPoleGroup.GET("/getList", controller.LampPoleGroup.GetList)
  165. lampPoleGroup.GET("/filtration-list", controller.LampPoleGroup.FiltrationList)
  166. lampPoleGroup.GET("/getTree", controller.LampPoleGroup.GetTree)
  167. }
  168. //灯控基本信息 控制器
  169. lightControl := device.Group("lightcontrol")
  170. {
  171. lightControl.GET("/detail", controller.Light.Detail)
  172. lightControl.GET("/list", controller.Light.List)
  173. lightControl.POST("/submit", controller.Light.CreateOrUpdate)
  174. lightControl.POST("/remove", controller.Light.Remove)
  175. lightControl.GET("/getLampPoleList", controller.Light.GetList)
  176. lightControl.POST("/import-excel", controller.Light.ImportExcel)
  177. lightControl.GET("/export-excel", controller.Light.ExportExcel)
  178. lightControl.GET("/export-template", controller.Light.ExportTemplate)
  179. lightControl.POST("/enable-disable", controller.Light.Enable)
  180. lightControl.POST("/off-one", controller.Light.Switch) //todo 在strategy中
  181. }
  182. strategy := device.Group("/api/longchi/strategy")
  183. lightrelation := strategy.Group("lightrelation")
  184. {
  185. lightrelation.POST("/changeHandSwitch", controller.Light.ChangeHandSwitch)
  186. }
  187. //井盖基本信息 控制器
  188. manholeCover := device.Group("manholecover")
  189. {
  190. manholeCover.GET("/detail", controller.ManholeCover.Detail)
  191. manholeCover.GET("/list", controller.ManholeCover.List)
  192. manholeCover.POST("/submit", controller.ManholeCover.CreateOrUpdate)
  193. manholeCover.POST("/remove", controller.ManholeCover.Remove)
  194. manholeCover.POST("/setting", controller.ManholeCover.Setting)
  195. manholeCover.GET("/getList", controller.ManholeCover.GetList)
  196. manholeCover.POST("/import-excel", controller.ManholeCover.ImportExcel)
  197. manholeCover.GET("/export-excel", controller.ManholeCover.ExportExcel)
  198. manholeCover.GET("/export-template", controller.ManholeCover.ExportExcel)
  199. manholeCover.GET("/all-list", controller.ManholeCover.AllList)
  200. }
  201. //灯随车走分组 控制器
  202. onDemandGroup := device.Group("on-demand-group")
  203. {
  204. onDemandGroup.GET("/detail", controller.OnDemandGroup.Detail)
  205. onDemandGroup.GET("/list", controller.OnDemandGroup.List)
  206. onDemandGroup.POST("/submit", controller.OnDemandGroup.CreateOrUpdate)
  207. onDemandGroup.POST("/remove", controller.OnDemandGroup.Remove)
  208. onDemandGroup.GET("/getList", controller.OnDemandGroup.GetList)
  209. onDemandGroup.GET("/group-number", controller.OnDemandGroup.GroupNumber)
  210. }
  211. //灯随车走传感器 控制器
  212. onDemandSensor := device.Group("on-demand-sensor")
  213. {
  214. onDemandSensor.GET("/detail", controller.OnDemandSensor.Detail)
  215. onDemandSensor.GET("/list", controller.OnDemandSensor.List)
  216. onDemandSensor.POST("/submit", controller.OnDemandSensor.CreateOrUpdate)
  217. onDemandSensor.POST("/remove", controller.OnDemandSensor.Remove)
  218. onDemandSensor.POST("/import-excel", controller.OnDemandSensor.ImportExcel)
  219. onDemandSensor.GET("/export-excel", controller.OnDemandSensor.ExportExcel)
  220. onDemandSensor.GET("/export-template", controller.OnDemandSensor.ExportTemplate)
  221. }
  222. //环境传感器 控制器
  223. optoSensor := device.Group("optosensor")
  224. {
  225. optoSensor.GET("/detail", controller.OptoSensor.Detail)
  226. optoSensor.GET("/list", controller.OptoSensor.List)
  227. optoSensor.POST("/submit", controller.OptoSensor.CreateOrUpdate)
  228. optoSensor.POST("/remove", controller.OptoSensor.Remove)
  229. optoSensor.GET("/getList", controller.OptoSensor.GetList)
  230. optoSensor.POST("/set-default", controller.OptoSensor.SetDefault)
  231. optoSensor.POST("/import-excel", controller.OptoSensor.ImportExcel)
  232. optoSensor.GET("/export-excel", controller.OptoSensor.ExportExcel)
  233. optoSensor.GET("/export-template", controller.OptoSensor.ExportTemplate)
  234. }
  235. //配电箱基本信息 控制器
  236. switchBox := device.Group("switchbox")
  237. {
  238. switchBox.GET("/detail", controller.SwitchBox.Detail)
  239. switchBox.GET("/list", controller.SwitchBox.List)
  240. switchBox.POST("/submit", controller.SwitchBox.CreateOrUpdate)
  241. switchBox.POST("/remove", controller.SwitchBox.Remove)
  242. switchBox.GET("/getList", controller.SwitchBox.GetList)
  243. switchBox.POST("/import-excel", controller.SwitchBox.ImportExcel)
  244. switchBox.GET("/export-excel", controller.SwitchBox.ExportExcel)
  245. switchBox.GET("/export-template", controller.SwitchBox.ExportTemplate)
  246. }
  247. //变压器基本信息 控制器
  248. transformer := device.Group("transformer")
  249. {
  250. transformer.GET("/detail", controller.Transformer.Detail)
  251. transformer.GET("/list", controller.Transformer.List)
  252. transformer.POST("/submit", controller.Transformer.CreateOrUpdate)
  253. transformer.POST("/remove", controller.Transformer.Remove)
  254. transformer.GET("/getList", controller.Transformer.GetList)
  255. }
  256. //智慧网关基本信息 控制器
  257. wisdomGateway := device.Group("wisdomgateway")
  258. {
  259. wisdomGateway.GET("/detail", controller.WisdomGateway.Detail)
  260. wisdomGateway.GET("/list", controller.WisdomGateway.List)
  261. wisdomGateway.POST("/submit", controller.WisdomGateway.CreateOrUpdate)
  262. wisdomGateway.POST("/remove", controller.WisdomGateway.Remove)
  263. wisdomGateway.GET("/getList", controller.WisdomGateway.GetList)
  264. wisdomGateway.GET("/getRelevanceDetail", controller.WisdomGateway.GetRelevanceDetail)
  265. wisdomGateway.POST("/import-excel", controller.WisdomGateway.ImportExcel)
  266. wisdomGateway.GET("/export-excel", controller.WisdomGateway.ExportExcel)
  267. wisdomGateway.GET("/export-template", controller.WisdomGateway.ExportTemplate)
  268. }
  269. //zigBee网关 控制器
  270. zigbee := device.Group("zigbee")
  271. {
  272. zigbee.GET("/detail", controller.Zigbee.Detail)
  273. zigbee.GET("/list", controller.Zigbee.List)
  274. zigbee.POST("/submit", controller.Zigbee.CreateOrUpdate)
  275. zigbee.POST("/remove", controller.Zigbee.Remove)
  276. zigbee.GET("/getList", controller.Zigbee.GetList)
  277. zigbee.POST("/import-excel", controller.Zigbee.ImportExcel)
  278. zigbee.GET("/export-excel", controller.Zigbee.ExportExcel)
  279. zigbee.GET("/export-template", controller.Zigbee.ExportTemplate)
  280. }
  281. }