send_batch_msg_text_logic.go 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package batch_msg
  2. import (
  3. "context"
  4. "wechat-api/hook/aliyun"
  5. "wechat-api/internal/svc"
  6. "wechat-api/internal/types"
  7. "github.com/zeromicro/go-zero/core/logx"
  8. )
  9. type SendBatchMsgTextLogic struct {
  10. logx.Logger
  11. ctx context.Context
  12. svcCtx *svc.ServiceContext
  13. }
  14. func NewSendBatchMsgTextLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SendBatchMsgTextLogic {
  15. return &SendBatchMsgTextLogic{
  16. Logger: logx.WithContext(ctx),
  17. ctx: ctx,
  18. svcCtx: svcCtx}
  19. }
  20. func (l *SendBatchMsgTextLogic) SendBatchMsgText(req *types.SendMsgReq) (*types.BaseMsgResp, error) {
  21. resp := types.BaseMsgResp{}
  22. result, err := aliyun.SendChatappMessage(
  23. "message", "text", "", *req.Lang,
  24. *req.Phone, *req.To, *req.Text)
  25. l.Logger.Infof("send chatapp message result=%v\n", result)
  26. if err != nil {
  27. resp.Code = 1
  28. resp.Msg = err.Error()
  29. } else {
  30. resp.Msg = *result.Body.Code
  31. }
  32. return &resp, nil
  33. }