splash.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package goblin
  2. import (
  3. "time"
  4. "go-common/app/interface/main/tv/model"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. )
  8. func (s *Service) loadSphproc() {
  9. for {
  10. time.Sleep(time.Duration(s.conf.Cfg.PageReload))
  11. log.Info("Reload Splash Data!")
  12. s.loadSph()
  13. }
  14. }
  15. func (s *Service) loadSph() {
  16. var (
  17. err error
  18. chls []*model.Channel
  19. chlSplash = make(map[string]string)
  20. )
  21. // pick channel's splash data
  22. if chls, err = s.dao.ChlInfo(ctx); err != nil {
  23. log.Error("LoadSph Error (%v)", err)
  24. return
  25. }
  26. if len(chls) == 0 {
  27. log.Error("loadSph Channel Data is Empty!")
  28. return
  29. }
  30. // travel the channels to make the map
  31. for _, v := range chls {
  32. chlSplash[v.Title] = v.Splash
  33. }
  34. s.ChlSplash = chlSplash
  35. log.Info("Reload %d Channel Data", len(chlSplash))
  36. }
  37. // PickSph picks the splash data from memory map
  38. func (s *Service) PickSph(channel string) (sph string, err error) {
  39. var ok bool
  40. if len(s.ChlSplash) == 0 {
  41. log.Error("Channel Data is Nil")
  42. return "", ecode.ServiceUnavailable
  43. }
  44. if sph, ok = s.ChlSplash[channel]; !ok {
  45. sph = s.conf.Cfg.DefaultSplash
  46. }
  47. return sph, nil
  48. }