guide.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package guide
  2. import (
  3. "encoding/json"
  4. "hash/crc32"
  5. "io/ioutil"
  6. "os"
  7. "strconv"
  8. "time"
  9. "go-common/app/interface/main/app-resource/conf"
  10. "go-common/app/interface/main/app-resource/model/guide"
  11. "go-common/library/log"
  12. "go-common/library/log/infoc"
  13. )
  14. var (
  15. _emptyinterest = []*guide.Interest{}
  16. )
  17. // Service interest service.
  18. type Service struct {
  19. c *conf.Config
  20. cache []*guide.Interest
  21. interestPath string
  22. // infoc
  23. logCh chan interface{}
  24. inf2 *infoc.Infoc
  25. }
  26. // New new a interest service.
  27. func New(c *conf.Config) (s *Service) {
  28. s = &Service{
  29. c: c,
  30. cache: []*guide.Interest{},
  31. interestPath: c.InterestJSONFile,
  32. // infoc
  33. logCh: make(chan interface{}, 1024),
  34. inf2: infoc.New(c.InterestInfoc),
  35. }
  36. s.loadInterestJSON()
  37. return
  38. }
  39. // Interest buvid or time gray
  40. func (s *Service) Interest(mobiApp, buvid string, now time.Time) (res []*guide.Interest) {
  41. res = s.cache
  42. // if buvid != "" && mobiApp == "android" {
  43. // if crc32.ChecksumIEEE([]byte(reverseString(buvid)))%5 < 2 {
  44. // log.Info("interest_buvid_miss")
  45. // res = _emptyinterest
  46. // return
  47. // }
  48. // }
  49. if len(res) == 0 {
  50. log.Info("interest_null")
  51. res = _emptyinterest
  52. return
  53. }
  54. log.Info("interest_hit")
  55. return
  56. }
  57. // Interest2 is
  58. func (s *Service) Interest2(mobiApp, device, deviceid, buvid string, build int, now time.Time) (res *guide.InterestTM) {
  59. res = &guide.InterestTM{}
  60. // switch group := int(crc32.ChecksumIEEE([]byte(buvid)) % 20); group {
  61. // case 9, 18:
  62. // res = &guide.InterestTM{
  63. // Interests: s.cache,
  64. // }
  65. // }
  66. id := crc32.ChecksumIEEE([]byte(reverseString(buvid))) % 100
  67. if id < 5 {
  68. res.FeedType = 1
  69. }
  70. switch mobiApp {
  71. case "iphone_b", "android_b":
  72. res.FeedType = 0
  73. }
  74. //infoc
  75. b, _ := json.Marshal(&s.cache)
  76. s.inf2.Info(mobiApp, device, strconv.Itoa(build), buvid, deviceid, now.Format("2006-01-02 15:04:05"), strconv.Itoa(res.FeedType), string(b))
  77. log.Info("interest_infoc_index(%s,%s,%s,%s,%s,%s,%s)_list(%s)", mobiApp, device, strconv.Itoa(build), buvid, deviceid,
  78. now.Format("2006-01-02 15:04:05"), strconv.Itoa(res.FeedType), string(b))
  79. return
  80. }
  81. func reverseString(s string) string {
  82. runes := []rune(s)
  83. for from, to := 0, len(runes)-1; from < to; from, to = from+1, to-1 {
  84. runes[from], runes[to] = runes[to], runes[from]
  85. }
  86. return string(runes)
  87. }
  88. // loadInterestJSON load interest json
  89. func (s *Service) loadInterestJSON() {
  90. file, err := os.Open(s.interestPath)
  91. if err != nil {
  92. log.Error("os.Open(%s) error(%v)", s.interestPath, err)
  93. return
  94. }
  95. defer file.Close()
  96. bs, err := ioutil.ReadAll(file)
  97. if err != nil {
  98. log.Error("ioutil.ReadAll err %v", err)
  99. return
  100. }
  101. res := []*guide.Interest{}
  102. if err = json.Unmarshal(bs, &res); err != nil {
  103. log.Error("json.Unmarshal() file(%s) error(%v)", s.interestPath, err)
  104. }
  105. s.cache = res
  106. log.Info("loadInterestJSON success")
  107. }