get_label_contacts_logic.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. organizationId := l.ctx.Value("organizationId").(uint64)
  28. if len(req.LabelIDs) == 0 {
  29. return nil, errors.New("label id list cannot be empty")
  30. }
  31. var predicates []predicate.Label
  32. predicates = append(predicates, label.OrganizationIDEQ(organizationId))
  33. predicates = append(predicates, label.Ctype(1))
  34. if len(req.LabelIDs) > 0 {
  35. predicates = append(predicates, label.IDIn(req.LabelIDs...))
  36. }
  37. if req.Type != nil {
  38. predicates = append(predicates, label.TypeEQ(*req.Type))
  39. }
  40. if req.Name != nil {
  41. predicates = append(predicates, label.NameContains(*req.Name))
  42. }
  43. if req.From != nil {
  44. predicates = append(predicates, label.FromEQ(*req.From))
  45. }
  46. if req.Mode != nil {
  47. predicates = append(predicates, label.ModeEQ(*req.Mode))
  48. }
  49. data, err := l.svcCtx.DB.Label.Query().Where(predicates...).WithLabelRelationships(func(query *ent.LabelRelationshipQuery) {
  50. query.WithContacts()
  51. }).Page(l.ctx, req.Page, req.PageSize)
  52. if err != nil {
  53. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  54. }
  55. resp := &types.LabelListResp{}
  56. resp.Msg = errormsg.Success
  57. resp.Data.Total = data.PageDetails.Total
  58. for _, v := range data.List {
  59. labelRelationships := make([]types.LabelRelationshipInfo, 0)
  60. if v.Edges.LabelRelationships != nil {
  61. for _, lr := range v.Edges.LabelRelationships {
  62. labelRelationships = append(labelRelationships, types.LabelRelationshipInfo{
  63. BaseIDInfo: types.BaseIDInfo{
  64. Id: &lr.ID,
  65. CreatedAt: pointy.GetPointer(lr.CreatedAt.UnixMilli()),
  66. UpdatedAt: pointy.GetPointer(lr.UpdatedAt.UnixMilli()),
  67. },
  68. Status: &lr.Status,
  69. LabelId: &lr.LabelID,
  70. ContactId: &lr.ContactID,
  71. Contact: convertContactToContactInfo(lr.Edges.Contacts),
  72. })
  73. }
  74. }
  75. resp.Data.Data = append(resp.Data.Data,
  76. types.LabelInfo{
  77. BaseIDInfo: types.BaseIDInfo{
  78. Id: &v.ID,
  79. CreatedAt: pointy.GetPointer(v.CreatedAt.UnixMilli()),
  80. UpdatedAt: pointy.GetPointer(v.UpdatedAt.UnixMilli()),
  81. },
  82. Status: &v.Status,
  83. Type: &v.Type,
  84. Name: &v.Name,
  85. From: &v.From,
  86. Mode: &v.Mode,
  87. Conditions: &v.Conditions,
  88. LabelRelationships: labelRelationships,
  89. })
  90. }
  91. return resp, nil
  92. }