get_label_contacts_logic.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package label
  2. import (
  3. "context"
  4. "errors"
  5. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  6. "github.com/suyuan32/simple-admin-common/utils/pointy"
  7. "wechat-api/ent"
  8. "wechat-api/ent/label"
  9. "wechat-api/ent/predicate"
  10. "wechat-api/internal/utils/dberrorhandler"
  11. "wechat-api/internal/svc"
  12. "wechat-api/internal/types"
  13. "github.com/zeromicro/go-zero/core/logx"
  14. )
  15. type GetLabelContactsLogic struct {
  16. logx.Logger
  17. ctx context.Context
  18. svcCtx *svc.ServiceContext
  19. }
  20. func NewGetLabelContactsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetLabelContactsLogic {
  21. return &GetLabelContactsLogic{
  22. Logger: logx.WithContext(ctx),
  23. ctx: ctx,
  24. svcCtx: svcCtx}
  25. }
  26. func (l *GetLabelContactsLogic) GetLabelContacts(req *types.LabelListReq) (*types.LabelListResp, error) {
  27. if len(req.LabelIDs) == 0 {
  28. return nil, errors.New("label id list cannot be empty")
  29. }
  30. var predicates []predicate.Label
  31. if len(req.LabelIDs) > 0 {
  32. predicates = append(predicates, label.IDIn(req.LabelIDs...))
  33. }
  34. if req.Type != nil {
  35. predicates = append(predicates, label.TypeEQ(*req.Type))
  36. }
  37. if req.Name != nil {
  38. predicates = append(predicates, label.NameContains(*req.Name))
  39. }
  40. if req.From != nil {
  41. predicates = append(predicates, label.FromEQ(*req.From))
  42. }
  43. if req.Mode != nil {
  44. predicates = append(predicates, label.ModeEQ(*req.Mode))
  45. }
  46. data, err := l.svcCtx.DB.Label.Query().Where(predicates...).WithLabelRelationships(func(query *ent.LabelRelationshipQuery) {
  47. query.WithContacts()
  48. }).Page(l.ctx, req.Page, req.PageSize)
  49. if err != nil {
  50. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  51. }
  52. resp := &types.LabelListResp{}
  53. resp.Msg = errormsg.Success
  54. resp.Data.Total = data.PageDetails.Total
  55. for _, v := range data.List {
  56. labelRelationships := make([]types.LabelRelationshipInfo, 0)
  57. if v.Edges.LabelRelationships != nil {
  58. for _, lr := range v.Edges.LabelRelationships {
  59. labelRelationships = append(labelRelationships, types.LabelRelationshipInfo{
  60. BaseIDInfo: types.BaseIDInfo{
  61. Id: &lr.ID,
  62. CreatedAt: pointy.GetPointer(lr.CreatedAt.UnixMilli()),
  63. UpdatedAt: pointy.GetPointer(lr.UpdatedAt.UnixMilli()),
  64. },
  65. Status: &lr.Status,
  66. LabelId: &lr.LabelID,
  67. ContactId: &lr.ContactID,
  68. Contact: convertContactToContactInfo(lr.Edges.Contacts),
  69. })
  70. }
  71. }
  72. resp.Data.Data = append(resp.Data.Data,
  73. types.LabelInfo{
  74. BaseIDInfo: types.BaseIDInfo{
  75. Id: &v.ID,
  76. CreatedAt: pointy.GetPointer(v.CreatedAt.UnixMilli()),
  77. UpdatedAt: pointy.GetPointer(v.UpdatedAt.UnixMilli()),
  78. },
  79. Status: &v.Status,
  80. Type: &v.Type,
  81. Name: &v.Name,
  82. From: &v.From,
  83. Mode: &v.Mode,
  84. Conditions: &v.Conditions,
  85. LabelRelationships: labelRelationships,
  86. })
  87. }
  88. return resp, nil
  89. }