router.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. device "iot_manager_service/app/device/controller"
  5. "iot_manager_service/app/middleware"
  6. multimedia "iot_manager_service/app/multimedia/controller"
  7. operation "iot_manager_service/app/operation/controller"
  8. record "iot_manager_service/app/record/controller"
  9. security "iot_manager_service/app/security/controller"
  10. system "iot_manager_service/app/system/controller"
  11. "iot_manager_service/util/logger"
  12. )
  13. func InitRouter(engine *gin.Engine) {
  14. // 跨域处理
  15. engine.Use(middleware.Cors())
  16. // 校验权限
  17. engine.Use(middleware.CheckAuth())
  18. engine.Use(gin.Recovery())
  19. engine.Use(logger.LogToFile())
  20. engine.Use(logger.Recover)
  21. // 操作历史记录
  22. handleHistory := engine.Group("/api/longchi/handlehistory")
  23. {
  24. handleHistory.GET("/list", device.HandleHistory.List)
  25. }
  26. // 设备管理
  27. deviceMgr := engine.Group("/api/longchi/device/")
  28. //设备模型
  29. vendor := deviceMgr.Group("vender")
  30. {
  31. vendor.GET("/getModelList", device.Util.GetModelList)
  32. vendor.GET("/getTypeList", device.Util.GetModelList)
  33. }
  34. //公共方法
  35. share := engine.Group("/api/longchi/share")
  36. {
  37. share.GET("/tenantcode/getTenantCode", device.Util.GetTenantCode)
  38. }
  39. //桥梁
  40. bridge := deviceMgr.Group("bridge")
  41. {
  42. bridge.GET("/detail", device.Bridge.Detail)
  43. bridge.GET("/list", device.Bridge.List)
  44. bridge.POST("/submit", device.Bridge.CreateOrUpdate)
  45. bridge.POST("/remove", device.Bridge.Remove)
  46. bridge.GET("/dropdown", device.Bridge.GetList)
  47. bridge.POST("/import-excel", device.Bridge.ImportExcel)
  48. bridge.GET("/export-excel", device.Bridge.ExportExcel)
  49. bridge.GET("/export-template", device.Bridge.ExportTemplate)
  50. }
  51. //桥梁传感器 控制器
  52. bridgeSensor := deviceMgr.Group("bridgesensor")
  53. {
  54. bridgeSensor.GET("/detail", device.BridgeSensor.Detail)
  55. bridgeSensor.GET("/list", device.BridgeSensor.List)
  56. bridgeSensor.POST("/submit", device.BridgeSensor.CreateOrUpdate)
  57. bridgeSensor.POST("/remove", device.BridgeSensor.Remove)
  58. bridgeSensor.GET("/dropdown", device.BridgeSensor.GetList)
  59. bridgeSensor.POST("/enable-disable", device.BridgeSensor.Enable)
  60. bridgeSensor.POST("/import-excel", device.BridgeSensor.ImportExcel)
  61. bridgeSensor.GET("/export-excel", device.BridgeSensor.ExportExcel)
  62. bridgeSensor.GET("/export-template", device.BridgeSensor.ExportTemplate)
  63. }
  64. //摄像头
  65. camera := deviceMgr.Group("/camera")
  66. {
  67. camera.GET("/detail", device.Camera.Detail)
  68. camera.GET("/list", device.Camera.List)
  69. camera.POST("/submit", device.Camera.CreateOrUpdate)
  70. camera.POST("/remove", device.Camera.Remove)
  71. camera.POST("/import-excel", device.Camera.ImportExcel)
  72. camera.GET("/export-excel", device.Camera.ExportExcel)
  73. camera.GET("/export-template", device.Camera.ExportTemplate)
  74. camera.POST("/enable-disable", device.Camera.Enable)
  75. camera.GET("/getList", device.Camera.GetList)
  76. }
  77. //抓拍单元+卡口 控制器
  78. captureUnit := deviceMgr.Group("captureunit")
  79. {
  80. captureUnit.GET("/detail", device.CaptureUint.Detail)
  81. captureUnit.GET("/capture-list", device.CaptureUint.CaptureList)
  82. captureUnit.POST("/capture-submit", device.CaptureUint.CaptureSubmit)
  83. captureUnit.GET("/capture-pull-down-list", device.CaptureUint.CaptureGetList)
  84. captureUnit.GET("/point-list", device.CaptureUint.PointList)
  85. captureUnit.POST("/point-submit", device.CaptureUint.PointSubmit)
  86. captureUnit.GET("/point-pull-down-list", device.CaptureUint.PointGetList)
  87. captureUnit.POST("/remove", device.CaptureUint.Remove)
  88. }
  89. //垃圾桶台账 控制器
  90. garbage := deviceMgr.Group("garbage")
  91. {
  92. garbage.GET("/detail", device.Garbage.Detail)
  93. garbage.GET("/list", device.Garbage.List)
  94. garbage.POST("/submit", device.Garbage.CreateOrUpdate)
  95. garbage.POST("/remove", device.Garbage.Remove)
  96. garbage.GET("/dropdown", device.Garbage.GetList)
  97. garbage.POST("/import-excel", device.Garbage.ImportExcel)
  98. garbage.GET("/export-excel", device.Garbage.ExportExcel)
  99. garbage.GET("/export-template", device.Garbage.ExportTemplate)
  100. }
  101. //垃圾桶道路分组管理 控制器
  102. garbageWayGroup := deviceMgr.Group("garbage-way-group")
  103. {
  104. garbageWayGroup.GET("/detail", device.GarbageWay.Detail)
  105. garbageWayGroup.GET("/list", device.GarbageWay.List)
  106. garbageWayGroup.POST("/submit", device.GarbageWay.CreateOrUpdate)
  107. garbageWayGroup.POST("/remove", device.GarbageWay.Remove)
  108. garbageWayGroup.GET("/getList", device.GarbageWay.GetList)
  109. }
  110. //信息屏基本信息 控制器
  111. infoBoard := deviceMgr.Group("infoboard")
  112. {
  113. infoBoard.GET("/detail", device.InfoBoard.Detail)
  114. infoBoard.GET("/list", device.InfoBoard.List)
  115. infoBoard.POST("/submit", device.InfoBoard.CreateOrUpdate)
  116. infoBoard.POST("/remove", device.InfoBoard.Remove)
  117. infoBoard.POST("/import-excel", device.InfoBoard.ImportExcel)
  118. infoBoard.GET("/export-excel", device.InfoBoard.ExportExcel)
  119. infoBoard.GET("/export-template", device.InfoBoard.ExportTemplate)
  120. infoBoard.POST("/system-operation", device.InfoBoard.CreateOrUpdate)
  121. infoBoard.POST("/enable-disable", device.InfoBoard.Enable)
  122. infoBoard.POST("/show-setting", device.InfoBoard.ShowSetting)
  123. }
  124. //IP广播基本信息 控制器
  125. ipBroadCast := deviceMgr.Group("ipbroadcast")
  126. {
  127. ipBroadCast.GET("/detail", device.IpBroadcast.Detail)
  128. ipBroadCast.GET("/list", device.IpBroadcast.List)
  129. ipBroadCast.POST("/submit", device.IpBroadcast.CreateOrUpdate)
  130. ipBroadCast.POST("/remove", device.IpBroadcast.Remove)
  131. ipBroadCast.POST("/import-excel", device.IpBroadcast.ImportExcel)
  132. ipBroadCast.GET("/export-excel", device.IpBroadcast.ExportExcel)
  133. ipBroadCast.GET("/export-template", device.IpBroadcast.ExportTemplate)
  134. ipBroadCast.POST("/setting-volume", device.IpBroadcast.SettingVolume)
  135. }
  136. //一键报警服务表 控制器
  137. Alarm := deviceMgr.Group("akeyalarmserve")
  138. {
  139. Alarm.GET("/detail", device.Alarm.Detail)
  140. Alarm.GET("/list", device.Alarm.List)
  141. Alarm.POST("/submit", device.Alarm.CreateOrUpdate)
  142. Alarm.POST("/remove", device.Alarm.Remove)
  143. Alarm.GET("/getList", device.Alarm.GetList)
  144. Alarm.POST("/import-excel", device.Alarm.ImportExcel)
  145. Alarm.GET("/export-excel", device.Alarm.ExportExcel)
  146. Alarm.GET("/export-template", device.Alarm.ExportTemplate)
  147. }
  148. //一键报警终端表 控制器
  149. AlarmTerminal := deviceMgr.Group("akeyalarmterminal")
  150. {
  151. AlarmTerminal.GET("/detail", device.AlarmTerminal.Detail)
  152. AlarmTerminal.GET("/list", device.AlarmTerminal.List)
  153. AlarmTerminal.POST("/submit", device.AlarmTerminal.CreateOrUpdate)
  154. AlarmTerminal.POST("/remove", device.AlarmTerminal.Remove)
  155. AlarmTerminal.POST("/import-excel", device.AlarmTerminal.ImportExcel)
  156. AlarmTerminal.GET("/export-excel", device.AlarmTerminal.ExportExcel)
  157. AlarmTerminal.GET("/export-template", device.AlarmTerminal.ExportTemplate)
  158. }
  159. //灯杆基本信息 控制器
  160. lampPole := deviceMgr.Group("lamppole")
  161. {
  162. lampPole.GET("/detail", device.LampPole.Detail)
  163. lampPole.GET("/getRelevanceDetail", device.LampPole.GetRelevanceDetail)
  164. lampPole.GET("/list", device.LampPole.List)
  165. lampPole.POST("/submit", device.LampPole.CreateOrUpdate)
  166. lampPole.POST("/remove", device.LampPole.Remove)
  167. lampPole.GET("/getList", device.LampPole.GetList)
  168. lampPole.POST("/import-excel", device.LampPole.ImportExcel)
  169. lampPole.GET("/export-excel", device.LampPole.ExportExcel)
  170. lampPole.GET("/export-template", device.LampPole.ExportTemplate)
  171. }
  172. //灯杆分组
  173. lampPoleGroup := deviceMgr.Group("/lamppolegroup")
  174. {
  175. lampPoleGroup.GET("/detail", device.LampPoleGroup.Detail)
  176. lampPoleGroup.GET("/list", device.LampPoleGroup.List)
  177. lampPoleGroup.POST("/submit", device.LampPoleGroup.CreateOrUpdate)
  178. lampPoleGroup.POST("/remove", device.LampPoleGroup.Remove)
  179. lampPoleGroup.GET("/getList", device.LampPoleGroup.GetList)
  180. lampPoleGroup.GET("/filtration-list", device.LampPoleGroup.FiltrationList)
  181. lampPoleGroup.GET("/getTree", device.LampPoleGroup.GetTree)
  182. }
  183. //灯控基本信息 控制器
  184. lightControl := deviceMgr.Group("lightcontrol")
  185. {
  186. lightControl.GET("/detail", device.Light.Detail)
  187. lightControl.GET("/list", device.Light.List)
  188. lightControl.POST("/submit", device.Light.CreateOrUpdate)
  189. lightControl.POST("/remove", device.Light.Remove)
  190. lightControl.GET("/getLampPoleList", device.Light.GetList)
  191. lightControl.POST("/import-excel", device.Light.ImportExcel)
  192. lightControl.GET("/export-excel", device.Light.ExportExcel)
  193. lightControl.GET("/export-template", device.Light.ExportTemplate)
  194. lightControl.POST("/enable-disable", device.Light.Enable)
  195. lightControl.POST("/off-one", device.Light.Switch) //todo 在strategy中
  196. }
  197. manholeCover := deviceMgr.Group("manholecover")
  198. {
  199. manholeCover.GET("/detail", device.ManholeCover.Detail)
  200. manholeCover.GET("/list", device.ManholeCover.List)
  201. manholeCover.POST("/submit", device.ManholeCover.CreateOrUpdate)
  202. manholeCover.POST("/remove", device.ManholeCover.Remove)
  203. manholeCover.POST("/setting", device.ManholeCover.Setting)
  204. manholeCover.GET("/getList", device.ManholeCover.GetList)
  205. manholeCover.POST("/import-excel", device.ManholeCover.ImportExcel)
  206. manholeCover.GET("/export-excel", device.ManholeCover.ExportExcel)
  207. manholeCover.GET("/export-template", device.ManholeCover.ExportExcel)
  208. manholeCover.GET("/all-list", device.ManholeCover.AllList)
  209. }
  210. //灯随车走分组 控制器
  211. onDemandGroup := deviceMgr.Group("on-demand-group")
  212. {
  213. onDemandGroup.GET("/detail", device.OnDemandGroup.Detail)
  214. onDemandGroup.GET("/list", device.OnDemandGroup.List)
  215. onDemandGroup.POST("/submit", device.OnDemandGroup.CreateOrUpdate)
  216. onDemandGroup.POST("/remove", device.OnDemandGroup.Remove)
  217. onDemandGroup.GET("/getList", device.OnDemandGroup.GetList)
  218. onDemandGroup.GET("/group-number", device.OnDemandGroup.GroupNumber)
  219. }
  220. //灯随车走传感器 控制器
  221. onDemandSensor := deviceMgr.Group("on-demand-sensor")
  222. {
  223. onDemandSensor.GET("/detail", device.OnDemandSensor.Detail)
  224. onDemandSensor.GET("/list", device.OnDemandSensor.List)
  225. onDemandSensor.POST("/submit", device.OnDemandSensor.CreateOrUpdate)
  226. onDemandSensor.POST("/remove", device.OnDemandSensor.Remove)
  227. onDemandSensor.POST("/import-excel", device.OnDemandSensor.ImportExcel)
  228. onDemandSensor.GET("/export-excel", device.OnDemandSensor.ExportExcel)
  229. onDemandSensor.GET("/export-template", device.OnDemandSensor.ExportTemplate)
  230. }
  231. //环境传感器 控制器
  232. optoSensor := deviceMgr.Group("optosensor")
  233. {
  234. optoSensor.GET("/detail", device.OptoSensor.Detail)
  235. optoSensor.GET("/list", device.OptoSensor.List)
  236. optoSensor.POST("/submit", device.OptoSensor.CreateOrUpdate)
  237. optoSensor.POST("/remove", device.OptoSensor.Remove)
  238. optoSensor.GET("/getList", device.OptoSensor.GetList)
  239. optoSensor.POST("/set-default", device.OptoSensor.SetDefault)
  240. optoSensor.POST("/import-excel", device.OptoSensor.ImportExcel)
  241. optoSensor.GET("/export-excel", device.OptoSensor.ExportExcel)
  242. optoSensor.GET("/export-template", device.OptoSensor.ExportTemplate)
  243. }
  244. //配电箱基本信息 控制器
  245. switchBox := deviceMgr.Group("switchbox")
  246. {
  247. switchBox.GET("/detail", device.SwitchBox.Detail)
  248. switchBox.GET("/list", device.SwitchBox.List)
  249. switchBox.POST("/submit", device.SwitchBox.CreateOrUpdate)
  250. switchBox.POST("/remove", device.SwitchBox.Remove)
  251. switchBox.GET("/getList", device.SwitchBox.GetList)
  252. switchBox.POST("/import-excel", device.SwitchBox.ImportExcel)
  253. switchBox.GET("/export-excel", device.SwitchBox.ExportExcel)
  254. switchBox.GET("/export-template", device.SwitchBox.ExportTemplate)
  255. }
  256. //变压器基本信息 控制器
  257. transformer := deviceMgr.Group("transformer")
  258. {
  259. transformer.GET("/detail", device.Transformer.Detail)
  260. transformer.GET("/list", device.Transformer.List)
  261. transformer.POST("/submit", device.Transformer.CreateOrUpdate)
  262. transformer.POST("/remove", device.Transformer.Remove)
  263. transformer.GET("/getList", device.Transformer.GetList)
  264. }
  265. //智慧网关基本信息 控制器
  266. wisdomGateway := deviceMgr.Group("wisdomgateway")
  267. {
  268. wisdomGateway.GET("/detail", device.Gateway.Detail)
  269. wisdomGateway.GET("/list", device.Gateway.List)
  270. wisdomGateway.POST("/submit", device.Gateway.CreateOrUpdate)
  271. wisdomGateway.POST("/remove", device.Gateway.Remove)
  272. wisdomGateway.GET("/getList", device.Gateway.GetList)
  273. wisdomGateway.GET("/getRelevanceDetail", device.Gateway.GetRelevanceDetail)
  274. wisdomGateway.POST("/import-excel", device.Gateway.ImportExcel)
  275. wisdomGateway.GET("/export-excel", device.Gateway.ExportExcel)
  276. wisdomGateway.GET("/export-template", device.Gateway.ExportTemplate)
  277. }
  278. //zigBee网关 控制器
  279. zigbee := deviceMgr.Group("zigbee")
  280. {
  281. zigbee.GET("/detail", device.Zigbee.Detail)
  282. zigbee.GET("/list", device.Zigbee.List)
  283. zigbee.POST("/submit", device.Zigbee.CreateOrUpdate)
  284. zigbee.POST("/remove", device.Zigbee.Remove)
  285. zigbee.GET("/getList", device.Zigbee.GetList)
  286. zigbee.POST("/import-excel", device.Zigbee.ImportExcel)
  287. zigbee.GET("/export-excel", device.Zigbee.ExportExcel)
  288. zigbee.GET("/export-template", device.Zigbee.ExportTemplate)
  289. }
  290. // 设备控制相关
  291. strategy := engine.Group("/api/longchi/strategy")
  292. ////智能照明(灯杆分组/灯控树) 控制器
  293. //intelligentLighting := strategy.Group("IntelligentLighting")
  294. //{
  295. // intelligentLighting.GET("/detail", device.IntelligentLighting.Detail)
  296. // intelligentLighting.GET("/list", device.IntelligentLighting.List)
  297. // intelligentLighting.POST("/relationList", device.IntelligentLighting.RelationList)
  298. // intelligentLighting.POST("/relation", device.IntelligentLighting.Relation)
  299. // intelligentLighting.POST("/remove", device.IntelligentLighting.Remove)
  300. // intelligentLighting.POST("/changHandSwitch", device.IntelligentLighting.ChangeHandSwitch)
  301. // intelligentLighting.POST("/get_status", device.IntelligentLighting.GetStatus)
  302. //}
  303. //照明策略 控制器
  304. lightStrategy := strategy.Group("light")
  305. {
  306. lightStrategy.GET("/detail", device.LightStrategy.Detail)
  307. lightStrategy.GET("/list", device.LightStrategy.List)
  308. lightStrategy.POST("/submit", device.LightStrategy.CreateOrUpdate)
  309. lightStrategy.POST("/remove", device.LightStrategy.Remove)
  310. }
  311. //照明策略略关联(灯杆分组/灯控树形态) 控制器
  312. lightRelation := strategy.Group("lightrelation")
  313. {
  314. lightRelation.GET("/detail", device.IntelligentLighting.Detail)
  315. lightRelation.GET("/list", device.IntelligentLighting.List)
  316. lightRelation.POST("/remove", device.IntelligentLighting.Recovery)
  317. lightRelation.POST("/relationList", device.IntelligentLighting.RelationList)
  318. lightRelation.POST("/relation", device.IntelligentLighting.Relation)
  319. lightRelation.POST("/changeHandSwitch", device.IntelligentLighting.ChangeHandSwitch)
  320. }
  321. //灯随车走照明控制 控制器
  322. onDemandLightingControl := strategy.Group("onDemandLightingControl")
  323. {
  324. onDemandLightingControl.GET("/detail", device.OnDemandLightingControl.Detail)
  325. onDemandLightingControl.GET("/list", device.OnDemandLightingControl.List)
  326. onDemandLightingControl.POST("/relation", device.OnDemandLightingControl.Relation)
  327. onDemandLightingControl.POST("/changHandSwitch", device.OnDemandLightingControl.ChangeHandSwitch)
  328. }
  329. //登录校验相关
  330. auth := engine.Group("/api/blade-auth/oauth")
  331. {
  332. auth.POST("/token", system.Auth.Token)
  333. auth.GET("/logout", system.Auth.Logout)
  334. auth.GET("/captcha", system.Auth.Captcha)
  335. auth.GET("/clear-cache", system.Auth.Clear)
  336. }
  337. login := engine.Group("/api/login")
  338. {
  339. login.GET("", system.Auth.Login)
  340. }
  341. //用户
  342. user := engine.Group("/api/blade-user")
  343. {
  344. user.GET("/detail", system.User.GetDetail)
  345. user.GET("/page", system.User.List)
  346. user.POST("/submit", system.User.Submit)
  347. user.POST("/update", system.User.Update)
  348. user.POST("/remove", system.User.Remove)
  349. user.POST("/reset-password", system.User.ResetPwd)
  350. user.POST("/user-list", system.User.GetList)
  351. user.POST("/grant", system.User.Grant)
  352. }
  353. //租户
  354. tenant := engine.Group("/api/blade-system/tenant")
  355. {
  356. tenant.GET("/info", system.Tenant.GetInfo)
  357. tenant.GET("/detail", system.Tenant.GetDetail)
  358. tenant.GET("/page", system.Tenant.List)
  359. tenant.POST("/submit", system.Tenant.Submit)
  360. tenant.POST("/remove", system.Tenant.Remove)
  361. tenant.POST("/select", system.Tenant.GetList)
  362. tenant.GET("/list", system.Tenant.List)
  363. }
  364. //角色
  365. role := engine.Group("/api/blade-system/role")
  366. {
  367. role.GET("/detail", system.Role.GetDetail)
  368. role.GET("/list", system.Role.List)
  369. role.GET("/tree", system.Role.Tree)
  370. role.POST("/submit", system.Role.Submit)
  371. role.POST("/remove", system.Role.Remove)
  372. role.POST("/grant", system.Role.Grant)
  373. }
  374. //菜单
  375. menu := engine.Group("/api/blade-system/menu")
  376. {
  377. menu.GET("/detail", system.Menu.GetDetail)
  378. menu.GET("list", system.Menu.List)
  379. menu.GET("lazy-list", system.Menu.LazyList)
  380. menu.GET("menuList", system.Menu.MenuList)
  381. menu.GET("lazyMenuList", system.Menu.LazyMenuList)
  382. menu.POST("submit", system.Menu.Submit)
  383. menu.POST("remove", system.Menu.Remove)
  384. menu.GET("routes", system.Menu.Routes)
  385. menu.GET("routesExt", system.Menu.RoutesExt)
  386. menu.GET("buttons", system.Menu.Buttons)
  387. menu.GET("tree", system.Menu.Tree)
  388. menu.GET("grantTree", system.Menu.GrantTree)
  389. menu.GET("roleTreeKeys", system.Menu.RoleTreeKeys)
  390. menu.GET("grantTopTree", system.Menu.GrantTopTree)
  391. menu.GET("topTreeKeys", system.Menu.GrantTopTree)
  392. menu.GET("top-menu", system.Menu.TopMenu)
  393. menu.GET("authRoutes", system.Menu.Routes)
  394. }
  395. //字典
  396. dict := engine.Group("/api/blade-system/dict")
  397. {
  398. dict.GET("/dictionary", system.Dict.Dictionary)
  399. }
  400. //工作台
  401. workbench := engine.Group("/api/longchi/report/workbench/")
  402. {
  403. workbench.POST("countdevice", device.Workbench.CountDevice)
  404. workbench.POST("countalarm", device.Workbench.CountAlarm)
  405. workbench.POST("aqi", device.Workbench.Aqi)
  406. workbench.POST("countjobtodo", device.Workbench.CountJobTodo)
  407. workbench.POST("notification", device.Workbench.Notification)
  408. workbench.GET("light-pandect", device.Workbench.LightRate)
  409. }
  410. //数据统计记录
  411. recordGroup := engine.Group("/api/longchi/record")
  412. lightRecord := recordGroup.Group("/lighting/lightingrecordhis")
  413. {
  414. lightRecord.GET("/list", record.LightRecord.List)
  415. lightRecord.POST("/refresh", record.LightRecord.Refresh)
  416. }
  417. //安防
  418. securityGroup := engine.Group("/api/longchi/security")
  419. {
  420. securityGroup.GET("/getCameraLiveList", security.Security.GetCameraLiveList)
  421. }
  422. // 媒体素材
  423. multimediaGroup := engine.Group("/api/longchi/multimedia/library")
  424. {
  425. multimediaGroup.GET("/list", multimedia.Library.List)
  426. multimediaGroup.GET("/detail", multimedia.Library.Detail)
  427. multimediaGroup.POST("/remove", multimedia.Library.Remove)
  428. multimediaGroup.GET("/getList", multimedia.Library.GetList)
  429. multimediaGroup.POST("/putFile", multimedia.Library.UploadFile)
  430. multimediaGroup.POST("/putMp3File", multimedia.Library.UploadFile)
  431. multimediaGroup.POST("/submit", multimedia.Library.Submit)
  432. }
  433. //上传设备图
  434. systemGroup := engine.Group("/api/longchi/system/public")
  435. {
  436. systemGroup.POST("/putFile", multimedia.Library.UploadFile)
  437. }
  438. // 媒体节目
  439. programGroup := engine.Group("/api/longchi/multimedia/programlibraries")
  440. {
  441. programGroup.GET("/list", multimedia.Program.List)
  442. programGroup.GET("/detail", multimedia.Program.Detail)
  443. programGroup.POST("/remove", multimedia.Program.Remove)
  444. programGroup.GET("/getList", multimedia.Program.GetList)
  445. programGroup.POST("/submit", multimedia.Program.Submit)
  446. programGroup.POST("/getLibraryList", multimedia.Program.GetLibraryList)
  447. programGroup.POST("/relationDeviceList", multimedia.Program.RelationDeviceList)
  448. //todo 前端需要和relationDeviceList合并,使用一个接口
  449. programGroup.POST("/ip-broadcast-relation-list", multimedia.Program.RelationIpBroadcastList)
  450. programGroup.POST("/audit", multimedia.Program.Audit)
  451. }
  452. //节目播放
  453. publishLibraries := engine.Group("/api/longchi/multimedia/publishlibraries")
  454. {
  455. publishLibraries.GET("/list", multimedia.PublishLibraries.List)
  456. }
  457. operationGroup := engine.Group("/api/longchi/operation")
  458. environment := operationGroup.Group("/em/environmentMonitor")
  459. {
  460. environment.GET("/getNewList", operation.Environment.EnvironmentList)
  461. environment.GET("/getNewMeteorologicalData", operation.Environment.GetData)
  462. environment.GET("/query-environment", operation.Environment.GetHistoryData)
  463. environment.GET("/getScopeList", operation.Environment.GetScopeList)
  464. }
  465. garbageGroup := operationGroup.Group("/garbage")
  466. {
  467. garbageGroup.GET("/query-way-realtime", operation.Garbage.GarbageList)
  468. garbageGroup.GET("/count-list", operation.Garbage.CountList)
  469. }
  470. bridgeGroup := operationGroup.Group("/bridge")
  471. {
  472. bridgeGroup.GET("/data/environmental/environmental-list", operation.Bridge.EnvironmentList)
  473. bridgeGroup.GET("/data/sensor/list", operation.Bridge.SensorList)
  474. bridgeGroup.GET("/data/sensor/realtime-data", operation.Bridge.LiveData)
  475. bridgeGroup.GET("/data/pandect/detail", operation.Bridge.Summary)
  476. bridgeGroup.GET("/data/pandect/health-indicators", operation.Bridge.HealthIndicators)
  477. bridgeGroup.GET("/data/pandect/list", operation.Bridge.SummaryList)
  478. bridgeGroup.GET("/data/pandect/camera-list", operation.Bridge.CameraList)
  479. }
  480. manholeGroup := operationGroup.Group("/manhole")
  481. {
  482. manholeGroup.GET("/now", operation.Manhole.LiveData)
  483. manholeGroup.GET("/history-list", operation.Manhole.LiveData)
  484. }
  485. }