set_whatsapp_contact_label_logic.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package label_relationship
  2. import (
  3. "context"
  4. "wechat-api/ent/contact"
  5. "wechat-api/ent/labelrelationship"
  6. "wechat-api/internal/utils/dberrorhandler"
  7. "wechat-api/internal/svc"
  8. "wechat-api/internal/types"
  9. "github.com/zeromicro/go-zero/core/logx"
  10. )
  11. type SetWhatsappContactLabelLogic struct {
  12. logx.Logger
  13. ctx context.Context
  14. svcCtx *svc.ServiceContext
  15. }
  16. func NewSetWhatsappContactLabelLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SetWhatsappContactLabelLogic {
  17. return &SetWhatsappContactLabelLogic{
  18. Logger: logx.WithContext(ctx),
  19. ctx: ctx,
  20. svcCtx: svcCtx}
  21. }
  22. func (l *SetWhatsappContactLabelLogic) SetWhatsappContactLabel(req *types.LabelRelationshipsInfo) (*types.BaseMsgResp, error) {
  23. organizationId := l.ctx.Value("organizationId").(uint64)
  24. resp := types.BaseMsgResp{}
  25. // 开始事务
  26. tx, err := l.svcCtx.DB.Tx(context.Background())
  27. if err != nil {
  28. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  29. }
  30. // 获取联系人信息
  31. _, err = tx.Contact.Query().Where(
  32. contact.ID(*req.ContactId),
  33. contact.OrganizationIDEQ(organizationId),
  34. contact.Ctype(2),
  35. ).Only(l.ctx)
  36. // 获取联系人当前已关联的标签
  37. currentLabelRelationships, err := tx.LabelRelationship.Query().Where(labelrelationship.ContactID(*req.ContactId)).All(l.ctx)
  38. if err != nil {
  39. _ = tx.Rollback()
  40. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  41. }
  42. // 提取当前标签ID
  43. var currentLabelIds []uint64
  44. for _, relationship := range currentLabelRelationships {
  45. currentLabelIds = append(currentLabelIds, relationship.LabelID)
  46. }
  47. // 对比新旧标签ID,找出需要新增和移除的标签
  48. addLabelIds, removeLabelIds := diffLabelIds(req.LabelIds, currentLabelIds)
  49. l.Logger.Infof("req.LabelIds=%v, currentLabelIds=%v\n", req.LabelIds, currentLabelIds)
  50. l.Logger.Infof("addLabelIds=%v, removeLabelIds=%v\n", addLabelIds, removeLabelIds)
  51. // 如果 req.UpdateType 为空,或 req.UpdateType 的值为 “all” 时
  52. // 删除需要移除的标签关系
  53. l.Logger.Errorf("------------------------removeLabelIds--------------------------- %+v\n", removeLabelIds)
  54. for _, id := range currentLabelIds {
  55. _, err := tx.LabelRelationship.
  56. Delete().
  57. Where(
  58. labelrelationship.ContactID(*req.ContactId),
  59. labelrelationship.LabelID(id),
  60. ).
  61. Exec(l.ctx)
  62. if err != nil {
  63. _ = tx.Rollback()
  64. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  65. }
  66. }
  67. // 创建需要新增的标签关系
  68. l.Logger.Errorf("------------------------addLabelIds--------------------------- %+v\n", addLabelIds)
  69. for _, id := range req.LabelIds {
  70. _, _ = tx.LabelRelationship.Create().
  71. SetLabelID(id).
  72. SetContactID(*req.ContactId).
  73. SetOrganizationID(organizationId).
  74. SetCtype(2).
  75. Save(l.ctx)
  76. //if err != nil {
  77. // return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  78. //}
  79. }
  80. _ = tx.Commit()
  81. return &resp, nil
  82. }
  83. func diffLabelIds(newLabelIds []uint64, currentLabelIds []uint64) (addLabelIds []uint64, removeLabelIds []uint64) {
  84. for _, v := range newLabelIds {
  85. if !inArray(v, currentLabelIds) {
  86. addLabelIds = append(addLabelIds, v)
  87. }
  88. }
  89. for _, v := range currentLabelIds {
  90. if !inArray(v, newLabelIds) {
  91. removeLabelIds = append(removeLabelIds, v)
  92. }
  93. }
  94. return
  95. }
  96. func inArray(ele uint64, array []uint64) bool {
  97. for _, v := range array {
  98. if ele == v {
  99. return true
  100. }
  101. }
  102. return false
  103. }