service.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package web
  2. import (
  3. "context"
  4. "time"
  5. tagrpc "go-common/app/interface/main/tag/rpc/client"
  6. "go-common/app/interface/main/web-goblin/conf"
  7. "go-common/app/interface/main/web-goblin/dao/web"
  8. webmdl "go-common/app/interface/main/web-goblin/model/web"
  9. arcrpc "go-common/app/service/main/archive/api/gorpc"
  10. "go-common/library/log"
  11. )
  12. const _chCardTypeAv = "av"
  13. // Service struct .
  14. type Service struct {
  15. c *conf.Config
  16. dao *web.Dao
  17. arc *arcrpc.Service2
  18. tag *tagrpc.Service
  19. maxAid int64
  20. channelCards map[int64][]*webmdl.ChCard
  21. }
  22. // New init .
  23. func New(c *conf.Config) (s *Service) {
  24. s = &Service{
  25. c: c,
  26. dao: web.New(c),
  27. arc: arcrpc.New2(c.ArchiveRPC),
  28. tag: tagrpc.New2(c.TagRPC),
  29. }
  30. go s.justAID()
  31. go s.chCardproc()
  32. return s
  33. }
  34. // Ping Service .
  35. func (s *Service) Ping(c context.Context) (err error) {
  36. return s.dao.Ping(c)
  37. }
  38. // Close Service .
  39. func (s *Service) Close() {
  40. s.dao.Close()
  41. }
  42. func (s *Service) chCardproc() {
  43. for {
  44. now := time.Now()
  45. cardMap, err := s.dao.ChCard(context.Background(), now)
  46. if err != nil {
  47. log.Error("chCardproc s.dao.ChCard() error(%v)", err)
  48. time.Sleep(time.Second)
  49. }
  50. l := len(cardMap)
  51. if l == 0 {
  52. time.Sleep(time.Duration(s.c.Rule.ChCardInterval))
  53. continue
  54. }
  55. tmp := make(map[int64][]*webmdl.ChCard, l)
  56. for channelID, card := range cardMap {
  57. for _, v := range card {
  58. if v.Type == _chCardTypeAv {
  59. tmp[channelID] = append(tmp[channelID], v)
  60. }
  61. }
  62. }
  63. s.channelCards = tmp
  64. time.Sleep(time.Duration(s.c.Rule.ChCardInterval))
  65. }
  66. }