service.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package pay
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/app/interface/main/creative/dao/faq"
  6. "go-common/app/interface/main/creative/dao/pay"
  7. "go-common/app/interface/main/creative/dao/up"
  8. faqMdl "go-common/app/interface/main/creative/model/faq"
  9. "go-common/app/interface/main/creative/service"
  10. "go-common/library/log"
  11. "go-common/library/sync/pipeline/fanout"
  12. "time"
  13. )
  14. //Service struct
  15. type Service struct {
  16. c *conf.Config
  17. faq *faq.Dao
  18. cache *fanout.Fanout
  19. pay *pay.Dao
  20. up *up.Dao
  21. exemptUgcPayUps map[int64]int64
  22. }
  23. //New get service
  24. func New(c *conf.Config, rpcdaos *service.RPCDaos) *Service {
  25. s := &Service{
  26. c: c,
  27. faq: faq.New(c),
  28. pay: pay.New(c),
  29. up: rpcdaos.Up,
  30. cache: fanout.New("service_ugcpay", fanout.Worker(1), fanout.Buffer(10240)),
  31. }
  32. s.loadExemptUgcPayUps()
  33. go s.loadproc()
  34. return s
  35. }
  36. // loadExemptUgcPayUps
  37. func (s *Service) loadExemptUgcPayUps() {
  38. ups, err := s.up.UpSpecial(context.TODO(), 17)
  39. if err != nil {
  40. return
  41. }
  42. s.exemptUgcPayUps = ups
  43. }
  44. // loadproc
  45. func (s *Service) loadproc() {
  46. for {
  47. time.Sleep(5 * time.Minute)
  48. s.loadExemptUgcPayUps()
  49. }
  50. }
  51. // Pre fn
  52. func (s *Service) Pre(c context.Context, mid int64) (PrePay map[string]interface{}, err error) {
  53. PrePay = map[string]interface{}{
  54. "protocol_id": s.c.UgcPay.ProtocolID,
  55. "protocol_need_read": false,
  56. "white": false,
  57. }
  58. log.Warn("s.exemptUgcPayUps (%+v)", s.exemptUgcPayUps)
  59. if _, ok := s.exemptUgcPayUps[mid]; ok {
  60. PrePay["protocol_need_read"] = true
  61. PrePay["white"] = true
  62. if accept, _ := s.pay.UserAcceptProtocol(c, s.c.UgcPay.ProtocolID, mid); accept {
  63. PrePay["protocol_need_read"] = false
  64. }
  65. }
  66. return
  67. }
  68. // Protocol fn
  69. func (s *Service) Protocol(c context.Context, protocolID string) (pd *faqMdl.Detail, err error) {
  70. resD := make([]*faqMdl.Detail, 0)
  71. var (
  72. total int
  73. protocolLimitLength = int(1000)
  74. )
  75. if resD, total, err = s.faq.DetailCache(c, faqMdl.FaqUgcProtocolQuesTypeID, 1, 1, protocolLimitLength); err != nil || len(resD) == 0 {
  76. if resD, total, err = s.faq.Detail(context.Background(), faqMdl.FaqUgcProtocolQuesTypeID, 1, 1, protocolLimitLength); err != nil {
  77. log.Error("s.faq.Detail(%s,%d,%d,%d) error(%v)", faqMdl.FaqUgcProtocolQuesTypeID, 1, 1, protocolLimitLength, err)
  78. return
  79. }
  80. }
  81. if len(resD) > 0 {
  82. s.cache.Do(c, func(c context.Context) {
  83. s.faq.SetDetailCache(context.Background(), faqMdl.FaqUgcProtocolQuesTypeID, 1, 1, protocolLimitLength, total, resD)
  84. })
  85. for _, v := range resD {
  86. if v.AnswerID == protocolID {
  87. pd = v
  88. return
  89. }
  90. }
  91. }
  92. return
  93. }
  94. // White fn
  95. func (s *Service) White(c context.Context, mid int64) (white bool, err error) {
  96. if _, ok := s.exemptUgcPayUps[mid]; ok {
  97. white = true
  98. }
  99. return
  100. }