get_allow_block_list_logic.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package whatsapp
  2. import (
  3. "context"
  4. "wechat-api/ent/predicate"
  5. "wechat-api/ent/whatsapp"
  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 GetAllowBlockListLogic struct {
  12. logx.Logger
  13. ctx context.Context
  14. svcCtx *svc.ServiceContext
  15. }
  16. func NewGetAllowBlockListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetAllowBlockListLogic {
  17. return &GetAllowBlockListLogic{
  18. Logger: logx.WithContext(ctx),
  19. ctx: ctx,
  20. svcCtx: svcCtx}
  21. }
  22. func (l *GetAllowBlockListLogic) GetAllowBlockList(req *types.IDReq) (resp *types.WhatsappAllowBlockListResp, err error) {
  23. isAdmin := l.ctx.Value("isAdmin").(bool)
  24. var predicates []predicate.Whatsapp
  25. predicates = append(predicates, whatsapp.IDEQ(req.Id))
  26. if !isAdmin {
  27. organizationId := l.ctx.Value("organizationId").(uint64)
  28. predicates = append(predicates, whatsapp.OrganizationID(organizationId))
  29. }
  30. whatsappInfo, err := l.svcCtx.DB.Whatsapp.Query().
  31. Where(predicates...).
  32. Only(l.ctx)
  33. if err != nil {
  34. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  35. }
  36. resp = &types.WhatsappAllowBlockListResp{}
  37. resp.Data = types.WhatsappAllowBlockListRespData{}
  38. allowListData := ""
  39. if whatsappInfo.AllowList == nil || len(whatsappInfo.AllowList) == 0 || whatsappInfo.AllowList[0] == "ALL" {
  40. allowListData = "ALL"
  41. } else if len(whatsappInfo.AllowList) > 0 {
  42. for _, av := range whatsappInfo.AllowList {
  43. allowListData += av + "\n"
  44. }
  45. }
  46. resp.Data.AllowList = &allowListData
  47. groupAllowListData := ""
  48. if whatsappInfo.GroupAllowList == nil || len(whatsappInfo.GroupAllowList) == 0 || whatsappInfo.GroupAllowList[0] == "ALL" {
  49. groupAllowListData = "ALL"
  50. } else if len(whatsappInfo.GroupAllowList) > 0 {
  51. for _, gav := range whatsappInfo.GroupAllowList {
  52. groupAllowListData += gav + "\n"
  53. }
  54. }
  55. resp.Data.GroupAllowList = &groupAllowListData
  56. blockListData := ""
  57. if whatsappInfo.BlockList != nil && len(whatsappInfo.BlockList) > 0 {
  58. if whatsappInfo.BlockList[0] == "ALL" {
  59. blockListData = "ALL"
  60. } else {
  61. for _, bv := range whatsappInfo.BlockList {
  62. blockListData += bv + "\n"
  63. }
  64. }
  65. }
  66. resp.Data.BlockList = &blockListData
  67. groupBlockListData := ""
  68. if whatsappInfo.GroupBlockList != nil && len(whatsappInfo.GroupBlockList) > 0 {
  69. if whatsappInfo.GroupBlockList[0] == "ALL" {
  70. groupBlockListData = "ALL"
  71. } else {
  72. for _, gbv := range whatsappInfo.GroupBlockList {
  73. blockListData += gbv + "\n"
  74. }
  75. }
  76. }
  77. resp.Data.GroupBlockList = &groupBlockListData
  78. return resp, nil
  79. }