create_whatsapp_channel_logic.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package whatsapp_channel
  2. import (
  3. "context"
  4. "wechat-api/internal/svc"
  5. "wechat-api/internal/types"
  6. "wechat-api/internal/utils/dberrorhandler"
  7. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  8. "github.com/zeromicro/go-zero/core/logx"
  9. )
  10. type CreateWhatsappChannelLogic struct {
  11. ctx context.Context
  12. svcCtx *svc.ServiceContext
  13. logx.Logger
  14. }
  15. func NewCreateWhatsappChannelLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CreateWhatsappChannelLogic {
  16. return &CreateWhatsappChannelLogic{
  17. ctx: ctx,
  18. svcCtx: svcCtx,
  19. Logger: logx.WithContext(ctx),
  20. }
  21. }
  22. func (l *CreateWhatsappChannelLogic) CreateWhatsappChannel(req *types.WhatsappChannelInfo) (*types.BaseMsgResp, error) {
  23. organizationId := l.ctx.Value("organizationId").(uint64)
  24. _, err := l.svcCtx.DB.WhatsappChannel.Create().
  25. //SetNotNilStatus(req.Status).
  26. SetNotNilAk(req.Ak).
  27. SetNotNilSk(req.Sk).
  28. SetNotNilWaID(req.WaId).
  29. SetNotNilWaName(req.WaName).
  30. SetNotNilWabaID(req.WabaId).
  31. SetNotNilBusinessID(req.BusinessId).
  32. SetNotNilOrganizationID(&organizationId).
  33. SetNotNilVerifyAccount(req.VerifyAccount).
  34. Save(l.ctx)
  35. if err != nil {
  36. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  37. }
  38. return &types.BaseMsgResp{Msg: errormsg.CreateSuccess}, nil
  39. }