get_contact_list_logic.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package contact
  2. import (
  3. "context"
  4. "wechat-api/ent"
  5. "wechat-api/ent/label"
  6. "wechat-api/ent/labelrelationship"
  7. "wechat-api/ent/contact"
  8. "wechat-api/ent/predicate"
  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/pointy"
  14. "github.com/zeromicro/go-zero/core/logx"
  15. )
  16. type GetContactListLogic struct {
  17. ctx context.Context
  18. svcCtx *svc.ServiceContext
  19. logx.Logger
  20. }
  21. func NewGetContactListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetContactListLogic {
  22. return &GetContactListLogic{
  23. ctx: ctx,
  24. svcCtx: svcCtx,
  25. Logger: logx.WithContext(ctx),
  26. }
  27. }
  28. func convertLabelToLabelInfo(label *ent.Label) types.LabelInfo {
  29. return types.LabelInfo{
  30. BaseIDInfo: types.BaseIDInfo{
  31. Id: &label.ID,
  32. CreatedAt: pointy.GetPointer(label.CreatedAt.UnixMilli()),
  33. UpdatedAt: pointy.GetPointer(label.UpdatedAt.UnixMilli()),
  34. },
  35. Status: &label.Status,
  36. Type: &label.Type,
  37. Name: &label.Name,
  38. From: &label.From,
  39. Mode: &label.Mode,
  40. Conditions: &label.Conditions,
  41. }
  42. }
  43. func (l *GetContactListLogic) GetContactList(req *types.ContactListReq) (*types.ContactListResp, error) {
  44. var predicates []predicate.Contact
  45. if len(req.LabelIDs) > 0 {
  46. predicates = append(predicates, contact.HasContactRelationshipsWith(
  47. labelrelationship.HasLabelsWith(
  48. label.IDIn(req.LabelIDs...),
  49. ),
  50. ))
  51. }
  52. if req.WxWxid != nil {
  53. predicates = append(predicates, contact.WxWxidContains(*req.WxWxid))
  54. }
  55. if req.Wxid != nil {
  56. predicates = append(predicates, contact.WxidContains(*req.Wxid))
  57. }
  58. if req.Account != nil {
  59. predicates = append(predicates, contact.AccountContains(*req.Account))
  60. }
  61. data, err := l.svcCtx.DB.Contact.Query().Where(predicates...).WithContactRelationships(func(query *ent.LabelRelationshipQuery) {
  62. query.WithLabels()
  63. }).Page(l.ctx, req.Page, req.PageSize)
  64. if err != nil {
  65. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  66. }
  67. resp := &types.ContactListResp{}
  68. resp.Msg = errormsg.Success
  69. resp.Data.Total = data.PageDetails.Total
  70. for _, v := range data.List {
  71. labelRelationships := make([]types.ContactLabelList, 0)
  72. if v.Edges.ContactRelationships != nil {
  73. for _, lr := range v.Edges.ContactRelationships {
  74. labelRelationships = append(labelRelationships, types.ContactLabelList{
  75. Label: &lr.Edges.Labels.Name,
  76. Value: &lr.LabelID,
  77. })
  78. }
  79. }
  80. resp.Data.Data = append(resp.Data.Data,
  81. types.ContactInfo{
  82. BaseIDInfo: types.BaseIDInfo{
  83. Id: &v.ID,
  84. CreatedAt: pointy.GetPointer(v.CreatedAt.UnixMilli()),
  85. UpdatedAt: pointy.GetPointer(v.UpdatedAt.UnixMilli()),
  86. },
  87. Status: &v.Status,
  88. WxWxid: &v.WxWxid,
  89. Type: &v.Type,
  90. Wxid: &v.Wxid,
  91. Account: &v.Account,
  92. Nickname: &v.Nickname,
  93. Markname: &v.Markname,
  94. Headimg: &v.Headimg,
  95. Sex: &v.Sex,
  96. Starrole: &v.Starrole,
  97. Dontseeit: &v.Dontseeit,
  98. Dontseeme: &v.Dontseeme,
  99. Lag: &v.Lag,
  100. Gid: &v.Gid,
  101. Gname: &v.Gname,
  102. V3: &v.V3,
  103. LabelRelationships: labelRelationships,
  104. })
  105. }
  106. return resp, nil
  107. }