router.go 19 KB

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