router.go 15 KB

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