pointdata.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/esports/model"
  5. )
  6. // Game get game.
  7. func (s *Service) Game(c context.Context, p *model.ParamGame) (rs map[int64]*model.Game, err error) {
  8. var (
  9. ok bool
  10. games []*model.Game
  11. gameMap map[int64]*model.Game
  12. )
  13. rs = make(map[int64]*model.Game, len(p.GameIDs))
  14. if p.Tp == _lolType {
  15. if games, ok = s.lolGameMap.Data[p.MatchID]; !ok {
  16. return
  17. }
  18. } else if p.Tp == _dotaType {
  19. if games, ok = s.dotaGameMap.Data[p.MatchID]; !ok {
  20. return
  21. }
  22. }
  23. count := len(games)
  24. if count == 0 {
  25. return
  26. }
  27. gameMap = make(map[int64]*model.Game, count)
  28. for _, game := range games {
  29. gameMap[game.ID] = game
  30. }
  31. for _, id := range p.GameIDs {
  32. if game, ok := gameMap[id]; ok {
  33. rs[id] = game
  34. }
  35. }
  36. return
  37. }
  38. // Items get items.
  39. func (s *Service) Items(c context.Context, p *model.ParamLeidas) (rs map[int64]*model.Item, err error) {
  40. rs = make(map[int64]*model.Item, len(p.IDs))
  41. if p.Tp == _lolType {
  42. for _, id := range p.IDs {
  43. if item, ok := s.lolItemsMap.Data[id]; ok {
  44. rs[id] = item
  45. }
  46. }
  47. } else if p.Tp == _dotaType {
  48. for _, id := range p.IDs {
  49. if item, ok := s.dotaItemsMap.Data[id]; ok {
  50. rs[id] = item
  51. }
  52. }
  53. }
  54. return
  55. }
  56. // Heroes lol:champions ; dota2 heroes.
  57. func (s *Service) Heroes(c context.Context, p *model.ParamLeidas) (rs interface{}, err error) {
  58. var (
  59. champions map[int64]*model.Champion
  60. dotaHeroes map[int64]*model.Hero
  61. )
  62. if p.Tp == _lolType {
  63. champions = make(map[int64]*model.Champion, len(p.IDs))
  64. for _, id := range p.IDs {
  65. if item, ok := s.lolChampions.Data[id]; ok {
  66. champions[id] = item
  67. }
  68. }
  69. rs = champions
  70. } else if p.Tp == _dotaType {
  71. dotaHeroes = make(map[int64]*model.Hero, len(p.IDs))
  72. for _, id := range p.IDs {
  73. if item, ok := s.dotaHeroes.Data[id]; ok {
  74. dotaHeroes[id] = item
  75. }
  76. }
  77. rs = dotaHeroes
  78. }
  79. return
  80. }
  81. // Abilities lol:spells;dota2:abilities.
  82. func (s *Service) Abilities(c context.Context, p *model.ParamLeidas) (rs interface{}, err error) {
  83. infos := make(map[int64]*model.LdInfo, len(p.IDs))
  84. if p.Tp == _lolType {
  85. for _, id := range p.IDs {
  86. if info, ok := s.lolSpells.Data[id]; ok {
  87. infos[id] = info
  88. }
  89. }
  90. rs = infos
  91. } else if p.Tp == _dotaType {
  92. for _, id := range p.IDs {
  93. if info, ok := s.dotaAbilities.Data[id]; ok {
  94. infos[id] = info
  95. }
  96. }
  97. rs = infos
  98. }
  99. return
  100. }
  101. // Players get players.
  102. func (s *Service) Players(c context.Context, p *model.ParamLeidas) (rs interface{}, err error) {
  103. infos := make(map[int64]*model.LdInfo, len(p.IDs))
  104. if p.Tp == _lolType {
  105. for _, id := range p.IDs {
  106. if info, ok := s.lolPlayers.Data[id]; ok {
  107. infos[id] = info
  108. }
  109. }
  110. rs = infos
  111. } else if p.Tp == _dotaType {
  112. for _, id := range p.IDs {
  113. if info, ok := s.dotaPlayers.Data[id]; ok {
  114. infos[id] = info
  115. }
  116. }
  117. rs = infos
  118. }
  119. return
  120. }