create_batch_msg_logic.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package batch_msg
  2. import (
  3. "context"
  4. "strings"
  5. "wechat-api/ent"
  6. "wechat-api/ent/contact"
  7. "wechat-api/ent/label"
  8. "wechat-api/ent/labelrelationship"
  9. "wechat-api/internal/svc"
  10. "wechat-api/internal/types"
  11. "wechat-api/internal/utils/dberrorhandler"
  12. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  13. "github.com/suyuan32/simple-admin-common/utils/uuidx"
  14. "github.com/zeromicro/go-zero/core/logx"
  15. )
  16. type CreateBatchMsgLogic struct {
  17. ctx context.Context
  18. svcCtx *svc.ServiceContext
  19. logx.Logger
  20. }
  21. func NewCreateBatchMsgLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CreateBatchMsgLogic {
  22. return &CreateBatchMsgLogic{
  23. ctx: ctx,
  24. svcCtx: svcCtx,
  25. Logger: logx.WithContext(ctx),
  26. }
  27. }
  28. func (l *CreateBatchMsgLogic) CreateBatchMsg(req *types.BatchMsgInfo) (*types.BaseMsgResp, error) {
  29. all := false
  30. for _, label := range req.Labels {
  31. if strings.EqualFold(label, "all") || strings.EqualFold(label, "全部") {
  32. all = true
  33. }
  34. }
  35. tagstring := strings.Join(req.Labels, ",")
  36. req.Tag = &tagstring
  37. userlist := make([]*ent.Contact, 0)
  38. var err error
  39. if all {
  40. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 的 type 为1或2的数据
  41. userlist, err = l.svcCtx.DB.Contact.Query().Where(contact.WxWxid(*req.Fromwxid), contact.TypeIn(1, 2)).All(l.ctx)
  42. if err != nil {
  43. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  44. }
  45. } else {
  46. // 获取 label 表中 name 为 tags的记录
  47. labids, err := l.svcCtx.DB.Label.Query().Where(label.NameIn(req.Labels...)).IDs(l.ctx)
  48. if err != nil {
  49. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  50. }
  51. // 获取 label_relationship 表中,label_id 等于 labids 的 contact_id
  52. labelrelationships, err := l.svcCtx.DB.LabelRelationship.Query().Where(labelrelationship.LabelIDIn(labids...)).All(l.ctx)
  53. if err != nil {
  54. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  55. }
  56. contact_ids := make([]uint64, 0)
  57. for _, labelrelationship := range labelrelationships {
  58. contact_ids = append(contact_ids, labelrelationship.ContactID)
  59. }
  60. if len(contact_ids) > 0 {
  61. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 并且 id 等于 contact_ids 并且 type 为1或2 的数据
  62. userlist, err = l.svcCtx.DB.Contact.Query().Where(contact.WxWxid(*req.Fromwxid), contact.IDIn(contact_ids...), contact.TypeIn(1, 2)).All(l.ctx)
  63. if err != nil {
  64. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  65. }
  66. }
  67. }
  68. total := int32(len(userlist))
  69. if total == 0 {
  70. return &types.BaseMsgResp{Msg: errormsg.TargetNotFound}, nil
  71. }
  72. uuid := uuidx.NewUUID()
  73. batchNo := uuid.String()
  74. _, err = l.svcCtx.DB.BatchMsg.Create().
  75. SetNotNilBatchNo(&batchNo).
  76. SetNotNilFromwxid(req.Fromwxid).
  77. SetNotNilMsg(req.Msg).
  78. SetNotNilTag(req.Tag).
  79. SetTotal(total).
  80. Save(l.ctx)
  81. if err != nil {
  82. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  83. }
  84. msgs := make([]*ent.MsgCreate, 0)
  85. for _, user := range userlist {
  86. msg := l.svcCtx.DB.Msg.Create().
  87. SetNotNilFromwxid(req.Fromwxid).
  88. SetNotNilToid(&user.Wxid).
  89. SetMsgtype(1).
  90. SetNotNilMsg(req.Msg).
  91. SetNotNilBatchNo(&batchNo)
  92. msgs = append(msgs, msg)
  93. }
  94. _, err = l.svcCtx.DB.Msg.CreateBulk(msgs...).Save(l.ctx)
  95. if err != nil {
  96. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  97. }
  98. return &types.BaseMsgResp{Msg: errormsg.CreateSuccess}, nil
  99. }