search.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. package dao
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "strings"
  7. "time"
  8. "go-common/app/interface/main/esports/model"
  9. arcMdl "go-common/app/service/main/archive/model/archive"
  10. "go-common/library/database/elastic"
  11. "go-common/library/ecode"
  12. "go-common/library/log"
  13. "go-common/library/net/metadata"
  14. )
  15. const (
  16. _esports = "esports"
  17. _contest = "esports_contests"
  18. _videomap = "esports_map"
  19. _matchmap = "esports_contests_map"
  20. _calendar = "esports_contests_date"
  21. _contestFav = "esports_fav"
  22. _searchPlatform = "web"
  23. _fromSource = "esports_search"
  24. _searchType = "vesports"
  25. _searchVer = "v3"
  26. _orderRank = "totalrank"
  27. _orderHot = "hot"
  28. _orderPub = "pubdate"
  29. _active = 1
  30. _pageNum = 1
  31. _pageSize = 1000
  32. )
  33. // Search search api.
  34. func (d *Dao) Search(c context.Context, mid int64, p *model.ParamSearch, buvid string) (rs *model.SearchEsp, err error) {
  35. var (
  36. params = url.Values{}
  37. ip = metadata.String(c, metadata.RemoteIP)
  38. )
  39. params.Set("keyword", p.Keyword)
  40. params.Set("platform", _searchPlatform)
  41. params.Set("from_source", _fromSource)
  42. params.Set("search_type", _searchType)
  43. params.Set("main_ver", _searchVer)
  44. params.Set("clientip", ip)
  45. params.Set("userid", strconv.FormatInt(mid, 10))
  46. params.Set("buvid", buvid)
  47. params.Set("page", strconv.Itoa(p.Pn))
  48. params.Set("pagesize", strconv.Itoa(p.Ps))
  49. if p.Sort == 0 {
  50. params.Set("order", _orderRank)
  51. } else if p.Sort == 1 {
  52. params.Set("order", _orderPub)
  53. } else if p.Sort == 2 {
  54. params.Set("order", _orderHot)
  55. }
  56. if err = d.http.Get(c, d.searchURL, ip, params, &rs); err != nil {
  57. log.Error("Search接口错误 Search d.http.Get(%s) error(%v)", d.searchURL+"?"+params.Encode(), err)
  58. return
  59. }
  60. if rs.Code != ecode.OK.Code() {
  61. log.Error("Search接口code错误 Search d.http.Do(%s) code error(%d)", d.searchURL, rs.Code)
  62. err = ecode.Int(rs.Code)
  63. }
  64. return
  65. }
  66. // SearchVideo search video.
  67. func (d *Dao) SearchVideo(c context.Context, p *model.ParamVideo) (rs []*model.SearchVideo, total int, err error) {
  68. var res struct {
  69. Page model.Page `json:"page"`
  70. Result []*model.SearchVideo `json:"result"`
  71. }
  72. states := []int64{arcMdl.StateForbidFixed, arcMdl.StateOpen, arcMdl.StateOrange}
  73. r := d.ela.NewRequest(_esports).WhereIn("state", states).WhereEq("is_deleted", 0).Fields("aid").Index(_esports).Pn(p.Pn).Ps(p.Ps)
  74. if p.Gid > 0 {
  75. r.WhereEq("gid", p.Gid)
  76. }
  77. if p.Mid > 0 {
  78. r.WhereEq("matchs", p.Mid)
  79. }
  80. if p.Year > 0 {
  81. r.WhereEq("year", p.Year)
  82. }
  83. if p.Tid > 0 {
  84. r.WhereEq("teams", p.Tid)
  85. }
  86. if p.Tag > 0 {
  87. r.WhereEq("tags", p.Tag)
  88. }
  89. if p.Sort == 0 {
  90. r.Order("score", elastic.OrderDesc)
  91. } else if p.Sort == 1 {
  92. r.Order("pubtime", elastic.OrderDesc)
  93. } else if p.Sort == 2 {
  94. r.Order("click", elastic.OrderDesc)
  95. }
  96. if err = r.Scan(c, &res); err != nil {
  97. log.Error("r.Scan error(%v)", err)
  98. return
  99. }
  100. total = res.Page.Total
  101. rs = res.Result
  102. return
  103. }
  104. // SearchContest search contest.
  105. func (d *Dao) SearchContest(c context.Context, p *model.ParamContest) (rs []*model.Contest, total int, err error) {
  106. var res struct {
  107. Page model.Page `json:"page"`
  108. Result []*model.Contest `json:"result"`
  109. }
  110. r := d.ela.NewRequest(_contest).Index(_contest).WhereEq("status", 0).Pn(p.Pn).Ps(p.Ps)
  111. r.Fields("id", "game_stage", "stime", "etime", "home_id", "away_id", "home_score", "away_score", "live_room", "aid", "collection", "game_state", "dic", "ctime", "mtime", "status", "sid", "mid")
  112. if p.Sort == 1 {
  113. r.Order("stime", elastic.OrderDesc)
  114. } else {
  115. r.Order("stime", elastic.OrderAsc)
  116. }
  117. if p.Gid > 0 {
  118. r.WhereEq("gid", p.Gid)
  119. }
  120. if p.Mid > 0 {
  121. r.WhereEq("mid", p.Mid)
  122. }
  123. if p.Tid > 0 {
  124. r.WhereOr("home_id", p.Tid).WhereOr("away_id", p.Tid)
  125. }
  126. if p.Stime != "" && p.Etime != "" {
  127. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime+" 00:00:00", time.Local)
  128. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime+" 23:59:59", time.Local)
  129. r.WhereRange("stime", start.Unix(), end.Unix(), elastic.RangeScopeLcRc)
  130. } else if p.Stime != "" && p.Etime == "" {
  131. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime+" 00:00:00", time.Local)
  132. r.WhereRange("stime", start.Unix(), "", elastic.RangeScopeLcRo)
  133. } else if p.Stime == "" && p.Etime != "" {
  134. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime+" 23:59:59", time.Local)
  135. r.WhereRange("stime", "", end.Unix(), elastic.RangeScopeLoRc)
  136. }
  137. if p.GState != "" {
  138. r.WhereIn("game_state", strings.Split(p.GState, ","))
  139. }
  140. if len(p.Sids) > 0 {
  141. r.WhereIn("sid", p.Sids)
  142. }
  143. if err = r.Scan(c, &res); err != nil {
  144. log.Error("r.Scan error(%v)", err)
  145. return
  146. }
  147. total = res.Page.Total
  148. rs = res.Result
  149. return
  150. }
  151. // SearchContestQuery search contest.
  152. func (d *Dao) SearchContestQuery(c context.Context, p *model.ParamContest) (rs []*model.Contest, total int, err error) {
  153. var res struct {
  154. Page model.Page `json:"page"`
  155. Result []*model.Contest `json:"result"`
  156. }
  157. r := d.ela.NewRequest(_contest).Index(_contest).WhereEq("status", 0).Pn(p.Pn).Ps(p.Ps)
  158. r.Fields("id", "game_stage", "stime", "etime", "home_id", "away_id", "home_score", "away_score", "live_room", "aid", "collection", "game_state", "dic", "ctime", "mtime", "status", "sid", "mid")
  159. if p.Sort == 1 {
  160. r.Order("stime", elastic.OrderDesc)
  161. } else {
  162. r.Order("stime", elastic.OrderAsc)
  163. }
  164. if p.Gid > 0 {
  165. r.WhereEq("gid", p.Gid)
  166. }
  167. if p.Mid > 0 {
  168. r.WhereEq("mid", p.Mid)
  169. }
  170. if p.Tid > 0 {
  171. r.WhereOr("home_id", p.Tid).WhereOr("away_id", p.Tid)
  172. }
  173. if p.Stime != "" && p.Etime != "" {
  174. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime, time.Local)
  175. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime, time.Local)
  176. r.WhereRange("stime", start.Unix(), end.Unix(), elastic.RangeScopeLcRc)
  177. } else if p.Stime != "" && p.Etime == "" {
  178. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime, time.Local)
  179. r.WhereRange("stime", start.Unix(), "", elastic.RangeScopeLcRo)
  180. } else if p.Stime == "" && p.Etime != "" {
  181. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime, time.Local)
  182. r.WhereRange("stime", "", end.Unix(), elastic.RangeScopeLoRc)
  183. }
  184. if p.GState != "" {
  185. r.WhereIn("game_state", strings.Split(p.GState, ","))
  186. }
  187. if len(p.Sids) > 0 {
  188. r.WhereIn("sid", p.Sids)
  189. }
  190. if err = r.Scan(c, &res); err != nil {
  191. log.Error("r.Scan error(%v)", err)
  192. return
  193. }
  194. total = res.Page.Total
  195. rs = res.Result
  196. return
  197. }
  198. // FilterVideo video filter.
  199. func (d *Dao) FilterVideo(c context.Context, p *model.ParamFilter) (rs *model.FilterES, err error) {
  200. var res struct {
  201. Page model.Page `json:"page"`
  202. Result *model.FilterES `json:"result"`
  203. }
  204. r := d.ela.NewRequest(_videomap).Index(_videomap).Pn(_pageNum).Ps(_pageSize)
  205. r.WhereEq("active", _active).GroupBy("group_by", "gid", nil).GroupBy("group_by", "match", nil).GroupBy("group_by", "tag", nil).GroupBy("group_by", "team", nil).GroupBy("group_by", "year", nil)
  206. if p.Gid > 0 {
  207. r.WhereEq("gid", p.Gid).WhereEq("active", _active)
  208. }
  209. if p.Mid > 0 {
  210. r.WhereEq("match", p.Mid).WhereEq("active", _active)
  211. }
  212. if p.Tid > 0 {
  213. r.WhereOr("team", p.Tid).WhereEq("active", _active)
  214. }
  215. if p.Tag > 0 {
  216. r.WhereEq("tag", p.Tag).WhereEq("active", _active)
  217. }
  218. if p.Year > 0 {
  219. r.WhereEq("year", p.Year).WhereEq("active", _active)
  220. }
  221. if err = r.Scan(c, &res); err != nil {
  222. log.Error("r.Scan error(%v)", err)
  223. return
  224. }
  225. rs = res.Result
  226. return
  227. }
  228. // FilterMatch match filter.
  229. func (d *Dao) FilterMatch(c context.Context, p *model.ParamFilter) (rs *model.FilterES, err error) {
  230. var res struct {
  231. Page model.Page `json:"page"`
  232. Result *model.FilterES `json:"result"`
  233. }
  234. r := d.ela.NewRequest(_matchmap).Index(_matchmap).Pn(_pageNum).Ps(_pageSize)
  235. r.WhereEq("active", _active).GroupBy("group_by", "match", nil).GroupBy("group_by", "gid", nil).GroupBy("group_by", "team", nil)
  236. if p.Mid > 0 {
  237. r.WhereEq("match", p.Mid).WhereEq("active", _active)
  238. }
  239. if p.Gid > 0 {
  240. r.WhereEq("gid", p.Gid).WhereEq("active", _active)
  241. }
  242. if p.Tid > 0 {
  243. r.WhereOr("team", p.Tid).WhereEq("active", _active)
  244. }
  245. if p.Stime != "" {
  246. r.WhereOr("stime", p.Stime).WhereEq("active", _active)
  247. }
  248. if err = r.Scan(c, &res); err != nil {
  249. log.Error("r.Scan error(%v)", err)
  250. return
  251. }
  252. rs = res.Result
  253. return
  254. }
  255. // FilterCale Calendar filter.
  256. func (d *Dao) FilterCale(c context.Context, p *model.ParamFilter) (rs map[string]int64, err error) {
  257. var res struct {
  258. Page model.Page `json:"page"`
  259. Result map[string]int64 `json:"result"`
  260. }
  261. r := d.ela.NewRequest(_calendar).Index(_matchmap).Pn(_pageNum).Ps(_pageSize).WhereEq("active", _active).WhereRange("stime", p.Stime, p.Etime, elastic.RangeScopeLcRc)
  262. r.GroupBy("group_by", "stime", nil)
  263. if p.Mid > 0 {
  264. r.WhereEq("match", p.Mid).WhereEq("active", _active)
  265. }
  266. if p.Gid > 0 {
  267. r.WhereEq("gid", p.Gid).WhereEq("active", _active)
  268. }
  269. if p.Tid > 0 {
  270. r.WhereOr("team", p.Tid).WhereEq("active", _active)
  271. }
  272. if err = r.Scan(c, &res); err != nil {
  273. log.Error("r.Scan error(%v)", err)
  274. return
  275. }
  276. rs = res.Result
  277. return
  278. }
  279. // SearchFav search app fav contest.
  280. func (d *Dao) SearchFav(c context.Context, mid int64, p *model.ParamFav) (rs []int64, total int, err error) {
  281. var res struct {
  282. Page model.Page `json:"page"`
  283. Result []*model.ElaSub `json:"result"`
  284. }
  285. r := d.ela.NewRequest(_contestFav).Index(_contestFav).WhereEq("mid", mid).WhereEq("state", 0).Pn(p.Pn).Ps(p.Ps).Fields("oid")
  286. if p.Sort == 1 {
  287. r.Order("stime", elastic.OrderDesc)
  288. } else {
  289. r.Order("stime", elastic.OrderAsc)
  290. }
  291. if p.Stime != "" && p.Etime != "" {
  292. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime+" 00:00:00", time.Local)
  293. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime+" 23:59:59", time.Local)
  294. r.WhereRange("stime", start.Unix(), end.Unix(), elastic.RangeScopeLcRc)
  295. } else if p.Stime != "" && p.Etime == "" {
  296. start, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Stime+" 00:00:00", time.Local)
  297. r.WhereRange("stime", start.Unix(), "", elastic.RangeScopeLcRo)
  298. } else if p.Stime == "" && p.Etime != "" {
  299. end, _ := time.ParseInLocation("2006-01-02 15:04:05", p.Etime+" 23:59:59", time.Local)
  300. r.WhereRange("stime", "", end.Unix(), elastic.RangeScopeLoRc)
  301. }
  302. if len(p.Sids) > 0 {
  303. r.WhereIn("sid", p.Sids)
  304. }
  305. if err = r.Scan(c, &res); err != nil {
  306. log.Error("r.Scan error(%v)", err)
  307. return
  308. }
  309. total = res.Page.Total
  310. if total == 0 {
  311. return
  312. }
  313. for _, contest := range res.Result {
  314. rs = append(rs, contest.Oid)
  315. }
  316. return
  317. }
  318. // SeasonFav fav season list.
  319. func (d *Dao) SeasonFav(c context.Context, mid int64, p *model.ParamSeason) (rs []*model.ElaSub, total int, err error) {
  320. var res struct {
  321. Page model.Page `json:"page"`
  322. Result []*model.ElaSub `json:"result"`
  323. }
  324. r := d.ela.NewRequest(_contestFav).Index(_contestFav).WhereEq("mid", mid).WhereEq("state", 0).Pn(p.Pn).Ps(p.Ps).Fields("sid", "oid")
  325. if p.Sort == 1 {
  326. r.Order("season_stime", elastic.OrderDesc)
  327. } else {
  328. r.Order("season_stime", elastic.OrderAsc)
  329. }
  330. if err = r.Scan(c, &res); err != nil {
  331. log.Error("r.Scan error(%v)", err)
  332. return
  333. }
  334. total = res.Page.Total
  335. if total == 0 {
  336. return
  337. }
  338. rs = res.Result
  339. return
  340. }
  341. // StimeFav fav contest stime list.
  342. func (d *Dao) StimeFav(c context.Context, mid int64, p *model.ParamSeason) (rs []*model.ElaSub, total int, err error) {
  343. var res struct {
  344. Page model.Page `json:"page"`
  345. Result []*model.ElaSub `json:"result"`
  346. }
  347. r := d.ela.NewRequest(_contestFav).Index(_contestFav).WhereEq("mid", mid).WhereEq("state", 0).Pn(p.Pn).Ps(p.Ps).Fields("stime", "oid")
  348. if p.Sort == 1 {
  349. r.Order("stime", elastic.OrderDesc)
  350. } else {
  351. r.Order("stime", elastic.OrderAsc)
  352. }
  353. if err = r.Scan(c, &res); err != nil {
  354. log.Error("r.Scan error(%v)", err)
  355. return
  356. }
  357. total = res.Page.Total
  358. if total == 0 {
  359. return
  360. }
  361. rs = res.Result
  362. return
  363. }