router.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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. 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. // 设备控制相关
  274. strategy := engine.Group("/api/longchi/strategy")
  275. ////智能照明(灯杆分组/灯控树) 控制器
  276. //intelligentLighting := strategy.Group("IntelligentLighting")
  277. //{
  278. // intelligentLighting.GET("/detail", controller.IntelligentLighting.Detail)
  279. // intelligentLighting.GET("/list", controller.IntelligentLighting.List)
  280. // intelligentLighting.POST("/relationList", controller.IntelligentLighting.RelationList)
  281. // intelligentLighting.POST("/relation", controller.IntelligentLighting.Relation)
  282. // intelligentLighting.POST("/remove", controller.IntelligentLighting.Remove)
  283. // intelligentLighting.POST("/changHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  284. // intelligentLighting.POST("/get_status", controller.IntelligentLighting.GetStatus)
  285. //}
  286. //照明策略 控制器
  287. lightStrategy := strategy.Group("light")
  288. {
  289. lightStrategy.GET("/detail", controller.LightStrategy.Detail)
  290. lightStrategy.GET("/list", controller.LightStrategy.List)
  291. lightStrategy.POST("/submit", controller.LightStrategy.CreateOrUpdate)
  292. lightStrategy.POST("/remove", controller.LightStrategy.Remove)
  293. }
  294. //照明策略略关联(灯杆分组/灯控树形态) 控制器
  295. lightRelation := strategy.Group("lightrelation")
  296. {
  297. lightRelation.GET("/detail", controller.IntelligentLighting.Detail)
  298. lightRelation.GET("/list", controller.IntelligentLighting.List)
  299. lightRelation.POST("/remove", controller.IntelligentLighting.Remove)
  300. lightRelation.POST("/relationList", controller.IntelligentLighting.RelationList)
  301. lightRelation.POST("/relation", controller.IntelligentLighting.Relation)
  302. lightRelation.POST("/changeHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  303. }
  304. //灯随车走照明控制 控制器
  305. onDemandLightingControl := strategy.Group("onDemandLightingControl")
  306. {
  307. onDemandLightingControl.GET("/detail", controller.OnDemandLightingControl.Detail)
  308. onDemandLightingControl.GET("/list", controller.OnDemandLightingControl.List)
  309. onDemandLightingControl.POST("/relation", controller.OnDemandLightingControl.Relation)
  310. onDemandLightingControl.POST("/changHandSwitch", controller.OnDemandLightingControl.ChangeHandSwitch)
  311. }
  312. //登录校验相关
  313. auth := engine.Group("/api/blade-auth/oauth")
  314. {
  315. auth.POST("/token", system.Auth.Token)
  316. auth.GET("/logout", system.Auth.Logout)
  317. auth.GET("/captcha", system.Auth.Captcha)
  318. auth.GET("/clear-cache", system.Auth.Clear)
  319. }
  320. login := engine.Group("/api/login")
  321. {
  322. login.GET("", system.Auth.Login)
  323. }
  324. //用户
  325. user := engine.Group("/api/blade-user")
  326. {
  327. user.GET("/detail", system.User.GetDetail)
  328. user.GET("/page", system.User.List)
  329. user.POST("/submit", system.User.Submit)
  330. user.POST("/update", system.User.Update)
  331. user.POST("/remove", system.User.Remove)
  332. user.POST("/reset-password", system.User.ResetPwd)
  333. user.POST("/user-list", system.User.GetList)
  334. user.POST("/grant", system.User.Grant)
  335. }
  336. //租户
  337. tenant := engine.Group("/api/blade-system/tenant")
  338. {
  339. tenant.GET("/info", system.Tenant.GetInfo)
  340. tenant.GET("/detail", system.Tenant.GetDetail)
  341. tenant.GET("/page", system.Tenant.List)
  342. tenant.POST("/submit", system.Tenant.Submit)
  343. tenant.POST("/remove", system.Tenant.Remove)
  344. tenant.POST("/select", system.Tenant.GetList)
  345. }
  346. //角色
  347. role := engine.Group("/api/blade-system/role")
  348. {
  349. role.GET("/detail", system.Role.GetDetail)
  350. role.GET("/list", system.Role.List)
  351. role.GET("/tree", system.Role.Tree)
  352. role.POST("/submit", system.Role.Submit)
  353. role.POST("/remove", system.Role.Remove)
  354. role.POST("/grant", system.Role.Grant)
  355. }
  356. //菜单
  357. menu := engine.Group("/api/blade-system/menu")
  358. {
  359. menu.GET("/detail", system.Menu.GetDetail)
  360. menu.GET("list", system.Menu.List)
  361. menu.GET("lazyList", system.Menu.LazyList)
  362. menu.GET("menuList", system.Menu.MenuList)
  363. menu.GET("lazyMenuList", system.Menu.LazyMenuList)
  364. menu.POST("submit", system.Menu.Submit)
  365. menu.POST("remove", system.Menu.Remove)
  366. menu.GET("routes", system.Menu.Routes)
  367. menu.GET("routesExt", system.Menu.RoutesExt)
  368. menu.GET("buttons", system.Menu.Buttons)
  369. menu.GET("tree", system.Menu.Tree)
  370. menu.GET("grantTree", system.Menu.GrantTree)
  371. menu.GET("roleTreeKeys", system.Menu.RoleTreeKeys)
  372. menu.GET("grantTopTree", system.Menu.GrantTopTree)
  373. menu.GET("topTreeKeys", system.Menu.GrantTopTree)
  374. menu.GET("top-menu", system.Menu.TopMenu)
  375. menu.GET("authRoutes", system.Menu.Routes)
  376. }
  377. //工作台
  378. workbench := engine.Group("/api/longchi/report/workbench/")
  379. {
  380. workbench.POST("countdevice", controller.Workbench.CountDevice)
  381. }
  382. }