router.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  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. system "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. handleHistory := engine.Group("/api/longchi/handlehistory")
  17. {
  18. handleHistory.GET("/list", controller.HandleHistory.List)
  19. }
  20. // 设备管理
  21. device := engine.Group("/api/longchi/device/")
  22. //设备模型
  23. device.GET("vender/getModelList", controller.Util.GetModelList)
  24. //桥梁
  25. bridge := device.Group("bridge")
  26. {
  27. bridge.GET("/detail", controller.Bridge.Detail)
  28. bridge.GET("/list", controller.Bridge.List)
  29. bridge.POST("/submit", controller.Bridge.CreateOrUpdate)
  30. bridge.POST("/remove", controller.Bridge.Remove)
  31. bridge.GET("/dropdown", controller.Bridge.GetList)
  32. bridge.POST("/import-excel", controller.Bridge.ImportExcel)
  33. bridge.GET("/export-excel", controller.Bridge.ExportExcel)
  34. bridge.GET("/export-template", controller.Bridge.ExportTemplate)
  35. }
  36. //桥梁传感器 控制器
  37. bridgeSensor := device.Group("bridgesensor")
  38. {
  39. bridgeSensor.GET("/detail", controller.BridgeSensor.Detail)
  40. bridgeSensor.GET("/list", controller.BridgeSensor.List)
  41. bridgeSensor.POST("/submit", controller.BridgeSensor.CreateOrUpdate)
  42. bridgeSensor.POST("/remove", controller.BridgeSensor.Remove)
  43. bridgeSensor.GET("/dropdown", controller.BridgeSensor.GetList)
  44. bridgeSensor.POST("/enable-disable", controller.BridgeSensor.Enable)
  45. bridgeSensor.POST("/import-excel", controller.BridgeSensor.ImportExcel)
  46. bridgeSensor.GET("/export-excel", controller.BridgeSensor.ExportExcel)
  47. bridgeSensor.GET("/export-template", controller.BridgeSensor.ExportTemplate)
  48. }
  49. //摄像头
  50. camera := device.Group("/camera")
  51. {
  52. camera.GET("/detail", controller.Camera.Detail)
  53. camera.GET("/list", controller.Camera.List)
  54. camera.POST("/submit", controller.Camera.CreateOrUpdate)
  55. camera.POST("/remove", controller.Camera.Remove)
  56. camera.POST("/import-excel", controller.Camera.ImportExcel)
  57. camera.GET("/export-excel", controller.Camera.ExportExcel)
  58. camera.GET("/export-template", controller.Camera.ExportTemplate)
  59. camera.POST("/enable-disable", controller.Camera.Enable)
  60. camera.GET("/getList", controller.Camera.GetList)
  61. }
  62. //抓拍单元+卡口 控制器
  63. captureUnit := device.Group("captureunit")
  64. {
  65. captureUnit.GET("/detail", controller.CaptureUint.Detail)
  66. captureUnit.GET("/capture-list", controller.CaptureUint.CaptureList)
  67. captureUnit.POST("/capture-submit", controller.CaptureUint.CaptureSubmit)
  68. captureUnit.GET("/capture-pull-down-list", controller.CaptureUint.CaptureGetList)
  69. captureUnit.GET("/point-list", controller.CaptureUint.PointList)
  70. captureUnit.POST("/point-submit", controller.CaptureUint.PointSubmit)
  71. captureUnit.GET("/point-pull-down-list", controller.CaptureUint.PointGetList)
  72. captureUnit.POST("/remove", controller.CaptureUint.Remove)
  73. }
  74. //垃圾桶台账 控制器
  75. garbage := device.Group("garbage")
  76. {
  77. garbage.GET("/detail", controller.Garbage.Detail)
  78. garbage.GET("/list", controller.Garbage.List)
  79. garbage.POST("/submit", controller.Garbage.CreateOrUpdate)
  80. garbage.POST("/remove", controller.Garbage.Remove)
  81. garbage.GET("/dropdown", controller.Garbage.GetList)
  82. garbage.POST("/import-excel", controller.Garbage.ImportExcel)
  83. garbage.GET("/export-excel", controller.Garbage.ExportExcel)
  84. garbage.GET("/export-template", controller.Garbage.ExportTemplate)
  85. }
  86. //垃圾桶道路分组管理 控制器
  87. garbageWayGroup := device.Group("garbage-way-group")
  88. {
  89. garbageWayGroup.GET("/detail", controller.GarbageWay.Detail)
  90. garbageWayGroup.GET("/list", controller.GarbageWay.List)
  91. garbageWayGroup.POST("/submit", controller.GarbageWay.CreateOrUpdate)
  92. garbageWayGroup.POST("/remove", controller.GarbageWay.Remove)
  93. garbageWayGroup.GET("/getList", controller.GarbageWay.GetList)
  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. manholeCover := device.Group("manholecover")
  183. {
  184. manholeCover.GET("/detail", controller.ManholeCover.Detail)
  185. manholeCover.GET("/list", controller.ManholeCover.List)
  186. manholeCover.POST("/submit", controller.ManholeCover.CreateOrUpdate)
  187. manholeCover.POST("/remove", controller.ManholeCover.Remove)
  188. manholeCover.POST("/setting", controller.ManholeCover.Setting)
  189. manholeCover.GET("/getList", controller.ManholeCover.GetList)
  190. manholeCover.POST("/import-excel", controller.ManholeCover.ImportExcel)
  191. manholeCover.GET("/export-excel", controller.ManholeCover.ExportExcel)
  192. manholeCover.GET("/export-template", controller.ManholeCover.ExportExcel)
  193. manholeCover.GET("/all-list", controller.ManholeCover.AllList)
  194. }
  195. //灯随车走分组 控制器
  196. onDemandGroup := device.Group("on-demand-group")
  197. {
  198. onDemandGroup.GET("/detail", controller.OnDemandGroup.Detail)
  199. onDemandGroup.GET("/list", controller.OnDemandGroup.List)
  200. onDemandGroup.POST("/submit", controller.OnDemandGroup.CreateOrUpdate)
  201. onDemandGroup.POST("/remove", controller.OnDemandGroup.Remove)
  202. onDemandGroup.GET("/getList", controller.OnDemandGroup.GetList)
  203. onDemandGroup.GET("/group-number", controller.OnDemandGroup.GroupNumber)
  204. }
  205. //灯随车走传感器 控制器
  206. onDemandSensor := device.Group("on-demand-sensor")
  207. {
  208. onDemandSensor.GET("/detail", controller.OnDemandSensor.Detail)
  209. onDemandSensor.GET("/list", controller.OnDemandSensor.List)
  210. onDemandSensor.POST("/submit", controller.OnDemandSensor.CreateOrUpdate)
  211. onDemandSensor.POST("/remove", controller.OnDemandSensor.Remove)
  212. onDemandSensor.POST("/import-excel", controller.OnDemandSensor.ImportExcel)
  213. onDemandSensor.GET("/export-excel", controller.OnDemandSensor.ExportExcel)
  214. onDemandSensor.GET("/export-template", controller.OnDemandSensor.ExportTemplate)
  215. }
  216. //环境传感器 控制器
  217. optoSensor := device.Group("optosensor")
  218. {
  219. optoSensor.GET("/detail", controller.OptoSensor.Detail)
  220. optoSensor.GET("/list", controller.OptoSensor.List)
  221. optoSensor.POST("/submit", controller.OptoSensor.CreateOrUpdate)
  222. optoSensor.POST("/remove", controller.OptoSensor.Remove)
  223. optoSensor.GET("/getList", controller.OptoSensor.GetList)
  224. optoSensor.POST("/set-default", controller.OptoSensor.SetDefault)
  225. optoSensor.POST("/import-excel", controller.OptoSensor.ImportExcel)
  226. optoSensor.GET("/export-excel", controller.OptoSensor.ExportExcel)
  227. optoSensor.GET("/export-template", controller.OptoSensor.ExportTemplate)
  228. }
  229. //配电箱基本信息 控制器
  230. switchBox := device.Group("switchbox")
  231. {
  232. switchBox.GET("/detail", controller.SwitchBox.Detail)
  233. switchBox.GET("/list", controller.SwitchBox.List)
  234. switchBox.POST("/submit", controller.SwitchBox.CreateOrUpdate)
  235. switchBox.POST("/remove", controller.SwitchBox.Remove)
  236. switchBox.GET("/getList", controller.SwitchBox.GetList)
  237. switchBox.POST("/import-excel", controller.SwitchBox.ImportExcel)
  238. switchBox.GET("/export-excel", controller.SwitchBox.ExportExcel)
  239. switchBox.GET("/export-template", controller.SwitchBox.ExportTemplate)
  240. }
  241. //变压器基本信息 控制器
  242. transformer := device.Group("transformer")
  243. {
  244. transformer.GET("/detail", controller.Transformer.Detail)
  245. transformer.GET("/list", controller.Transformer.List)
  246. transformer.POST("/submit", controller.Transformer.CreateOrUpdate)
  247. transformer.POST("/remove", controller.Transformer.Remove)
  248. transformer.GET("/getList", controller.Transformer.GetList)
  249. }
  250. //智慧网关基本信息 控制器
  251. wisdomGateway := device.Group("wisdomgateway")
  252. {
  253. wisdomGateway.GET("/detail", controller.WisdomGateway.Detail)
  254. wisdomGateway.GET("/list", controller.WisdomGateway.List)
  255. wisdomGateway.POST("/submit", controller.WisdomGateway.CreateOrUpdate)
  256. wisdomGateway.POST("/remove", controller.WisdomGateway.Remove)
  257. wisdomGateway.GET("/getList", controller.WisdomGateway.GetList)
  258. wisdomGateway.GET("/getRelevanceDetail", controller.WisdomGateway.GetRelevanceDetail)
  259. wisdomGateway.POST("/import-excel", controller.WisdomGateway.ImportExcel)
  260. wisdomGateway.GET("/export-excel", controller.WisdomGateway.ExportExcel)
  261. wisdomGateway.GET("/export-template", controller.WisdomGateway.ExportTemplate)
  262. }
  263. //zigBee网关 控制器
  264. zigbee := device.Group("zigbee")
  265. {
  266. zigbee.GET("/detail", controller.Zigbee.Detail)
  267. zigbee.GET("/list", controller.Zigbee.List)
  268. zigbee.POST("/submit", controller.Zigbee.CreateOrUpdate)
  269. zigbee.POST("/remove", controller.Zigbee.Remove)
  270. zigbee.GET("/getList", controller.Zigbee.GetList)
  271. zigbee.POST("/import-excel", controller.Zigbee.ImportExcel)
  272. zigbee.GET("/export-excel", controller.Zigbee.ExportExcel)
  273. zigbee.GET("/export-template", controller.Zigbee.ExportTemplate)
  274. }
  275. // 设备控制相关
  276. strategy := engine.Group("/api/longchi/strategy")
  277. ////智能照明(灯杆分组/灯控树) 控制器
  278. //intelligentLighting := strategy.Group("IntelligentLighting")
  279. //{
  280. // intelligentLighting.GET("/detail", controller.IntelligentLighting.Detail)
  281. // intelligentLighting.GET("/list", controller.IntelligentLighting.List)
  282. // intelligentLighting.POST("/relationList", controller.IntelligentLighting.RelationList)
  283. // intelligentLighting.POST("/relation", controller.IntelligentLighting.Relation)
  284. // intelligentLighting.POST("/remove", controller.IntelligentLighting.Remove)
  285. // intelligentLighting.POST("/changHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  286. // intelligentLighting.POST("/get_status", controller.IntelligentLighting.GetStatus)
  287. //}
  288. //照明策略 控制器
  289. lightStrategy := strategy.Group("light")
  290. {
  291. lightStrategy.GET("/detail", controller.LightStrategy.Detail)
  292. lightStrategy.GET("/list", controller.LightStrategy.List)
  293. lightStrategy.POST("/submit", controller.LightStrategy.CreateOrUpdate)
  294. lightStrategy.POST("/remove", controller.LightStrategy.Remove)
  295. }
  296. //照明策略略关联(灯杆分组/灯控树形态) 控制器
  297. lightRelation := strategy.Group("lightrelation")
  298. {
  299. lightRelation.GET("/detail", controller.IntelligentLighting.Detail)
  300. lightRelation.GET("/list", controller.IntelligentLighting.List)
  301. lightRelation.POST("/remove", controller.IntelligentLighting.Remove)
  302. lightRelation.POST("/relationList", controller.IntelligentLighting.RelationList)
  303. lightRelation.POST("/relation", controller.IntelligentLighting.Relation)
  304. lightRelation.POST("/changeHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  305. }
  306. //灯随车走照明控制 控制器
  307. onDemandLightingControl := strategy.Group("onDemandLightingControl")
  308. {
  309. onDemandLightingControl.GET("/detail", controller.OnDemandLightingControl.Detail)
  310. onDemandLightingControl.GET("/list", controller.OnDemandLightingControl.List)
  311. onDemandLightingControl.POST("/relation", controller.OnDemandLightingControl.Relation)
  312. onDemandLightingControl.POST("/changHandSwitch", controller.OnDemandLightingControl.ChangeHandSwitch)
  313. }
  314. //登录校验相关
  315. auth := engine.Group("/api/blade-auth/oauth")
  316. {
  317. auth.POST("/token", system.Auth.Token)
  318. auth.GET("/logout", system.Auth.Logout)
  319. auth.GET("/captcha", system.Auth.Captcha)
  320. auth.GET("/clear-cache", system.Auth.Clear)
  321. }
  322. login := engine.Group("/api/login")
  323. {
  324. login.GET("", system.Auth.Login)
  325. }
  326. //用户
  327. user := engine.Group("/api/blade-user")
  328. {
  329. user.GET("/detail", system.User.GetDetail)
  330. user.GET("/page", system.User.List)
  331. user.POST("/submit", system.User.Submit)
  332. user.POST("/update", system.User.Update)
  333. user.POST("/remove", system.User.Remove)
  334. user.POST("/reset-password", system.User.ResetPwd)
  335. user.POST("/user-list", system.User.GetList)
  336. user.POST("/grant", system.User.Grant)
  337. }
  338. //租户
  339. tenant := engine.Group("/api/blade-system/tenant")
  340. {
  341. tenant.GET("/info", system.Tenant.GetInfo)
  342. tenant.GET("/detail", system.Tenant.GetDetail)
  343. tenant.GET("/page", system.Tenant.List)
  344. tenant.POST("/submit", system.Tenant.Submit)
  345. tenant.POST("/remove", system.Tenant.Remove)
  346. tenant.POST("/select", system.Tenant.GetList)
  347. }
  348. //角色
  349. role := engine.Group("/api/blade-system/role")
  350. {
  351. role.GET("/detail", system.Role.GetDetail)
  352. role.GET("/list", system.Role.List)
  353. role.GET("/tree", system.Role.Tree)
  354. role.POST("/submit", system.Role.Submit)
  355. role.POST("/remove", system.Role.Remove)
  356. role.POST("/grant", system.Role.Grant)
  357. }
  358. //菜单
  359. menu := engine.Group("/api/blade-system/menu")
  360. {
  361. menu.GET("/detail", system.Menu.GetDetail)
  362. menu.GET("list", system.Menu.List)
  363. menu.GET("lazyList", system.Menu.LazyList)
  364. menu.GET("menuList", system.Menu.MenuList)
  365. menu.GET("lazyMenuList", system.Menu.LazyMenuList)
  366. menu.POST("submit", system.Menu.Submit)
  367. menu.POST("remove", system.Menu.Remove)
  368. menu.GET("routes", system.Menu.Routes)
  369. menu.GET("routesExt", system.Menu.RoutesExt)
  370. menu.GET("buttons", system.Menu.Buttons)
  371. menu.GET("tree", system.Menu.Tree)
  372. menu.GET("grantTree", system.Menu.GrantTree)
  373. menu.GET("roleTreeKeys", system.Menu.RoleTreeKeys)
  374. menu.GET("grantTopTree", system.Menu.GrantTopTree)
  375. menu.GET("topTreeKeys", system.Menu.GrantTopTree)
  376. menu.GET("top-menu", system.Menu.TopMenu)
  377. menu.GET("authRoutes", system.Menu.Routes)
  378. }
  379. //工作台
  380. workbench := engine.Group("/api/longchi/report/workbench/")
  381. {
  382. workbench.POST("countdevice", controller.Workbench.CountDevice)
  383. workbench.POST("countalarm", controller.Workbench.CountAlarm)
  384. workbench.POST("aqi", controller.Workbench.Aqi)
  385. }
  386. }