gate.go 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236
  1. package v1
  2. import (
  3. "git.getensh.com/common/gopkgs/logger"
  4. "git.getensh.com/common/gopkgs/tasker/httptasker"
  5. "git.getensh.com/common/gopkgs/util"
  6. "github.com/gin-gonic/gin"
  7. "go.uber.org/zap"
  8. "net/http"
  9. "property-system-gateway/errors"
  10. param_v1 "property-system-gateway/param/v1"
  11. "property-system-gateway/pb"
  12. "property-system-gateway/pb/v1"
  13. "property-system-gateway/utils"
  14. "sort"
  15. )
  16. //
  17. // @Summary 门禁单元列表
  18. // @Description 门禁单元列表
  19. // @Tags 门禁
  20. // @Accept json
  21. // @Produce json
  22. // @Param token header string true " "
  23. // @Param device_id query int true "设备id"
  24. // @Success 200 {object} v1.GateListResponse
  25. // @Failure 500 {object} base.HTTPError
  26. // @Router /api/v1/gate/unit [get]
  27. func (c *Controller) GateUnitList(ctx *gin.Context) {
  28. // 解析参数
  29. req := &param_v1.GateUnitListRequest{}
  30. parseParamTask := func() error {
  31. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateUnitListQuery, nil)
  32. if err != nil {
  33. logger.Error("func",
  34. zap.String("call", "util.ShouldBind"),
  35. zap.String("error", err.Error()))
  36. return errors.ParamsError
  37. }
  38. return nil
  39. }
  40. // 业务处理
  41. handleServiceTask := func() error {
  42. tokenInfo, err := utils.GetSubjectValue(ctx)
  43. if err != nil {
  44. return err
  45. }
  46. greq := &v1.UnitListRequest{GardenId: tokenInfo.GardenId, Page: -1, PageSize: -1}
  47. greply, err := pb.Garden.UnitList(ctx, greq)
  48. if err != nil {
  49. s, _ := json.MarshalToString(greq)
  50. logger.Error("func",
  51. zap.String("call", "Device.UnitList"),
  52. zap.String("params", s),
  53. zap.String("error", err.Error()))
  54. return errors.ErrorTransForm(err)
  55. }
  56. resp := param_v1.GateUnitListResponse{}
  57. rpcReq := &v1.GateUnitListRequest{
  58. GardenId: tokenInfo.GardenId,
  59. DeviceId: req.DeviceId,
  60. }
  61. rpcRsp, err := pb.Device.GateUnitList(ctx, rpcReq)
  62. if err != nil {
  63. s, _ := json.MarshalToString(req)
  64. logger.Error("func",
  65. zap.String("call", "Device.GateUnitList"),
  66. zap.String("params", s),
  67. zap.String("error", err.Error()))
  68. return errors.ErrorTransForm(err)
  69. }
  70. // 记录已添加的单元
  71. selected := map[int64]bool{}
  72. for _, v := range rpcRsp.UnitId {
  73. selected[v] = true
  74. }
  75. // 解析为返回的格式
  76. buildingM := map[int64][]param_v1.GateUnitBuildingUnitItem{}
  77. buildingInfoM := map[int64]param_v1.GateUnitBuildingItem{}
  78. for _, v := range greply.List {
  79. buildingInfoM[v.BuildingId] = param_v1.GateUnitBuildingItem{
  80. BuildingNumber: v.BuildingNumber,
  81. BuildingName: v.BuildingName,
  82. }
  83. unitItem := param_v1.GateUnitBuildingUnitItem{
  84. UnitId: v.Id,
  85. UnitNumber: v.UnitNumber,
  86. UnitName: v.UnitName,
  87. Selected: selected[v.Id],
  88. }
  89. buildingM[v.BuildingId] = append(buildingM[v.BuildingId], unitItem)
  90. }
  91. // 填充返回字段
  92. resp.Data.List = make([]param_v1.GateUnitBuildingItem, len(buildingInfoM))
  93. i := 0
  94. for buildingId, binfo := range buildingInfoM {
  95. resp.Data.List[i] = binfo
  96. resp.Data.List[i].Units = buildingM[buildingId]
  97. i++
  98. }
  99. // 按编号排序
  100. for k, _ := range resp.Data.List {
  101. sort.Slice(resp.Data.List[k].Units, func(i int, j int) bool {
  102. return resp.Data.List[k].Units[i].UnitNumber < resp.Data.List[k].Units[j].UnitNumber
  103. })
  104. }
  105. sort.Slice(resp.Data.List, func(i int, j int) bool { return resp.Data.List[i].BuildingNumber < resp.Data.List[j].BuildingNumber })
  106. ctx.JSON(http.StatusOK, resp)
  107. return nil
  108. }
  109. // 执行任务
  110. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  111. }
  112. //
  113. // @Summary 门禁添加单元
  114. // @Description 门禁添加单元
  115. // @Tags 门禁
  116. // @Accept json
  117. // @Produce json
  118. // @Param token header string true " "
  119. // @Param body body v1.GateUnitAddBody true " "
  120. // @Success 200 {object} v1.GateUnitAddResponse
  121. // @Failure 500 {object} base.HTTPError
  122. // @Router /api/v1/gate/unit [post]
  123. func (c *Controller) GateUnitAdd(ctx *gin.Context) {
  124. // 解析参数
  125. req := &param_v1.GateUnitAddRequest{}
  126. parseParamTask := func() error {
  127. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateUnitAddBody)
  128. if err != nil {
  129. logger.Error("func",
  130. zap.String("call", "util.ShouldBind"),
  131. zap.String("error", err.Error()))
  132. return errors.ParamsError
  133. }
  134. return nil
  135. }
  136. // 业务处理
  137. handleServiceTask := func() error {
  138. tokenInfo, err := utils.GetSubjectValue(ctx)
  139. if err != nil {
  140. return err
  141. }
  142. resp := param_v1.GateUnitAddResponse{}
  143. rpcReq := &v1.GateUnitAddRequest{
  144. GardenId: tokenInfo.GardenId,
  145. DeviceId: req.DeviceId,
  146. UnitId: req.UnitIds,
  147. }
  148. _, err = pb.Device.GateUnitAdd(ctx, rpcReq)
  149. if err != nil {
  150. s, _ := json.MarshalToString(req)
  151. logger.Error("func",
  152. zap.String("call", "Device.GateUnitAdd"),
  153. zap.String("params", s),
  154. zap.String("error", err.Error()))
  155. return errors.ErrorTransForm(err)
  156. }
  157. ctx.JSON(http.StatusOK, resp)
  158. return nil
  159. }
  160. // 执行任务
  161. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  162. }
  163. //
  164. // @Summary 门禁卡号重新下发
  165. // @Description 门禁卡号重新下发
  166. // @Tags 门禁
  167. // @Accept json
  168. // @Produce json
  169. // @Param token header string true " "
  170. // @Param body body v1.GateCardSyncBody true " "
  171. // @Success 200 {object} v1.GateCardSyncResponse
  172. // @Failure 500 {object} base.HTTPError
  173. // @Router /api/v1/gate/card [put]
  174. func (c *Controller) GateCardSync(ctx *gin.Context) {
  175. // 解析参数
  176. req := &param_v1.GateCardSyncRequest{}
  177. parseParamTask := func() error {
  178. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateCardSyncBody)
  179. if err != nil {
  180. logger.Error("func",
  181. zap.String("call", "util.ShouldBind"),
  182. zap.String("error", err.Error()))
  183. return errors.ParamsError
  184. }
  185. return nil
  186. }
  187. // 业务处理
  188. handleServiceTask := func() error {
  189. tokenInfo, err := utils.GetSubjectValue(ctx)
  190. if err != nil {
  191. return err
  192. }
  193. resp := param_v1.GateCardSyncResponse{}
  194. rpcReq := &v1.GateCardSyncRequest{
  195. GardenId: tokenInfo.GardenId,
  196. Id: req.Id,
  197. }
  198. _, err = pb.Device.GateCardSync(ctx, rpcReq)
  199. if err != nil {
  200. s, _ := json.MarshalToString(req)
  201. logger.Error("func",
  202. zap.String("call", "Device.GateCardSync"),
  203. zap.String("params", s),
  204. zap.String("error", err.Error()))
  205. return errors.ErrorTransForm(err)
  206. }
  207. ctx.JSON(http.StatusOK, resp)
  208. return nil
  209. }
  210. // 执行任务
  211. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  212. }
  213. //
  214. // @Summary 删除卡
  215. // @Description 删除卡
  216. // @Tags 门禁
  217. // @Accept json
  218. // @Produce json
  219. // @Param token header string true " "
  220. // @Param id query int true "卡记录id"
  221. // @Success 200 {object} v1.GateCardDelResponse
  222. // @Failure 500 {object} base.HTTPError
  223. // @Router /api/v1/gate/card [delete]
  224. func (c *Controller) GateCardDel(ctx *gin.Context) {
  225. // 解析参数
  226. req := &param_v1.GateCardDelRequest{}
  227. parseParamTask := func() error {
  228. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateCardDelQuery, nil)
  229. if err != nil {
  230. logger.Error("func",
  231. zap.String("call", "util.ShouldBind"),
  232. zap.String("error", err.Error()))
  233. return errors.ParamsError
  234. }
  235. return nil
  236. }
  237. // 业务处理
  238. handleServiceTask := func() error {
  239. tokenInfo, err := utils.GetSubjectValue(ctx)
  240. if err != nil {
  241. return err
  242. }
  243. resp := param_v1.GateCardDelResponse{}
  244. rpcReq := &v1.GateCardDelRequest{
  245. GardenId: tokenInfo.GardenId,
  246. Id: req.Id,
  247. }
  248. _, err = pb.Device.GateCardDel(ctx, rpcReq)
  249. if err != nil {
  250. s, _ := json.MarshalToString(req)
  251. logger.Error("func",
  252. zap.String("call", "Device.GateCardDel"),
  253. zap.String("params", s),
  254. zap.String("error", err.Error()))
  255. return errors.ErrorTransForm(err)
  256. }
  257. ctx.JSON(http.StatusOK, resp)
  258. return nil
  259. }
  260. // 执行任务
  261. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  262. }
  263. //
  264. // @Summary 添加卡
  265. // @Description 添加卡
  266. // @Tags 门禁
  267. // @Accept json
  268. // @Produce json
  269. // @Param token header string true " "
  270. // @Param body body v1.GateCardAddBody true " "
  271. // @Success 200 {object} v1.GateCardAddResponse
  272. // @Failure 500 {object} base.HTTPError
  273. // @Router /api/v1/gate/card [post]
  274. func (c *Controller) GateCardAdd(ctx *gin.Context) {
  275. // 解析参数
  276. req := &param_v1.GateCardAddRequest{}
  277. parseParamTask := func() error {
  278. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateCardAddBody)
  279. if err != nil {
  280. logger.Error("func",
  281. zap.String("call", "util.ShouldBind"),
  282. zap.String("error", err.Error()))
  283. return errors.ParamsError
  284. }
  285. return nil
  286. }
  287. // 业务处理
  288. handleServiceTask := func() error {
  289. tokenInfo, err := utils.GetSubjectValue(ctx)
  290. if err != nil {
  291. return err
  292. }
  293. resp := param_v1.GateCardAddResponse{}
  294. rpcReq := &v1.GateCardAddRequest{
  295. GardenId: tokenInfo.GardenId,
  296. CardNumber: req.CardNumber,
  297. Name: req.Name,
  298. DeviceIds: req.DeviceIds,
  299. }
  300. _, err = pb.Device.GateCardAdd(ctx, rpcReq)
  301. if err != nil {
  302. s, _ := json.MarshalToString(req)
  303. logger.Error("func",
  304. zap.String("call", "Device.GateCardAdd"),
  305. zap.String("params", s),
  306. zap.String("error", err.Error()))
  307. return errors.ErrorTransForm(err)
  308. }
  309. ctx.JSON(http.StatusOK, resp)
  310. return nil
  311. }
  312. // 执行任务
  313. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  314. }
  315. //
  316. // @Summary 卡列表
  317. // @Description 卡列表
  318. // @Tags 门禁
  319. // @Accept json
  320. // @Produce json
  321. // @Param token header string true " "
  322. // @Param page query int false " "
  323. // @Param page_size query int false " "
  324. // @Param name query string false "姓名"
  325. // @Param down_status query int false "下发状态 0 不过滤 1 待下发 2 下发成功 3 下发失败"
  326. // @Success 200 {object} v1.GateCardListResponse
  327. // @Failure 500 {object} base.HTTPError
  328. // @Router /api/v1/gate/card [get]
  329. func (c *Controller) GateCardList(ctx *gin.Context) {
  330. // 解析参数
  331. req := &param_v1.GateCardListRequest{}
  332. parseParamTask := func() error {
  333. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateCardListQuery, nil)
  334. if err != nil {
  335. logger.Error("func",
  336. zap.String("call", "util.ShouldBind"),
  337. zap.String("error", err.Error()))
  338. return errors.ParamsError
  339. }
  340. return nil
  341. }
  342. // 业务处理
  343. handleServiceTask := func() error {
  344. tokenInfo, err := utils.GetSubjectValue(ctx)
  345. if err != nil {
  346. return err
  347. }
  348. resp := param_v1.GateCardListResponse{}
  349. rpcReq := &v1.GateCardListRequest{
  350. Page: req.Page,
  351. PageSize: req.PageSize,
  352. GardenId: tokenInfo.GardenId,
  353. Name: req.Name,
  354. DownStatus: req.DownStatus,
  355. }
  356. rpcRsp, err := pb.Device.GateCardList(ctx, rpcReq)
  357. if err != nil {
  358. s, _ := json.MarshalToString(req)
  359. logger.Error("func",
  360. zap.String("call", "Device.GateCardList"),
  361. zap.String("params", s),
  362. zap.String("error", err.Error()))
  363. return errors.ErrorTransForm(err)
  364. }
  365. if rpcRsp.List == nil {
  366. rpcRsp.List = make([]*v1.GateCardItem, 0)
  367. }
  368. for i, v := range rpcRsp.List {
  369. if v.GatePermissions == nil {
  370. rpcRsp.List[i].GatePermissions = make([]*v1.GateCardDevice, 0)
  371. }
  372. }
  373. resp.Data = *rpcRsp
  374. ctx.JSON(http.StatusOK, resp)
  375. return nil
  376. }
  377. // 执行任务
  378. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  379. }
  380. //
  381. // @Summary 卡还可以绑定的设备
  382. // @Description 卡还可以绑定的设备
  383. // @Tags 门禁
  384. // @Accept json
  385. // @Produce json
  386. // @Param token header string true " "
  387. // @Param card_number query string true "卡号"
  388. // @Success 200 {object} v1.GateCardCanBindDevicesResponse
  389. // @Failure 500 {object} base.HTTPError
  390. // @Router /api/v1/gate/card/devices [get]
  391. func (c *Controller) GateCardCanBindDevices(ctx *gin.Context) {
  392. // 解析参数
  393. req := &param_v1.GateCardCanBindDevicesRequest{}
  394. parseParamTask := func() error {
  395. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateCardCanBindDevicesQuery, nil)
  396. if err != nil {
  397. logger.Error("func",
  398. zap.String("call", "util.ShouldBind"),
  399. zap.String("error", err.Error()))
  400. return errors.ParamsError
  401. }
  402. return nil
  403. }
  404. // 业务处理
  405. handleServiceTask := func() error {
  406. tokenInfo, err := utils.GetSubjectValue(ctx)
  407. if err != nil {
  408. return err
  409. }
  410. resp := param_v1.GateCardCanBindDevicesResponse{}
  411. rpcReq := &v1.GateCardCanBindDevicesRequest{
  412. GardenId: tokenInfo.GardenId,
  413. CardNumber: req.CardNumber,
  414. }
  415. rpcRsp, err := pb.Device.GateCardCanBindDevices(ctx, rpcReq)
  416. if err != nil {
  417. s, _ := json.MarshalToString(req)
  418. logger.Error("func",
  419. zap.String("call", "Device.GateCardCanBindDevices"),
  420. zap.String("params", s),
  421. zap.String("error", err.Error()))
  422. return errors.ErrorTransForm(err)
  423. }
  424. if rpcRsp.List == nil {
  425. rpcRsp.List = make([]*v1.GateItem, 0)
  426. }
  427. resp.Data = *rpcRsp
  428. ctx.JSON(http.StatusOK, resp)
  429. return nil
  430. }
  431. // 执行任务
  432. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  433. }
  434. //
  435. // @Summary 人脸重新下发
  436. // @Description 人脸重新下发
  437. // @Tags 门禁
  438. // @Accept json
  439. // @Produce json
  440. // @Param token header string true " "
  441. // @Param body body v1.GateUserPicSyncBody true " "
  442. // @Success 200 {object} v1.GateUserPicSyncResponse
  443. // @Failure 500 {object} base.HTTPError
  444. // @Router /api/v1/gate/pic [put]
  445. func (c *Controller) GateUserPicSync(ctx *gin.Context) {
  446. // 解析参数
  447. req := &param_v1.GateUserPicSyncRequest{}
  448. parseParamTask := func() error {
  449. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateUserPicSyncBody)
  450. if err != nil {
  451. logger.Error("func",
  452. zap.String("call", "util.ShouldBind"),
  453. zap.String("error", err.Error()))
  454. return errors.ParamsError
  455. }
  456. return nil
  457. }
  458. // 业务处理
  459. handleServiceTask := func() error {
  460. tokenInfo, err := utils.GetSubjectValue(ctx)
  461. if err != nil {
  462. return err
  463. }
  464. resp := param_v1.GateUserPicSyncResponse{}
  465. rpcReq := &v1.GateUserPicSyncRequest{
  466. GardenId: tokenInfo.GardenId,
  467. Id: req.Id,
  468. }
  469. _, err = pb.Device.GateUserPicSync(ctx, rpcReq)
  470. if err != nil {
  471. s, _ := json.MarshalToString(req)
  472. logger.Error("func",
  473. zap.String("call", "Device.GateUserPicSync"),
  474. zap.String("params", s),
  475. zap.String("error", err.Error()))
  476. return errors.ErrorTransForm(err)
  477. }
  478. ctx.JSON(http.StatusOK, resp)
  479. return nil
  480. }
  481. // 执行任务
  482. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  483. }
  484. //
  485. // @Summary 删除人脸
  486. // @Description 删除人脸
  487. // @Tags 门禁
  488. // @Accept json
  489. // @Produce json
  490. // @Param token header string true " "
  491. // @Param id query int true "人脸记录id"
  492. // @Success 200 {object} v1.GateUserPicDelResponse
  493. // @Failure 500 {object} base.HTTPError
  494. // @Router /api/v1/gate/pic [delete]
  495. func (c *Controller) GateUserPicDel(ctx *gin.Context) {
  496. // 解析参数
  497. req := &param_v1.GateUserPicDelRequest{}
  498. parseParamTask := func() error {
  499. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateUserPicDelQuery, nil)
  500. if err != nil {
  501. logger.Error("func",
  502. zap.String("call", "util.ShouldBind"),
  503. zap.String("error", err.Error()))
  504. return errors.ParamsError
  505. }
  506. return nil
  507. }
  508. // 业务处理
  509. handleServiceTask := func() error {
  510. tokenInfo, err := utils.GetSubjectValue(ctx)
  511. if err != nil {
  512. return err
  513. }
  514. resp := param_v1.GateUserPicDelResponse{}
  515. rpcReq := &v1.GateUserPicDelRequest{
  516. GardenId: tokenInfo.GardenId,
  517. Id: req.Id,
  518. }
  519. _, err = pb.Device.GateUserPicDel(ctx, rpcReq)
  520. if err != nil {
  521. s, _ := json.MarshalToString(req)
  522. logger.Error("func",
  523. zap.String("call", "Device.GateUserPicDel"),
  524. zap.String("params", s),
  525. zap.String("error", err.Error()))
  526. return errors.ErrorTransForm(err)
  527. }
  528. ctx.JSON(http.StatusOK, resp)
  529. return nil
  530. }
  531. // 执行任务
  532. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  533. }
  534. //
  535. // @Summary 人脸审核
  536. // @Description 人脸审核
  537. // @Tags 门禁
  538. // @Accept json
  539. // @Produce json
  540. // @Param token header string true " "
  541. // @Param body body v1.GateUserPicApproveBody true " "
  542. // @Success 200 {object} v1.GateUserPicApproveResponse
  543. // @Failure 500 {object} base.HTTPError
  544. // @Router /api/v1/gate/pic/approve [put]
  545. func (c *Controller) GateUserPicApprove(ctx *gin.Context) {
  546. // 解析参数
  547. req := &param_v1.GateUserPicApproveRequest{}
  548. parseParamTask := func() error {
  549. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateUserPicApproveBody)
  550. if err != nil {
  551. logger.Error("func",
  552. zap.String("call", "util.ShouldBind"),
  553. zap.String("error", err.Error()))
  554. return errors.ParamsError
  555. }
  556. return nil
  557. }
  558. // 业务处理
  559. handleServiceTask := func() error {
  560. tokenInfo, err := utils.GetSubjectValue(ctx)
  561. if err != nil {
  562. return err
  563. }
  564. resp := param_v1.GateUserPicApproveResponse{}
  565. rpcReq := &v1.GateUserPicApproveRequest{
  566. GardenId: tokenInfo.GardenId,
  567. Id: req.Id,
  568. Status: req.Status,
  569. }
  570. _, err = pb.Device.GateUserPicApprove(ctx, rpcReq)
  571. if err != nil {
  572. s, _ := json.MarshalToString(req)
  573. logger.Error("func",
  574. zap.String("call", "Device.GateUserPicApprove"),
  575. zap.String("params", s),
  576. zap.String("error", err.Error()))
  577. return errors.ErrorTransForm(err)
  578. }
  579. ctx.JSON(http.StatusOK, resp)
  580. return nil
  581. }
  582. // 执行任务
  583. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  584. }
  585. //
  586. // @Summary 人脸列表
  587. // @Description 人脸列表
  588. // @Tags 门禁
  589. // @Accept json
  590. // @Produce json
  591. // @Param token header string true " "
  592. // @Param page query int false " "
  593. // @Param page_size query int false " "
  594. // @Param name query string false "姓名"
  595. // @Param down_status query int false "下发状态 0 不过滤 1 待下发 2 下发成功 3 下发失败"
  596. // @Success 200 {object} v1.GateUserPicListResponse
  597. // @Failure 500 {object} base.HTTPError
  598. // @Router /api/v1/gate/pic [get]
  599. func (c *Controller) GateUserPicList(ctx *gin.Context) {
  600. // 解析参数
  601. req := &param_v1.GateUserPicListRequest{}
  602. parseParamTask := func() error {
  603. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateUserPicListQuery, nil)
  604. if err != nil {
  605. logger.Error("func",
  606. zap.String("call", "util.ShouldBind"),
  607. zap.String("error", err.Error()))
  608. return errors.ParamsError
  609. }
  610. return nil
  611. }
  612. // 业务处理
  613. handleServiceTask := func() error {
  614. tokenInfo, err := utils.GetSubjectValue(ctx)
  615. if err != nil {
  616. return err
  617. }
  618. resp := param_v1.GateUserPicListResponse{}
  619. rpcReq := &v1.GateUserPicListRequest{
  620. Page: req.Page,
  621. PageSize: req.PageSize,
  622. GardenId: tokenInfo.GardenId,
  623. Name: req.Name,
  624. DownStatus: req.DownStatus,
  625. }
  626. rpcRsp, err := pb.Device.GateUserPicList(ctx, rpcReq)
  627. if err != nil {
  628. s, _ := json.MarshalToString(req)
  629. logger.Error("func",
  630. zap.String("call", "Device.GateUserPicList"),
  631. zap.String("params", s),
  632. zap.String("error", err.Error()))
  633. return errors.ErrorTransForm(err)
  634. }
  635. if rpcRsp.List == nil {
  636. rpcRsp.List = make([]*v1.GateUserPicItem, 0)
  637. }
  638. for i, v := range rpcRsp.List {
  639. if v.GatePermissions == nil {
  640. rpcRsp.List[i].GatePermissions = make([]*v1.GateUserPicDevice, 0)
  641. }
  642. }
  643. resp.Data = *rpcRsp
  644. ctx.JSON(http.StatusOK, resp)
  645. return nil
  646. }
  647. // 执行任务
  648. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  649. }
  650. //
  651. // @Summary 门禁列表
  652. // @Description 门禁列表
  653. // @Tags 门禁
  654. // @Accept json
  655. // @Produce json
  656. // @Param token header string true " "
  657. // @Param page query int false " "
  658. // @Param page_size query int false " "
  659. // @Param device_name query string false "设备名"
  660. // @Param manufactor query string false "厂商"
  661. // @Param sn query string false "序列号"
  662. // @Success 200 {object} v1.GateListResponse
  663. // @Failure 500 {object} base.HTTPError
  664. // @Router /api/v1/gate [get]
  665. func (c *Controller) GateList(ctx *gin.Context) {
  666. // 解析参数
  667. req := &param_v1.GateListRequest{}
  668. parseParamTask := func() error {
  669. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateListQuery, nil)
  670. if err != nil {
  671. logger.Error("func",
  672. zap.String("call", "util.ShouldBind"),
  673. zap.String("error", err.Error()))
  674. return errors.ParamsError
  675. }
  676. return nil
  677. }
  678. // 业务处理
  679. handleServiceTask := func() error {
  680. tokenInfo, err := utils.GetSubjectValue(ctx)
  681. if err != nil {
  682. return err
  683. }
  684. resp := param_v1.GateListResponse{}
  685. rpcReq := &v1.GateListRequest{
  686. Page: req.Page,
  687. PageSize: req.PageSize,
  688. GardenId: tokenInfo.GardenId,
  689. Sn: req.Sn,
  690. DeviceName: req.DeviceName,
  691. Manufactor: req.Manufactor,
  692. }
  693. rpcRsp, err := pb.Device.GateList(ctx, rpcReq)
  694. if err != nil {
  695. s, _ := json.MarshalToString(req)
  696. logger.Error("func",
  697. zap.String("call", "Device.GateList"),
  698. zap.String("params", s),
  699. zap.String("error", err.Error()))
  700. return errors.ErrorTransForm(err)
  701. }
  702. if rpcRsp.List == nil {
  703. rpcRsp.List = make([]*v1.GateItem, 0)
  704. }
  705. resp.Data = *rpcRsp
  706. ctx.JSON(http.StatusOK, resp)
  707. return nil
  708. }
  709. // 执行任务
  710. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  711. }
  712. //
  713. // @Summary 门禁起停用
  714. // @Description 门禁起停用
  715. // @Tags 门禁
  716. // @Accept json
  717. // @Produce json
  718. // @Param token header string true " "
  719. // @Param body body v1.GateEnableBody true " "
  720. // @Success 200 {object} v1.GateEnableResponse
  721. // @Failure 500 {object} base.HTTPError
  722. // @Router /api/v1/gate/enable [put]
  723. func (c *Controller) GateEnable(ctx *gin.Context) {
  724. // 解析参数
  725. req := &param_v1.GateEnableRequest{}
  726. parseParamTask := func() error {
  727. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateEnableBody)
  728. if err != nil {
  729. logger.Error("func",
  730. zap.String("call", "util.ShouldBind"),
  731. zap.String("error", err.Error()))
  732. return errors.ParamsError
  733. }
  734. return nil
  735. }
  736. // 业务处理
  737. handleServiceTask := func() error {
  738. tokenInfo, err := utils.GetSubjectValue(ctx)
  739. if err != nil {
  740. return err
  741. }
  742. resp := param_v1.GateEnableResponse{}
  743. rpcReq := &v1.GateEnableRequest{
  744. DeviceId: req.DeviceId,
  745. Enable: req.Enable,
  746. GardenId: tokenInfo.GardenId,
  747. }
  748. _, err = pb.Device.GateEnable(ctx, rpcReq)
  749. if err != nil {
  750. s, _ := json.MarshalToString(req)
  751. logger.Error("func",
  752. zap.String("call", "pb.Device.GateEnable"),
  753. zap.String("params", s),
  754. zap.String("error", err.Error()))
  755. return errors.ErrorTransForm(err)
  756. }
  757. ctx.JSON(http.StatusOK, resp)
  758. return nil
  759. }
  760. // 执行任务
  761. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  762. }
  763. //
  764. // @Summary 门禁配置进场场和位置
  765. // @Description 门禁配置进场场和位置
  766. // @Tags 门禁
  767. // @Accept json
  768. // @Produce json
  769. // @Param token header string true " "
  770. // @Param body body v1.GateSetBody true " "
  771. // @Success 200 {object} v1.GateSetResponse
  772. // @Failure 500 {object} base.HTTPError
  773. // @Router /api/v1/gate/set [put]
  774. func (c *Controller) GateSet(ctx *gin.Context) {
  775. // 解析参数
  776. req := &param_v1.GateSetRequest{}
  777. parseParamTask := func() error {
  778. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateSetBody)
  779. if err != nil {
  780. logger.Error("func",
  781. zap.String("call", "util.ShouldBind"),
  782. zap.String("error", err.Error()))
  783. return errors.ParamsError
  784. }
  785. return nil
  786. }
  787. // 业务处理
  788. handleServiceTask := func() error {
  789. tokenInfo, err := utils.GetSubjectValue(ctx)
  790. if err != nil {
  791. return err
  792. }
  793. resp := param_v1.GateSetResponse{}
  794. rpcReq := &v1.GateSetRequest{
  795. DeviceId: req.DeviceId,
  796. GardenId: tokenInfo.GardenId,
  797. Location: req.Location,
  798. Direction: req.Direction,
  799. GateName: req.GateName,
  800. Ip: req.Ip,
  801. Mac: req.Mac,
  802. UserName: req.User,
  803. Password: req.Password,
  804. }
  805. _, err = pb.Device.GateSet(ctx, rpcReq)
  806. if err != nil {
  807. s, _ := json.MarshalToString(req)
  808. logger.Error("func",
  809. zap.String("call", "pb.Device.GateSet"),
  810. zap.String("params", s),
  811. zap.String("error", err.Error()))
  812. return errors.ErrorTransForm(err)
  813. }
  814. ctx.JSON(http.StatusOK, resp)
  815. return nil
  816. }
  817. // 执行任务
  818. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  819. }
  820. //
  821. // @Summary 操作记录
  822. // @Description 操作记录
  823. // @Tags 门禁
  824. // @Accept json
  825. // @Produce json
  826. // @Param token header string true " "
  827. // @Param page query int false " "
  828. // @Param page_size query int false " "
  829. // @Param device_id query int true "设备id"
  830. // @Success 200 {object} v1.GateCommandListResponse
  831. // @Failure 500 {object} base.HTTPError
  832. // @Router /api/v1/gate/command [get]
  833. func (c *Controller) GateCommandList(ctx *gin.Context) {
  834. // 解析参数
  835. req := &param_v1.GateCommandListRequest{}
  836. parseParamTask := func() error {
  837. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateCommandListQuery, nil)
  838. if err != nil {
  839. logger.Error("func",
  840. zap.String("call", "util.ShouldBind"),
  841. zap.String("error", err.Error()))
  842. return errors.ParamsError
  843. }
  844. return nil
  845. }
  846. // 业务处理
  847. handleServiceTask := func() error {
  848. resp := param_v1.GateCommandListResponse{}
  849. rpcReq := &v1.GateCommandListRequest{
  850. Page: req.Page,
  851. PageSize: req.PageSize,
  852. DeviceId: req.DeviceId,
  853. }
  854. rpcRsp, err := pb.Device.GateCommandList(ctx, rpcReq)
  855. if err != nil {
  856. s, _ := json.MarshalToString(req)
  857. logger.Error("func",
  858. zap.String("call", "Device.GateCommandList"),
  859. zap.String("params", s),
  860. zap.String("error", err.Error()))
  861. return errors.ErrorTransForm(err)
  862. }
  863. if rpcRsp.List == nil {
  864. rpcRsp.List = make([]*v1.GateCommandItem, 0)
  865. }
  866. resp.Data = *rpcRsp
  867. ctx.JSON(http.StatusOK, resp)
  868. return nil
  869. }
  870. // 执行任务
  871. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  872. }
  873. //
  874. // @Summary 门禁远程开门
  875. // @Description 门禁远程开门
  876. // @Tags 门禁
  877. // @Accept json
  878. // @Produce json
  879. // @Param token header string true " "
  880. // @Param body body v1.GateOpenBody true " "
  881. // @Success 200 {object} v1.GateOpenResponse
  882. // @Failure 500 {object} base.HTTPError
  883. // @Router /api/v1/gate/command/open [post]
  884. func (c *Controller) GateOpen(ctx *gin.Context) {
  885. // 解析参数
  886. req := &param_v1.GateOpenRequest{}
  887. parseParamTask := func() error {
  888. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateOpenBody)
  889. if err != nil {
  890. logger.Error("func",
  891. zap.String("call", "util.ShouldBind"),
  892. zap.String("error", err.Error()))
  893. return errors.ParamsError
  894. }
  895. return nil
  896. }
  897. // 业务处理
  898. handleServiceTask := func() error {
  899. resp := param_v1.GateOpenResponse{}
  900. rpcReq := &v1.GateCommandAddRequest{
  901. DeviceId: req.DeviceId,
  902. CmdCode: 1,
  903. }
  904. _, err := pb.Device.GateCommandAdd(ctx, rpcReq)
  905. if err != nil {
  906. s, _ := json.MarshalToString(rpcReq)
  907. logger.Error("func",
  908. zap.String("call", "pb.GateCommandAdd"),
  909. zap.String("params", s),
  910. zap.String("error", err.Error()))
  911. return errors.ErrorTransForm(err)
  912. }
  913. ctx.JSON(http.StatusOK, resp)
  914. return nil
  915. }
  916. // 执行任务
  917. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  918. }
  919. //
  920. // @Summary 门禁重启设备
  921. // @Description 门禁重启设备
  922. // @Tags 门禁
  923. // @Accept json
  924. // @Produce json
  925. // @Param token header string true " "
  926. // @Param body body v1.GateRestartBody true " "
  927. // @Success 200 {object} v1.GateRestartResponse
  928. // @Failure 500 {object} base.HTTPError
  929. // @Router /api/v1/gate/command/restart [post]
  930. func (c *Controller) GateRestart(ctx *gin.Context) {
  931. // 解析参数
  932. req := &param_v1.GateRestartRequest{}
  933. parseParamTask := func() error {
  934. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.GateRestartBody)
  935. if err != nil {
  936. logger.Error("func",
  937. zap.String("call", "util.ShouldBind"),
  938. zap.String("error", err.Error()))
  939. return errors.ParamsError
  940. }
  941. return nil
  942. }
  943. // 业务处理
  944. handleServiceTask := func() error {
  945. resp := param_v1.GateRestartResponse{}
  946. rpcReq := &v1.GateCommandAddRequest{
  947. DeviceId: req.DeviceId,
  948. CmdCode: 2,
  949. }
  950. _, err := pb.Device.GateCommandAdd(ctx, rpcReq)
  951. if err != nil {
  952. s, _ := json.MarshalToString(rpcReq)
  953. logger.Error("func",
  954. zap.String("call", "pb.GateCommandAdd"),
  955. zap.String("params", s),
  956. zap.String("error", err.Error()))
  957. return errors.ErrorTransForm(err)
  958. }
  959. ctx.JSON(http.StatusOK, resp)
  960. return nil
  961. }
  962. // 执行任务
  963. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  964. }
  965. //
  966. // @Summary 开门记录
  967. // @Description 开门记录
  968. // @Tags 门禁
  969. // @Accept json
  970. // @Produce json
  971. // @Param token header string true " "
  972. // @Param page query int false " "
  973. // @Param page_size query int false " "
  974. // @Param device_id query string false "设备id必传"
  975. // @Param start query int false "开始时间"
  976. // @Param end query int false "结束时间"
  977. // @Param is_visitor query int false "0不过滤 1 访客 2 非访客"
  978. // @Success 200 {object} v1.GateRecordListResponse
  979. // @Failure 500 {object} base.HTTPError
  980. // @Router /api/v1/gate/record [get]
  981. func (c *Controller) GateRecordList(ctx *gin.Context) {
  982. // 解析参数
  983. req := &param_v1.GateRecordListRequest{}
  984. parseParamTask := func() error {
  985. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateRecordListQuery, nil)
  986. if err != nil {
  987. logger.Error("func",
  988. zap.String("call", "util.ShouldBind"),
  989. zap.String("error", err.Error()))
  990. return errors.ParamsError
  991. }
  992. return nil
  993. }
  994. // 业务处理
  995. handleServiceTask := func() error {
  996. //tokenInfo, err := utils.GetSubjectValue(ctx)
  997. //if err != nil {
  998. // return err
  999. //}
  1000. resp := param_v1.GateRecordListResponse{}
  1001. rpcReq := &v1.GateRecordListRequest{
  1002. Page: req.Page,
  1003. PageSize: req.PageSize,
  1004. DeviceId: req.DeviceId,
  1005. Start: req.Start,
  1006. End: req.End,
  1007. IsVisitor: req.IsVisitor,
  1008. }
  1009. rpcRsp, err := pb.Device.GateRecordList(ctx, rpcReq)
  1010. if err != nil {
  1011. s, _ := json.MarshalToString(req)
  1012. logger.Error("func",
  1013. zap.String("call", "Device.GateRecordList"),
  1014. zap.String("params", s),
  1015. zap.String("error", err.Error()))
  1016. return errors.ErrorTransForm(err)
  1017. }
  1018. if rpcRsp.List == nil {
  1019. rpcRsp.List = make([]*v1.GateRecordItem, 0)
  1020. }
  1021. resp.Data = *rpcRsp
  1022. ctx.JSON(http.StatusOK, resp)
  1023. return nil
  1024. }
  1025. // 执行任务
  1026. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  1027. }
  1028. //
  1029. // @Summary 访客记录
  1030. // @Description 访客记录
  1031. // @Tags 门禁
  1032. // @Accept json
  1033. // @Produce json
  1034. // @Param token header string true " "
  1035. // @Param page query int false " "
  1036. // @Param page_size query int false " "
  1037. // @Param gate_id query int64 false "门禁id必传"
  1038. // @Param start query int false "开始时间"
  1039. // @Param end query int false "结束时间"
  1040. // @Param user query string false "邀请人"
  1041. // @Param visitor query string false "被邀请人"
  1042. // @Success 200 {object} v1.GateVisitorListResponse
  1043. // @Failure 500 {object} base.HTTPError
  1044. // @Router /api/v1/gate/visitor [get]
  1045. func (c *Controller) GateVisitorList(ctx *gin.Context) {
  1046. // 解析参数
  1047. req := &param_v1.GateVisitorListRequest{}
  1048. parseParamTask := func() error {
  1049. err := util.ShouldBind(ctx, &req.Header, nil, &req.GateVisitorListQuery, nil)
  1050. if err != nil {
  1051. logger.Error("func",
  1052. zap.String("call", "util.ShouldBind"),
  1053. zap.String("error", err.Error()))
  1054. return errors.ParamsError
  1055. }
  1056. return nil
  1057. }
  1058. // 业务处理
  1059. handleServiceTask := func() error {
  1060. //tokenInfo, err := utils.GetSubjectValue(ctx)
  1061. //if err != nil {
  1062. // return err
  1063. //}
  1064. resp := param_v1.GateVisitorListResponse{}
  1065. rpcReq := &v1.GateVisitorListRequest{
  1066. Page: req.Page,
  1067. PageSize: req.PageSize,
  1068. DeviceId: req.GateId,
  1069. Start: req.Start,
  1070. End: req.End,
  1071. Name: req.User,
  1072. Visitor: req.Visitor,
  1073. }
  1074. rpcRsp, err := pb.Device.GateVisitorList(ctx, rpcReq)
  1075. if err != nil {
  1076. s, _ := json.MarshalToString(req)
  1077. logger.Error("func",
  1078. zap.String("call", "Device.GateVisitorList"),
  1079. zap.String("params", s),
  1080. zap.String("error", err.Error()))
  1081. return errors.ErrorTransForm(err)
  1082. }
  1083. if rpcRsp.List == nil {
  1084. rpcRsp.List = make([]*v1.GateVisitorListItem, 0)
  1085. }
  1086. resp.Data = *rpcRsp
  1087. ctx.JSON(http.StatusOK, resp)
  1088. return nil
  1089. }
  1090. // 执行任务
  1091. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  1092. }