handler_get_config.go 644 B

123456789101112131415161718192021222324252627
  1. //@Author : KaiShin
  2. //@Time : 2021/10/28
  3. package handler
  4. import (
  5. "call_center/db/rpc/internal/svc"
  6. "call_center/db/rpc/pb"
  7. "log"
  8. )
  9. func GetConfig(svcCtx *svc.ServiceContext) *pb.DbCommandMsg {
  10. dataList := new(pb.ArrayConfig)
  11. configs, err := svcCtx.ConfigModel.FindAll()
  12. if err != nil {
  13. log.Println("<handler.GetConfig> [ERROR] err:", err)
  14. }
  15. for _, conf := range configs {
  16. p := new(pb.DbConfig)
  17. p.ConfName = conf.ConfName
  18. p.ConfValue = conf.ConfValue
  19. p.ConfKey = conf.ConfKey
  20. dataList.DataList = append(dataList.DataList, p)
  21. }
  22. return &pb.DbCommandMsg{Data: &pb.DbCommandMsg_ArrayConfig{ArrayConfig: dataList}}
  23. }