db_call_logic.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package logic
  2. import (
  3. handler2 "call_center/db/rpc/internal/handler"
  4. "call_center/public/exception"
  5. "context"
  6. "log"
  7. "call_center/db/rpc/internal/svc"
  8. "call_center/db/rpc/pb"
  9. "github.com/tal-tech/go-zero/core/logx"
  10. )
  11. type DbCallLogic struct {
  12. ctx context.Context
  13. svcCtx *svc.ServiceContext
  14. logx.Logger
  15. }
  16. func NewDbCallLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DbCallLogic {
  17. return &DbCallLogic{
  18. ctx: ctx,
  19. svcCtx: svcCtx,
  20. Logger: logx.WithContext(ctx),
  21. }
  22. }
  23. func (l *DbCallLogic) DbCall(in *pb.DbMsgReq) (*pb.DbMsgRes, error) {
  24. var err error
  25. res := new(pb.DbMsgRes)
  26. exception.Try(func() {
  27. cmd := in.GetCmd()
  28. cmdType := cmd.CmdType
  29. switch cmdType {
  30. case pb.EDbCommand_E_DB_COMMAND_GET_CONFIG:
  31. res.Cmd = handler2.GetConfig(l.svcCtx)
  32. break
  33. case pb.EDbCommand_E_DB_COMMAND_GET_CHAT_RECORD:
  34. res.Cmd = handler2.GetChatRecord(l.svcCtx, cmd)
  35. break
  36. case pb.EDbCommand_E_DB_COMMAND_GET_CHAT_LOG:
  37. res.Cmd = handler2.GetChatLog(l.svcCtx, cmd)
  38. break
  39. }
  40. log.Println("<DbCall> cmdType: ", cmdType)
  41. }).Catch(func(e exception.Exception) {
  42. err = e.(error)
  43. }).Finally(func() {
  44. })
  45. return res, err
  46. }