service.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package ad
  2. import (
  3. "context"
  4. "sort"
  5. "strings"
  6. "time"
  7. "go-common/app/interface/main/creative/conf"
  8. gD "go-common/app/interface/main/creative/dao/game"
  9. porderD "go-common/app/interface/main/creative/dao/porder"
  10. gM "go-common/app/interface/main/creative/model/game"
  11. porderM "go-common/app/interface/main/creative/model/porder"
  12. "go-common/app/interface/main/creative/service"
  13. "go-common/library/log"
  14. )
  15. //Service struct.
  16. type Service struct {
  17. c *conf.Config
  18. game *gD.Dao
  19. porder *porderD.Dao
  20. industryList []*porderM.Config
  21. showList []*porderM.Config
  22. }
  23. //New get service.
  24. func New(c *conf.Config, rpcdaos *service.RPCDaos) *Service {
  25. s := &Service{
  26. c: c,
  27. game: gD.New(c),
  28. porder: porderD.New(c),
  29. industryList: []*porderM.Config{},
  30. showList: []*porderM.Config{},
  31. }
  32. s.loadPorderConfigList()
  33. go s.loadproc()
  34. return s
  35. }
  36. // GameList fn
  37. func (s *Service) GameList(c context.Context, keywordStr, letterStr string, pn, ps int, ip string) (glist *gM.ListWithPager, err error) {
  38. list, err := s.game.List(context.TODO(), keywordStr, ip)
  39. if err != nil || len(list) == 0 {
  40. return
  41. }
  42. res := []*gM.ListItem{}
  43. if len(letterStr) > 0 {
  44. letterStr = strings.ToUpper(string(letterStr[0]))
  45. for _, ele := range list {
  46. if ele.Letter == letterStr {
  47. res = append(res, ele)
  48. }
  49. }
  50. } else {
  51. res = list
  52. }
  53. sort.Slice(res, func(i, j int) bool { return res[i].GameBaseID > res[j].GameBaseID })
  54. total := len(res)
  55. start := (pn - 1) * ps
  56. end := pn * ps
  57. glist = &gM.ListWithPager{
  58. Pn: pn,
  59. Ps: ps,
  60. Total: total,
  61. }
  62. if total <= start {
  63. glist.List = make([]*gM.ListItem, 0)
  64. } else if total <= end {
  65. glist.List = res[start:total]
  66. } else {
  67. glist.List = res[start:end]
  68. }
  69. return
  70. }
  71. // IndustryList fn
  72. func (s *Service) IndustryList(c context.Context) (list []*porderM.Config, err error) {
  73. list = s.industryList
  74. return
  75. }
  76. // ShowList fn
  77. func (s *Service) ShowList(c context.Context) (list []*porderM.Config, err error) {
  78. list = s.showList
  79. return
  80. }
  81. func (s *Service) loadproc() {
  82. //for wait rpc client connect
  83. time.Sleep(time.Duration(2 * time.Second))
  84. for {
  85. s.loadPorderConfigList()
  86. time.Sleep(time.Duration(2 * time.Minute))
  87. }
  88. }
  89. func (s *Service) loadPorderConfigList() {
  90. list, err := s.porder.ListConfig(context.TODO())
  91. if err != nil || list == nil || len(list) == 0 {
  92. return
  93. }
  94. s.industryList = []*porderM.Config{}
  95. s.showList = []*porderM.Config{}
  96. for _, v := range list {
  97. if v.Tp == porderM.ConfigTypeIndustry {
  98. s.industryList = append(s.industryList, v)
  99. }
  100. if v.Tp == porderM.ConfigTypeShow {
  101. s.showList = append(s.showList, v)
  102. }
  103. }
  104. log.Info("ListConfig (%d)|(%d)", len(s.showList), len(s.industryList))
  105. }