router.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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. vender := device.Group("vender")
  24. {
  25. vender.GET("/getModelList", controller.Util.GetModelList)
  26. vender.GET("/getTypeList", controller.Util.GetModelList)
  27. }
  28. //公共方法
  29. share := device.Group("/api/longchi/share")
  30. {
  31. share.GET("/tenantcode/getTenantCode", controller.Util.GetTenantCode)
  32. }
  33. //桥梁
  34. bridge := device.Group("bridge")
  35. {
  36. bridge.GET("/detail", controller.Bridge.Detail)
  37. bridge.GET("/list", controller.Bridge.List)
  38. bridge.POST("/submit", controller.Bridge.CreateOrUpdate)
  39. bridge.POST("/remove", controller.Bridge.Remove)
  40. bridge.GET("/dropdown", controller.Bridge.GetList)
  41. bridge.POST("/import-excel", controller.Bridge.ImportExcel)
  42. bridge.GET("/export-excel", controller.Bridge.ExportExcel)
  43. bridge.GET("/export-template", controller.Bridge.ExportTemplate)
  44. }
  45. //桥梁传感器 控制器
  46. bridgeSensor := device.Group("bridgesensor")
  47. {
  48. bridgeSensor.GET("/detail", controller.BridgeSensor.Detail)
  49. bridgeSensor.GET("/list", controller.BridgeSensor.List)
  50. bridgeSensor.POST("/submit", controller.BridgeSensor.CreateOrUpdate)
  51. bridgeSensor.POST("/remove", controller.BridgeSensor.Remove)
  52. bridgeSensor.GET("/dropdown", controller.BridgeSensor.GetList)
  53. bridgeSensor.POST("/enable-disable", controller.BridgeSensor.Enable)
  54. bridgeSensor.POST("/import-excel", controller.BridgeSensor.ImportExcel)
  55. bridgeSensor.GET("/export-excel", controller.BridgeSensor.ExportExcel)
  56. bridgeSensor.GET("/export-template", controller.BridgeSensor.ExportTemplate)
  57. }
  58. //摄像头
  59. camera := device.Group("/camera")
  60. {
  61. camera.GET("/detail", controller.Camera.Detail)
  62. camera.GET("/list", controller.Camera.List)
  63. camera.POST("/submit", controller.Camera.CreateOrUpdate)
  64. camera.POST("/remove", controller.Camera.Remove)
  65. camera.POST("/import-excel", controller.Camera.ImportExcel)
  66. camera.GET("/export-excel", controller.Camera.ExportExcel)
  67. camera.GET("/export-template", controller.Camera.ExportTemplate)
  68. camera.POST("/enable-disable", controller.Camera.Enable)
  69. camera.GET("/getList", controller.Camera.GetList)
  70. }
  71. //抓拍单元+卡口 控制器
  72. captureUnit := device.Group("captureunit")
  73. {
  74. captureUnit.GET("/detail", controller.CaptureUint.Detail)
  75. captureUnit.GET("/capture-list", controller.CaptureUint.CaptureList)
  76. captureUnit.POST("/capture-submit", controller.CaptureUint.CaptureSubmit)
  77. captureUnit.GET("/capture-pull-down-list", controller.CaptureUint.CaptureGetList)
  78. captureUnit.GET("/point-list", controller.CaptureUint.PointList)
  79. captureUnit.POST("/point-submit", controller.CaptureUint.PointSubmit)
  80. captureUnit.GET("/point-pull-down-list", controller.CaptureUint.PointGetList)
  81. captureUnit.POST("/remove", controller.CaptureUint.Remove)
  82. }
  83. //垃圾桶台账 控制器
  84. garbage := device.Group("garbage")
  85. {
  86. garbage.GET("/detail", controller.Garbage.Detail)
  87. garbage.GET("/list", controller.Garbage.List)
  88. garbage.POST("/submit", controller.Garbage.CreateOrUpdate)
  89. garbage.POST("/remove", controller.Garbage.Remove)
  90. garbage.GET("/dropdown", controller.Garbage.GetList)
  91. garbage.POST("/import-excel", controller.Garbage.ImportExcel)
  92. garbage.GET("/export-excel", controller.Garbage.ExportExcel)
  93. garbage.GET("/export-template", controller.Garbage.ExportTemplate)
  94. }
  95. //垃圾桶道路分组管理 控制器
  96. garbageWayGroup := device.Group("garbage-way-group")
  97. {
  98. garbageWayGroup.GET("/detail", controller.GarbageWay.Detail)
  99. garbageWayGroup.GET("/list", controller.GarbageWay.List)
  100. garbageWayGroup.POST("/submit", controller.GarbageWay.CreateOrUpdate)
  101. garbageWayGroup.POST("/remove", controller.GarbageWay.Remove)
  102. garbageWayGroup.GET("/getList", controller.GarbageWay.GetList)
  103. }
  104. //信息屏基本信息 控制器
  105. infoBoard := device.Group("infoboard")
  106. {
  107. infoBoard.GET("/detail", controller.InfoBoard.Detail)
  108. infoBoard.GET("/list", controller.InfoBoard.List)
  109. infoBoard.POST("/submit", controller.InfoBoard.CreateOrUpdate)
  110. infoBoard.POST("/remove", controller.InfoBoard.Remove)
  111. infoBoard.POST("/import-excel", controller.InfoBoard.ImportExcel)
  112. infoBoard.GET("/export-excel", controller.InfoBoard.ExportExcel)
  113. infoBoard.GET("/export-template", controller.InfoBoard.ExportTemplate)
  114. infoBoard.GET("/system-operation", controller.InfoBoard.CreateOrUpdate)
  115. infoBoard.POST("/enable-disable", controller.InfoBoard.Enable)
  116. infoBoard.POST("/show-setting", controller.InfoBoard.ShowSetting)
  117. }
  118. //IP广播基本信息 控制器
  119. ipBroadCast := device.Group("ipbroadcast")
  120. {
  121. ipBroadCast.GET("/detail", controller.IpBroadcast.Detail)
  122. ipBroadCast.GET("/list", controller.IpBroadcast.List)
  123. ipBroadCast.POST("/submit", controller.IpBroadcast.CreateOrUpdate)
  124. ipBroadCast.POST("/remove", controller.IpBroadcast.Remove)
  125. ipBroadCast.POST("/import-excel", controller.IpBroadcast.ImportExcel)
  126. ipBroadCast.GET("/export-excel", controller.IpBroadcast.ExportExcel)
  127. ipBroadCast.GET("/export-template", controller.IpBroadcast.ExportTemplate)
  128. ipBroadCast.POST("/setting-volume", controller.IpBroadcast.SettingVolume)
  129. }
  130. //一键报警服务表 控制器
  131. Alarm := device.Group("akeyalarmserve")
  132. {
  133. Alarm.GET("/detail", controller.Alarm.Detail)
  134. Alarm.GET("/list", controller.Alarm.List)
  135. Alarm.POST("/submit", controller.Alarm.CreateOrUpdate)
  136. Alarm.POST("/remove", controller.Alarm.Remove)
  137. Alarm.GET("/getList", controller.Alarm.GetList)
  138. Alarm.POST("/import-excel", controller.Alarm.ImportExcel)
  139. Alarm.GET("/export-excel", controller.Alarm.ExportExcel)
  140. Alarm.GET("/export-template", controller.Alarm.ExportTemplate)
  141. }
  142. //一键报警终端表 控制器
  143. AlarmTerminal := device.Group("akeyalarmterminal")
  144. {
  145. AlarmTerminal.GET("/detail", controller.AlarmTerminal.Detail)
  146. AlarmTerminal.GET("/list", controller.AlarmTerminal.List)
  147. AlarmTerminal.POST("/submit", controller.AlarmTerminal.CreateOrUpdate)
  148. AlarmTerminal.POST("/remove", controller.AlarmTerminal.Remove)
  149. AlarmTerminal.POST("/import-excel", controller.AlarmTerminal.ImportExcel)
  150. AlarmTerminal.GET("/export-excel", controller.AlarmTerminal.ExportExcel)
  151. AlarmTerminal.GET("/export-template", controller.AlarmTerminal.ExportTemplate)
  152. }
  153. //灯杆基本信息 控制器
  154. lampPole := device.Group("lamppole")
  155. {
  156. lampPole.GET("/detail", controller.LampPole.Detail)
  157. lampPole.GET("/getRelevanceDetail", controller.LampPole.GetRelevanceDetail)
  158. lampPole.GET("/list", controller.LampPole.List)
  159. lampPole.POST("/submit", controller.LampPole.CreateOrUpdate)
  160. lampPole.POST("/remove", controller.LampPole.Remove)
  161. lampPole.GET("/getList", controller.LampPole.GetList)
  162. lampPole.POST("/import-excel", controller.LampPole.ImportExcel)
  163. lampPole.GET("/export-excel", controller.LampPole.ExportExcel)
  164. lampPole.GET("/export-template", controller.LampPole.ExportTemplate)
  165. }
  166. //灯杆分组
  167. lampPoleGroup := device.Group("/lamppolegroup")
  168. {
  169. lampPoleGroup.GET("/detail", controller.LampPoleGroup.Detail)
  170. lampPoleGroup.GET("/list", controller.LampPoleGroup.List)
  171. lampPoleGroup.POST("/submit", controller.LampPoleGroup.CreateOrUpdate)
  172. lampPoleGroup.POST("/remove", controller.LampPoleGroup.Remove)
  173. lampPoleGroup.GET("/getList", controller.LampPoleGroup.GetList)
  174. lampPoleGroup.GET("/filtration-list", controller.LampPoleGroup.FiltrationList)
  175. lampPoleGroup.GET("/getTree", controller.LampPoleGroup.GetTree)
  176. }
  177. //灯控基本信息 控制器
  178. lightControl := device.Group("lightcontrol")
  179. {
  180. lightControl.GET("/detail", controller.Light.Detail)
  181. lightControl.GET("/list", controller.Light.List)
  182. lightControl.POST("/submit", controller.Light.CreateOrUpdate)
  183. lightControl.POST("/remove", controller.Light.Remove)
  184. lightControl.GET("/getLampPoleList", controller.Light.GetList)
  185. lightControl.POST("/import-excel", controller.Light.ImportExcel)
  186. lightControl.GET("/export-excel", controller.Light.ExportExcel)
  187. lightControl.GET("/export-template", controller.Light.ExportTemplate)
  188. lightControl.POST("/enable-disable", controller.Light.Enable)
  189. lightControl.POST("/off-one", controller.Light.Switch) //todo 在strategy中
  190. }
  191. manholeCover := device.Group("manholecover")
  192. {
  193. manholeCover.GET("/detail", controller.ManholeCover.Detail)
  194. manholeCover.GET("/list", controller.ManholeCover.List)
  195. manholeCover.POST("/submit", controller.ManholeCover.CreateOrUpdate)
  196. manholeCover.POST("/remove", controller.ManholeCover.Remove)
  197. manholeCover.POST("/setting", controller.ManholeCover.Setting)
  198. manholeCover.GET("/getList", controller.ManholeCover.GetList)
  199. manholeCover.POST("/import-excel", controller.ManholeCover.ImportExcel)
  200. manholeCover.GET("/export-excel", controller.ManholeCover.ExportExcel)
  201. manholeCover.GET("/export-template", controller.ManholeCover.ExportExcel)
  202. manholeCover.GET("/all-list", controller.ManholeCover.AllList)
  203. }
  204. //灯随车走分组 控制器
  205. onDemandGroup := device.Group("on-demand-group")
  206. {
  207. onDemandGroup.GET("/detail", controller.OnDemandGroup.Detail)
  208. onDemandGroup.GET("/list", controller.OnDemandGroup.List)
  209. onDemandGroup.POST("/submit", controller.OnDemandGroup.CreateOrUpdate)
  210. onDemandGroup.POST("/remove", controller.OnDemandGroup.Remove)
  211. onDemandGroup.GET("/getList", controller.OnDemandGroup.GetList)
  212. onDemandGroup.GET("/group-number", controller.OnDemandGroup.GroupNumber)
  213. }
  214. //灯随车走传感器 控制器
  215. onDemandSensor := device.Group("on-demand-sensor")
  216. {
  217. onDemandSensor.GET("/detail", controller.OnDemandSensor.Detail)
  218. onDemandSensor.GET("/list", controller.OnDemandSensor.List)
  219. onDemandSensor.POST("/submit", controller.OnDemandSensor.CreateOrUpdate)
  220. onDemandSensor.POST("/remove", controller.OnDemandSensor.Remove)
  221. onDemandSensor.POST("/import-excel", controller.OnDemandSensor.ImportExcel)
  222. onDemandSensor.GET("/export-excel", controller.OnDemandSensor.ExportExcel)
  223. onDemandSensor.GET("/export-template", controller.OnDemandSensor.ExportTemplate)
  224. }
  225. //环境传感器 控制器
  226. optoSensor := device.Group("optosensor")
  227. {
  228. optoSensor.GET("/detail", controller.OptoSensor.Detail)
  229. optoSensor.GET("/list", controller.OptoSensor.List)
  230. optoSensor.POST("/submit", controller.OptoSensor.CreateOrUpdate)
  231. optoSensor.POST("/remove", controller.OptoSensor.Remove)
  232. optoSensor.GET("/getList", controller.OptoSensor.GetList)
  233. optoSensor.POST("/set-default", controller.OptoSensor.SetDefault)
  234. optoSensor.POST("/import-excel", controller.OptoSensor.ImportExcel)
  235. optoSensor.GET("/export-excel", controller.OptoSensor.ExportExcel)
  236. optoSensor.GET("/export-template", controller.OptoSensor.ExportTemplate)
  237. }
  238. //配电箱基本信息 控制器
  239. switchBox := device.Group("switchbox")
  240. {
  241. switchBox.GET("/detail", controller.SwitchBox.Detail)
  242. switchBox.GET("/list", controller.SwitchBox.List)
  243. switchBox.POST("/submit", controller.SwitchBox.CreateOrUpdate)
  244. switchBox.POST("/remove", controller.SwitchBox.Remove)
  245. switchBox.GET("/getList", controller.SwitchBox.GetList)
  246. switchBox.POST("/import-excel", controller.SwitchBox.ImportExcel)
  247. switchBox.GET("/export-excel", controller.SwitchBox.ExportExcel)
  248. switchBox.GET("/export-template", controller.SwitchBox.ExportTemplate)
  249. }
  250. //变压器基本信息 控制器
  251. transformer := device.Group("transformer")
  252. {
  253. transformer.GET("/detail", controller.Transformer.Detail)
  254. transformer.GET("/list", controller.Transformer.List)
  255. transformer.POST("/submit", controller.Transformer.CreateOrUpdate)
  256. transformer.POST("/remove", controller.Transformer.Remove)
  257. transformer.GET("/getList", controller.Transformer.GetList)
  258. }
  259. //智慧网关基本信息 控制器
  260. wisdomGateway := device.Group("wisdomgateway")
  261. {
  262. wisdomGateway.GET("/detail", controller.WisdomGateway.Detail)
  263. wisdomGateway.GET("/list", controller.WisdomGateway.List)
  264. wisdomGateway.POST("/submit", controller.WisdomGateway.CreateOrUpdate)
  265. wisdomGateway.POST("/remove", controller.WisdomGateway.Remove)
  266. wisdomGateway.GET("/getList", controller.WisdomGateway.GetList)
  267. wisdomGateway.GET("/getRelevanceDetail", controller.WisdomGateway.GetRelevanceDetail)
  268. wisdomGateway.POST("/import-excel", controller.WisdomGateway.ImportExcel)
  269. wisdomGateway.GET("/export-excel", controller.WisdomGateway.ExportExcel)
  270. wisdomGateway.GET("/export-template", controller.WisdomGateway.ExportTemplate)
  271. }
  272. //zigBee网关 控制器
  273. zigbee := device.Group("zigbee")
  274. {
  275. zigbee.GET("/detail", controller.Zigbee.Detail)
  276. zigbee.GET("/list", controller.Zigbee.List)
  277. zigbee.POST("/submit", controller.Zigbee.CreateOrUpdate)
  278. zigbee.POST("/remove", controller.Zigbee.Remove)
  279. zigbee.GET("/getList", controller.Zigbee.GetList)
  280. zigbee.POST("/import-excel", controller.Zigbee.ImportExcel)
  281. zigbee.GET("/export-excel", controller.Zigbee.ExportExcel)
  282. zigbee.GET("/export-template", controller.Zigbee.ExportTemplate)
  283. }
  284. // 设备控制相关
  285. strategy := engine.Group("/api/longchi/strategy")
  286. ////智能照明(灯杆分组/灯控树) 控制器
  287. //intelligentLighting := strategy.Group("IntelligentLighting")
  288. //{
  289. // intelligentLighting.GET("/detail", controller.IntelligentLighting.Detail)
  290. // intelligentLighting.GET("/list", controller.IntelligentLighting.List)
  291. // intelligentLighting.POST("/relationList", controller.IntelligentLighting.RelationList)
  292. // intelligentLighting.POST("/relation", controller.IntelligentLighting.Relation)
  293. // intelligentLighting.POST("/remove", controller.IntelligentLighting.Remove)
  294. // intelligentLighting.POST("/changHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  295. // intelligentLighting.POST("/get_status", controller.IntelligentLighting.GetStatus)
  296. //}
  297. //照明策略 控制器
  298. lightStrategy := strategy.Group("light")
  299. {
  300. lightStrategy.GET("/detail", controller.LightStrategy.Detail)
  301. lightStrategy.GET("/list", controller.LightStrategy.List)
  302. lightStrategy.POST("/submit", controller.LightStrategy.CreateOrUpdate)
  303. lightStrategy.POST("/remove", controller.LightStrategy.Remove)
  304. }
  305. //照明策略略关联(灯杆分组/灯控树形态) 控制器
  306. lightRelation := strategy.Group("lightrelation")
  307. {
  308. lightRelation.GET("/detail", controller.IntelligentLighting.Detail)
  309. lightRelation.GET("/list", controller.IntelligentLighting.List)
  310. lightRelation.POST("/remove", controller.IntelligentLighting.Remove)
  311. lightRelation.POST("/relationList", controller.IntelligentLighting.RelationList)
  312. lightRelation.POST("/relation", controller.IntelligentLighting.Relation)
  313. lightRelation.POST("/changeHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
  314. }
  315. //灯随车走照明控制 控制器
  316. onDemandLightingControl := strategy.Group("onDemandLightingControl")
  317. {
  318. onDemandLightingControl.GET("/detail", controller.OnDemandLightingControl.Detail)
  319. onDemandLightingControl.GET("/list", controller.OnDemandLightingControl.List)
  320. onDemandLightingControl.POST("/relation", controller.OnDemandLightingControl.Relation)
  321. onDemandLightingControl.POST("/changHandSwitch", controller.OnDemandLightingControl.ChangeHandSwitch)
  322. }
  323. //登录校验相关
  324. auth := engine.Group("/api/blade-auth/oauth")
  325. {
  326. auth.POST("/token", system.Auth.Token)
  327. auth.GET("/logout", system.Auth.Logout)
  328. auth.GET("/captcha", system.Auth.Captcha)
  329. auth.GET("/clear-cache", system.Auth.Clear)
  330. }
  331. login := engine.Group("/api/login")
  332. {
  333. login.GET("", system.Auth.Login)
  334. }
  335. //用户
  336. user := engine.Group("/api/blade-user")
  337. {
  338. user.GET("/detail", system.User.GetDetail)
  339. user.GET("/page", system.User.List)
  340. user.POST("/submit", system.User.Submit)
  341. user.POST("/update", system.User.Update)
  342. user.POST("/remove", system.User.Remove)
  343. user.POST("/reset-password", system.User.ResetPwd)
  344. user.POST("/user-list", system.User.GetList)
  345. user.POST("/grant", system.User.Grant)
  346. }
  347. //租户
  348. tenant := engine.Group("/api/blade-system/tenant")
  349. {
  350. tenant.GET("/info", system.Tenant.GetInfo)
  351. tenant.GET("/detail", system.Tenant.GetDetail)
  352. tenant.GET("/page", system.Tenant.List)
  353. tenant.POST("/submit", system.Tenant.Submit)
  354. tenant.POST("/remove", system.Tenant.Remove)
  355. tenant.POST("/select", system.Tenant.GetList)
  356. }
  357. //角色
  358. role := engine.Group("/api/blade-system/role")
  359. {
  360. role.GET("/detail", system.Role.GetDetail)
  361. role.GET("/list", system.Role.List)
  362. role.GET("/tree", system.Role.Tree)
  363. role.POST("/submit", system.Role.Submit)
  364. role.POST("/remove", system.Role.Remove)
  365. role.POST("/grant", system.Role.Grant)
  366. }
  367. //菜单
  368. menu := engine.Group("/api/blade-system/menu")
  369. {
  370. menu.GET("/detail", system.Menu.GetDetail)
  371. menu.GET("list", system.Menu.List)
  372. menu.GET("lazyList", system.Menu.LazyList)
  373. menu.GET("menuList", system.Menu.MenuList)
  374. menu.GET("lazyMenuList", system.Menu.LazyMenuList)
  375. menu.POST("submit", system.Menu.Submit)
  376. menu.POST("remove", system.Menu.Remove)
  377. menu.GET("routes", system.Menu.Routes)
  378. menu.GET("routesExt", system.Menu.RoutesExt)
  379. menu.GET("buttons", system.Menu.Buttons)
  380. menu.GET("tree", system.Menu.Tree)
  381. menu.GET("grantTree", system.Menu.GrantTree)
  382. menu.GET("roleTreeKeys", system.Menu.RoleTreeKeys)
  383. menu.GET("grantTopTree", system.Menu.GrantTopTree)
  384. menu.GET("topTreeKeys", system.Menu.GrantTopTree)
  385. menu.GET("top-menu", system.Menu.TopMenu)
  386. menu.GET("authRoutes", system.Menu.Routes)
  387. }
  388. //工作台
  389. workbench := engine.Group("/api/longchi/report/workbench/")
  390. {
  391. workbench.POST("countdevice", controller.Workbench.CountDevice)
  392. workbench.POST("countalarm", controller.Workbench.CountAlarm)
  393. workbench.POST("aqi", controller.Workbench.Aqi)
  394. }
  395. }