mysql.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. package dao
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "strconv"
  7. "strings"
  8. "go-common/app/interface/main/esports/model"
  9. xsql "go-common/library/database/sql"
  10. "go-common/library/log"
  11. "go-common/library/xstr"
  12. )
  13. const (
  14. _matchsSQL = "SELECT id,title,sub_title,logo,rank FROM es_matchs WHERE status=0 order by rank DESC , ID ASC"
  15. _gamesSQL = "SELECT id,title,sub_title,logo FROM es_games WHERE status=0 order by id ASC"
  16. _teamsSQL = "SELECT id,title,sub_title,logo FROM es_teams WHERE is_deleted=0 order by id ASC"
  17. _tagsSQL = "SELECT id,name FROM es_tags WHERE status=0 order by id ASC"
  18. _yearsSQL = "SELECT distinct year as id, year FROM es_year_map WHERE is_deleted=0 order by id ASC"
  19. _dayContestSQL = "SELECT FROM_UNIXTIME(stime, '%Y-%m-%d') as s,count(1) as c FROM `es_contests` WHERE status=0 AND stime >= ? and stime <= ? GROUP BY s ORDER BY stime"
  20. _seasonSQL = "SELECT id,mid,title,sub_title,stime,etime,sponsor,logo,dic,ctime,mtime,status,rank,is_app,url,data_focus,focus_url FROM es_seasons WHERE status = 0 ORDER BY stime DESC"
  21. _epSeasonSQL = "SELECT id,mid,title,sub_title,stime,etime,sponsor,logo,dic,ctime,mtime,status,rank,is_app,url,data_focus,focus_url FROM es_seasons WHERE status = 0 and id in (%s) ORDER BY stime DESC"
  22. _seasonMSQL = "SELECT id,mid,title,sub_title,stime,etime,sponsor,logo,dic,ctime,mtime,status,rank,is_app,url,data_focus,focus_url FROM es_seasons WHERE status = 0 AND is_app = 1 ORDER BY rank DESC,stime DESC"
  23. _seasonsSQL = "SELECT id,title,sub_title,logo,url,data_focus,focus_url FROM es_seasons WHERE status = 0 ORDER BY stime DESC"
  24. _contestSQL = "SELECT 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,special,special_name,special_tips,success_team,special_image,playback,collection_url,live_url,data_type,match_id FROM `es_contests` WHERE id= ?"
  25. _contestsSQL = "SELECT 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,special,special_name,special_tips,success_team,special_image,playback,collection_url,live_url,data_type,match_id FROM `es_contests` WHERE id in (%s) ORDER BY ID ASC"
  26. _contestLeidaSQL = "SELECT 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,special,special_name,special_tips,success_team,special_image,playback,collection_url,live_url,data_type,match_id FROM `es_contests` WHERE match_id > 0 and status = 0"
  27. _moduleSQL = "SELECT id,ma_id,name,oids FROM `es_matchs_module` WHERE id = ? AND status = 0"
  28. _activeSQL = "SELECT id,mid,sid,background,live_id,intr,focus,url,back_color,color_step,h5_background,h5_back_color,intr_logo,intr_title,intr_text,h5_focus,h5_url FROM es_matchs_active WHERE id = ? AND `status`= 0"
  29. _modulesSQL = "SELECT id,ma_id,name,oids FROM `es_matchs_module` WHERE ma_id = ? AND status = 0 ORDER BY ID ASC"
  30. _pDetailSQL = "SELECT ma_id,game_type,stime,etime FROM es_matchs_detail WHERE id = ? AND `status` = 0"
  31. _actDetail = "SELECT id,ma_id,game_type,stime,etime,score_id,game_stage,knockout_type,winner_type,online FROM es_matchs_detail WHERE ma_id = ? AND status = 0"
  32. _treeSQL = "SELECT id,ma_id,mad_id,pid,root_id,game_rank,mid FROM es_matchs_tree WHERE mad_id = ? AND is_deleted=0 ORDER BY root_id ASC,pid ASC,game_rank ASC"
  33. _teamsInSQL = "SELECT id,title,sub_title,logo FROM es_teams WHERE is_deleted=0 AND id in (%s)"
  34. _kDetailsSQL = "SELECT id,ma_id,game_type,stime,etime,online FROM es_matchs_detail WHERE `status` = 0 AND game_type = 2"
  35. _contestDataSQL = "SELECT id,cid,url,point_data FROM `es_contests_data` WHERE cid = ? AND is_deleted = 0"
  36. _contestRecent = "SELECT 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,special,special_name,special_tips,success_team,special_image,playback,collection_url,live_url,data_type FROM es_contests WHERE ( `status` = 0 AND home_id = ? AND away_id = ? ) OR ( `status` = 0 AND home_id = ? AND away_id = ? ) ORDER BY stime DESC LIMIT ?"
  37. )
  38. // logoURL convert logo url to full url.
  39. func logoURL(uri string) (logo string) {
  40. if uri == "" {
  41. return
  42. }
  43. logo = uri
  44. if strings.Index(uri, "http://") == 0 || strings.Index(uri, "//") == 0 {
  45. return
  46. }
  47. if len(uri) >= 10 && uri[:10] == "/templets/" {
  48. return
  49. }
  50. if strings.HasPrefix(uri, "group1") {
  51. logo = "//i0.hdslb.com/" + uri
  52. return
  53. }
  54. if pos := strings.Index(uri, "/uploads/"); pos != -1 && (pos == 0 || pos == 3) {
  55. logo = uri[pos+8:]
  56. }
  57. logo = strings.Replace(logo, "{IMG}", "", -1)
  58. logo = "//i0.hdslb.com" + logo
  59. return
  60. }
  61. // Matchs filter matchs.
  62. func (d *Dao) Matchs(c context.Context) (res []*model.Filter, err error) {
  63. var (
  64. rows *xsql.Rows
  65. )
  66. if rows, err = d.db.Query(c, _matchsSQL); err != nil {
  67. log.Error("Match:d.db.Query error(%v)", err)
  68. return
  69. }
  70. defer rows.Close()
  71. for rows.Next() {
  72. r := new(model.Filter)
  73. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo, &r.Rank); err != nil {
  74. log.Error("Match:row.Scan() error(%v)", err)
  75. return
  76. }
  77. r.Logo = logoURL(r.Logo)
  78. res = append(res, r)
  79. }
  80. if err = rows.Err(); err != nil {
  81. log.Error("rows.Err() error(%v)", err)
  82. }
  83. return
  84. }
  85. // Games filter games.
  86. func (d *Dao) Games(c context.Context) (res []*model.Filter, err error) {
  87. var (
  88. rows *xsql.Rows
  89. )
  90. if rows, err = d.db.Query(c, _gamesSQL); err != nil {
  91. log.Error("Games:d.db.Query error(%v)", err)
  92. return
  93. }
  94. defer rows.Close()
  95. for rows.Next() {
  96. r := new(model.Filter)
  97. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo); err != nil {
  98. log.Error("Games:row.Scan() error(%v)", err)
  99. return
  100. }
  101. r.Logo = logoURL(r.Logo)
  102. res = append(res, r)
  103. }
  104. if err = rows.Err(); err != nil {
  105. log.Error("rows.Err() error(%v)", err)
  106. }
  107. return
  108. }
  109. // Teams filter teams.
  110. func (d *Dao) Teams(c context.Context) (res []*model.Filter, err error) {
  111. var (
  112. rows *xsql.Rows
  113. )
  114. if rows, err = d.db.Query(c, _teamsSQL); err != nil {
  115. log.Error("Teams:d.db.Query error(%v)", err)
  116. return
  117. }
  118. defer rows.Close()
  119. for rows.Next() {
  120. r := new(model.Filter)
  121. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo); err != nil {
  122. log.Error("Teams:row.Scan() error(%v)", err)
  123. return
  124. }
  125. r.Logo = logoURL(r.Logo)
  126. res = append(res, r)
  127. }
  128. if err = rows.Err(); err != nil {
  129. log.Error("rows.Err() error(%v)", err)
  130. }
  131. return
  132. }
  133. // Tags filter Tags.
  134. func (d *Dao) Tags(c context.Context) (res []*model.Filter, err error) {
  135. var (
  136. rows *xsql.Rows
  137. )
  138. if rows, err = d.db.Query(c, _tagsSQL); err != nil {
  139. log.Error("Tags:d.db.Query error(%v)", err)
  140. return
  141. }
  142. defer rows.Close()
  143. for rows.Next() {
  144. r := new(model.Filter)
  145. if err = rows.Scan(&r.ID, &r.Title); err != nil {
  146. log.Error("Tags:row.Scan() error(%v)", err)
  147. return
  148. }
  149. r.Logo = logoURL(r.Logo)
  150. res = append(res, r)
  151. }
  152. if err = rows.Err(); err != nil {
  153. log.Error("rows.Err() error(%v)", err)
  154. }
  155. return
  156. }
  157. // Years filter years.
  158. func (d *Dao) Years(c context.Context) (res []*model.Filter, err error) {
  159. var (
  160. rows *xsql.Rows
  161. )
  162. if rows, err = d.db.Query(c, _yearsSQL); err != nil {
  163. log.Error("Years:d.db.Query error(%v)", err)
  164. return
  165. }
  166. defer rows.Close()
  167. for rows.Next() {
  168. r := new(model.Year)
  169. if err = rows.Scan(&r.ID, &r.Year); err != nil {
  170. log.Error("Years:row.Scan() error(%v)", err)
  171. return
  172. }
  173. res = append(res, &model.Filter{ID: r.ID, Title: strconv.FormatInt(r.Year, 10)})
  174. }
  175. if err = rows.Err(); err != nil {
  176. log.Error("rows.Err() error(%v)", err)
  177. }
  178. return
  179. }
  180. // Calendar calendar count.
  181. func (d *Dao) Calendar(c context.Context, stime, etime int64) (res []*model.Calendar, err error) {
  182. var (
  183. rows *xsql.Rows
  184. )
  185. if rows, err = d.db.Query(c, _dayContestSQL, stime, etime); err != nil {
  186. log.Error("Calendar:d.db.Query(%d,%d) error(%v)", stime, etime, err)
  187. return
  188. }
  189. defer rows.Close()
  190. for rows.Next() {
  191. r := new(model.Calendar)
  192. if err = rows.Scan(&r.Stime, &r.Count); err != nil {
  193. log.Error("Calendar:row.Scan() error(%v)", err)
  194. return
  195. }
  196. res = append(res, r)
  197. }
  198. return
  199. }
  200. // Season season list.
  201. func (d *Dao) Season(c context.Context) (res []*model.Season, err error) {
  202. var (
  203. rows *xsql.Rows
  204. )
  205. if rows, err = d.db.Query(c, _seasonSQL); err != nil {
  206. log.Error("Contest:d.db.Query error(%v)", err)
  207. return
  208. }
  209. defer rows.Close()
  210. for rows.Next() {
  211. r := new(model.Season)
  212. if err = rows.Scan(&r.ID, &r.Mid, &r.Title, &r.SubTitle, &r.Stime, &r.Etime, &r.Sponsor, &r.Logo, &r.Dic, &r.Ctime,
  213. &r.Mtime, &r.Status, &r.Rank, &r.IsApp, &r.URL, &r.DataFocus, &r.FocusURL); err != nil {
  214. log.Error("Contest:row.Scan() error(%v)", err)
  215. return
  216. }
  217. r.Logo = logoURL(r.Logo)
  218. res = append(res, r)
  219. }
  220. if err = rows.Err(); err != nil {
  221. log.Error("rows.Err() error(%v)", err)
  222. }
  223. return
  224. }
  225. // Module active module
  226. func (d *Dao) Module(c context.Context, mmid int64) (mod *model.Module, err error) {
  227. mod = &model.Module{}
  228. row := d.db.QueryRow(c, _moduleSQL, mmid)
  229. if err = row.Scan(&mod.ID, &mod.MAid, &mod.Name, &mod.Oids); err != nil {
  230. if err == sql.ErrNoRows {
  231. mod = nil
  232. err = nil
  233. } else {
  234. log.Error("Esport dao Module:row.Scan error(%v)", err)
  235. }
  236. }
  237. return
  238. }
  239. // Modules active module
  240. func (d *Dao) Modules(c context.Context, aid int64) (mods []*model.Module, err error) {
  241. var (
  242. rows *xsql.Rows
  243. )
  244. if rows, err = d.db.Query(c, _modulesSQL, aid); err != nil {
  245. log.Error("Esport dao Modules:d.db.Query error(%v)", err)
  246. return
  247. }
  248. defer rows.Close()
  249. for rows.Next() {
  250. r := new(model.Module)
  251. if err = rows.Scan(&r.ID, &r.MAid, &r.Name, &r.Oids); err != nil {
  252. log.Error("Esport dao Modules:row.Scan() error(%v)", err)
  253. return
  254. }
  255. mods = append(mods, r)
  256. }
  257. if err = rows.Err(); err != nil {
  258. log.Error("Esport dao Modules.Err() error(%v)", err)
  259. }
  260. return
  261. }
  262. // Trees match tree
  263. func (d *Dao) Trees(c context.Context, madID int64) (mods []*model.Tree, err error) {
  264. var (
  265. rows *xsql.Rows
  266. )
  267. if rows, err = d.db.Query(c, _treeSQL, madID); err != nil {
  268. log.Error("Esport dao Trees:d.db.Query error(%v)", err)
  269. return
  270. }
  271. defer rows.Close()
  272. for rows.Next() {
  273. r := new(model.Tree)
  274. if err = rows.Scan(&r.ID, &r.MaID, &r.MadID, &r.Pid, &r.RootID, &r.GameRank, &r.Mid); err != nil {
  275. log.Error("Esport dao Trees:row.Scan() error(%v)", err)
  276. return
  277. }
  278. mods = append(mods, r)
  279. }
  280. if err = rows.Err(); err != nil {
  281. log.Error("Esport dao Trees.Err() error(%v)", err)
  282. }
  283. return
  284. }
  285. // Active matchs active
  286. func (d *Dao) Active(c context.Context, aid int64) (mod *model.Active, err error) {
  287. mod = &model.Active{}
  288. row := d.db.QueryRow(c, _activeSQL, aid)
  289. if err = row.Scan(&mod.ID, &mod.Mid, &mod.Sid, &mod.Background, &mod.Liveid, &mod.Intr, &mod.Focus, &mod.URL, &mod.BackColor, &mod.ColorStep, &mod.H5Background, &mod.H5BackColor, &mod.IntrLogo, &mod.IntrTitle, &mod.IntrText, &mod.H5Focus, &mod.H5Url); err != nil {
  290. if err == sql.ErrNoRows {
  291. mod = nil
  292. err = nil
  293. } else {
  294. log.Error("Esport dao Active:row.Scan error(%v)", err)
  295. }
  296. }
  297. return
  298. }
  299. // PActDetail poin match detail
  300. func (d *Dao) PActDetail(c context.Context, id int64) (mod *model.ActiveDetail, err error) {
  301. mod = &model.ActiveDetail{}
  302. row := d.db.QueryRow(c, _pDetailSQL, id)
  303. if err = row.Scan(&mod.Maid, &mod.GameType, &mod.STime, &mod.ETime); err != nil {
  304. if err == sql.ErrNoRows {
  305. mod = nil
  306. err = nil
  307. } else {
  308. log.Error("Esport dao Contest:row.Scan error(%v)", err)
  309. }
  310. }
  311. return
  312. }
  313. // ActDetail data module
  314. func (d *Dao) ActDetail(c context.Context, aid int64) (actDetail []*model.ActiveDetail, err error) {
  315. var (
  316. rows *xsql.Rows
  317. )
  318. if rows, err = d.db.Query(c, _actDetail, aid); err != nil {
  319. log.Error("Esport dao Modules:d.db.Query error(%v)", err)
  320. return
  321. }
  322. defer rows.Close()
  323. for rows.Next() {
  324. r := new(model.ActiveDetail)
  325. if err = rows.Scan(&r.ID, &r.Maid, &r.GameType, &r.STime, &r.ETime, &r.ScoreID, &r.GameStage, &r.KnockoutType, &r.WinnerType, &r.Online); err != nil {
  326. log.Error("Esport dao ActDetail:row.Scan() error(%v)", err)
  327. return
  328. }
  329. actDetail = append(actDetail, r)
  330. }
  331. if err = rows.Err(); err != nil {
  332. log.Error("Esport dao ActDetail.Err() error(%v)", err)
  333. }
  334. return
  335. }
  336. // AppSeason season match list.
  337. func (d *Dao) AppSeason(c context.Context) (res []*model.Season, err error) {
  338. var (
  339. rows *xsql.Rows
  340. )
  341. if rows, err = d.db.Query(c, _seasonMSQL); err != nil {
  342. log.Error("Contest:d.db.Query error(%v)", err)
  343. return
  344. }
  345. defer rows.Close()
  346. for rows.Next() {
  347. r := new(model.Season)
  348. if err = rows.Scan(&r.ID, &r.Mid, &r.Title, &r.SubTitle, &r.Stime, &r.Etime, &r.Sponsor, &r.Logo,
  349. &r.Dic, &r.Ctime, &r.Mtime, &r.Status, &r.Rank, &r.IsApp, &r.URL, &r.DataFocus, &r.FocusURL); err != nil {
  350. log.Error("Contest:row.Scan() error(%v)", err)
  351. return
  352. }
  353. r.Logo = logoURL(r.Logo)
  354. res = append(res, r)
  355. }
  356. if err = rows.Err(); err != nil {
  357. log.Error("rows.Err() error(%v)", err)
  358. }
  359. return
  360. }
  361. // SeasonAll all season list.
  362. func (d *Dao) SeasonAll(c context.Context) (res []*model.Filter, err error) {
  363. var (
  364. rows *xsql.Rows
  365. )
  366. if rows, err = d.db.Query(c, _seasonsSQL); err != nil {
  367. log.Error("SeasonAll:d.db.Query error(%v)", err)
  368. return
  369. }
  370. defer rows.Close()
  371. for rows.Next() {
  372. r := new(model.Filter)
  373. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo, &r.URL, &r.DataFocus, &r.FocusURL); err != nil {
  374. log.Error("SeasonAll:row.Scan() error(%v)", err)
  375. return
  376. }
  377. r.Logo = logoURL(r.Logo)
  378. res = append(res, r)
  379. }
  380. if err = rows.Err(); err != nil {
  381. log.Error("rows.Err() error(%v)", err)
  382. }
  383. return
  384. }
  385. // Contest get contest by id.
  386. func (d *Dao) Contest(c context.Context, cid int64) (res *model.Contest, err error) {
  387. res = &model.Contest{}
  388. row := d.db.QueryRow(c, _contestSQL, cid)
  389. if err = row.Scan(&res.ID, &res.GameStage, &res.Stime, &res.Etime, &res.HomeID, &res.AwayID, &res.HomeScore, &res.AwayScore,
  390. &res.LiveRoom, &res.Aid, &res.Collection, &res.GameState, &res.Dic, &res.Ctime, &res.Mtime, &res.Status, &res.Sid, &res.Mid,
  391. &res.Special, &res.SpecialName, &res.SpecialTips, &res.SuccessTeam, &res.SpecialImage, &res.Playback, &res.CollectionURL,
  392. &res.LiveURL, &res.DataType, &res.MatchID); err != nil {
  393. if err == sql.ErrNoRows {
  394. err = nil
  395. } else {
  396. log.Error("Contest:row.Scan error(%v)", err)
  397. }
  398. }
  399. return
  400. }
  401. // ContestRecent get recent contest
  402. func (d *Dao) ContestRecent(c context.Context, homeid, awayid, contestid, ps int64) (res []*model.Contest, err error) {
  403. var (
  404. rows *xsql.Rows
  405. )
  406. if rows, err = d.db.Query(c, _contestRecent, homeid, awayid, awayid, homeid, ps+1); err != nil {
  407. log.Error("ContestRecent: db.Exec(%s) error(%v)", _contestRecent, err)
  408. return
  409. }
  410. defer rows.Close()
  411. res = make([]*model.Contest, 0)
  412. for rows.Next() {
  413. r := new(model.Contest)
  414. if err = rows.Scan(&r.ID, &r.GameStage, &r.Stime, &r.Etime, &r.HomeID, &r.AwayID, &r.HomeScore, &r.AwayScore,
  415. &r.LiveRoom, &r.Aid, &r.Collection, &r.GameState, &r.Dic, &r.Ctime, &r.Mtime, &r.Status, &r.Sid, &r.Mid,
  416. &r.Special, &r.SpecialName, &r.SpecialTips, &r.SuccessTeam, &r.SpecialImage, &r.Playback, &r.CollectionURL, &r.LiveURL, &r.DataType); err != nil {
  417. log.Error("Contests:row.Scan() error(%v)", err)
  418. return
  419. }
  420. if r.ID != contestid && len(res) != int(ps) {
  421. res = append(res, r)
  422. }
  423. }
  424. if err = rows.Err(); err != nil {
  425. log.Error("rows.Err() error(%v)", err)
  426. }
  427. return
  428. }
  429. // ContestData get contest by id.
  430. func (d *Dao) ContestData(c context.Context, cid int64) (res []*model.ContestsData, err error) {
  431. var (
  432. rows *xsql.Rows
  433. )
  434. if rows, err = d.db.Query(c, _contestDataSQL, cid); err != nil {
  435. log.Error("ContestsData: db.Exec(%s) error(%v)", _contestDataSQL, err)
  436. return
  437. }
  438. defer rows.Close()
  439. for rows.Next() {
  440. data := new(model.ContestsData)
  441. if err = rows.Scan(&data.ID, &data.Cid, &data.URL, &data.PointData); err != nil {
  442. log.Error("ContestsData:row.Scan() error(%v)", err)
  443. return
  444. }
  445. res = append(res, data)
  446. }
  447. if err = rows.Err(); err != nil {
  448. log.Error("ContestssData rows.Err() error(%v)", err)
  449. }
  450. return
  451. }
  452. // ContestDatas contest datas.
  453. func (d *Dao) ContestDatas(c context.Context) (res []*model.Contest, err error) {
  454. var (
  455. rows *xsql.Rows
  456. )
  457. if rows, err = d.db.Query(c, _contestLeidaSQL); err != nil {
  458. log.Error("Contests: db.Exec(%s) error(%v)", _contestLeidaSQL, err)
  459. return
  460. }
  461. defer rows.Close()
  462. res = make([]*model.Contest, 0)
  463. for rows.Next() {
  464. r := new(model.Contest)
  465. if err = rows.Scan(&r.ID, &r.GameStage, &r.Stime, &r.Etime, &r.HomeID, &r.AwayID, &r.HomeScore, &r.AwayScore,
  466. &r.LiveRoom, &r.Aid, &r.Collection, &r.GameState, &r.Dic, &r.Ctime, &r.Mtime, &r.Status, &r.Sid, &r.Mid,
  467. &r.Special, &r.SpecialName, &r.SpecialTips, &r.SuccessTeam, &r.SpecialImage, &r.Playback, &r.CollectionURL, &r.LiveURL, &r.DataType, &r.MatchID); err != nil {
  468. log.Error("Contests:row.Scan() error(%v)", err)
  469. return
  470. }
  471. res = append(res, r)
  472. }
  473. if err = rows.Err(); err != nil {
  474. log.Error("rows.Err() error(%v)", err)
  475. }
  476. return
  477. }
  478. // RawEpContests get contests by ids.
  479. func (d *Dao) RawEpContests(c context.Context, cids []int64) (res map[int64]*model.Contest, err error) {
  480. var (
  481. rows *xsql.Rows
  482. )
  483. if rows, err = d.db.Query(c, fmt.Sprintf(_contestsSQL, xstr.JoinInts(cids))); err != nil {
  484. log.Error("Contests: db.Exec(%s) error(%v)", xstr.JoinInts(cids), err)
  485. return
  486. }
  487. defer rows.Close()
  488. res = make(map[int64]*model.Contest, len(cids))
  489. for rows.Next() {
  490. r := new(model.Contest)
  491. if err = rows.Scan(&r.ID, &r.GameStage, &r.Stime, &r.Etime, &r.HomeID, &r.AwayID, &r.HomeScore, &r.AwayScore,
  492. &r.LiveRoom, &r.Aid, &r.Collection, &r.GameState, &r.Dic, &r.Ctime, &r.Mtime, &r.Status, &r.Sid, &r.Mid,
  493. &r.Special, &r.SpecialName, &r.SpecialTips, &r.SuccessTeam, &r.SpecialImage, &r.Playback, &r.CollectionURL,
  494. &r.LiveURL, &r.DataType, &r.MatchID); err != nil {
  495. log.Error("Contests:row.Scan() error(%v)", err)
  496. return
  497. }
  498. res[r.ID] = r
  499. }
  500. if err = rows.Err(); err != nil {
  501. log.Error("rows.Err() error(%v)", err)
  502. }
  503. return
  504. }
  505. // RawEpSeasons get seasons by ids.
  506. func (d *Dao) RawEpSeasons(c context.Context, sids []int64) (res map[int64]*model.Season, err error) {
  507. var (
  508. rows *xsql.Rows
  509. )
  510. if rows, err = d.db.Query(c, fmt.Sprintf(_epSeasonSQL, xstr.JoinInts(sids))); err != nil {
  511. log.Error("Contests: db.Exec(%s) error(%v)", xstr.JoinInts(sids), err)
  512. return
  513. }
  514. defer rows.Close()
  515. res = make(map[int64]*model.Season, len(sids))
  516. for rows.Next() {
  517. r := new(model.Season)
  518. if err = rows.Scan(&r.ID, &r.Mid, &r.Title, &r.SubTitle, &r.Stime, &r.Etime, &r.Sponsor, &r.Logo, &r.Dic, &r.Ctime,
  519. &r.Mtime, &r.Status, &r.Rank, &r.IsApp, &r.URL, &r.DataFocus, &r.FocusURL); err != nil {
  520. log.Error("Contest:row.Scan() error(%v)", err)
  521. return
  522. }
  523. res[r.ID] = r
  524. }
  525. if err = rows.Err(); err != nil {
  526. log.Error("rows.Err() error(%v)", err)
  527. }
  528. return
  529. }
  530. // ActTeams get teams by ids in
  531. func (d *Dao) ActTeams(c context.Context, tids []int64) (res []*model.Team, err error) {
  532. var (
  533. rows *xsql.Rows
  534. )
  535. if rows, err = d.db.Query(c, fmt.Sprintf(_teamsInSQL, xstr.JoinInts(tids))); err != nil {
  536. log.Error("ActTeams: db.Exec(%s) error(%v)", xstr.JoinInts(tids), err)
  537. return
  538. }
  539. defer rows.Close()
  540. res = make([]*model.Team, len(tids))
  541. for rows.Next() {
  542. r := new(model.Team)
  543. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo); err != nil {
  544. log.Error("ActTeams:row.Scan() error(%v)", err)
  545. return
  546. }
  547. res = append(res, r)
  548. }
  549. if err = rows.Err(); err != nil {
  550. log.Error("ActTeams rows.Err() error(%v)", err)
  551. }
  552. return
  553. }
  554. // RawEpTeams get seasons by ids.
  555. func (d *Dao) RawEpTeams(c context.Context, tids []int64) (res map[int64]*model.Team, err error) {
  556. var (
  557. rows *xsql.Rows
  558. )
  559. if rows, err = d.db.Query(c, fmt.Sprintf(_teamsInSQL, xstr.JoinInts(tids))); err != nil {
  560. log.Error("RawEpTeams: db.Exec(%s) error(%v)", xstr.JoinInts(tids), err)
  561. return
  562. }
  563. defer rows.Close()
  564. res = make(map[int64]*model.Team, len(tids))
  565. for rows.Next() {
  566. r := new(model.Team)
  567. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Logo); err != nil {
  568. log.Error("RawEpTeams:row.Scan() error(%v)", err)
  569. return
  570. }
  571. res[r.ID] = r
  572. }
  573. if err = rows.Err(); err != nil {
  574. log.Error("RawEpTeams.Err() error(%v)", err)
  575. }
  576. return
  577. }
  578. // KDetails knockout detail
  579. func (d *Dao) KDetails(c context.Context) (res []*model.ActiveDetail, err error) {
  580. var (
  581. rows *xsql.Rows
  582. )
  583. if rows, err = d.db.Query(c, _kDetailsSQL); err != nil {
  584. log.Error("ActPDetails: db.Exec(%s) error(%v)", _kDetailsSQL, err)
  585. return
  586. }
  587. defer rows.Close()
  588. for rows.Next() {
  589. detail := new(model.ActiveDetail)
  590. if err = rows.Scan(&detail.ID, &detail.Maid, &detail.GameType, &detail.STime, &detail.ETime, &detail.Online); err != nil {
  591. log.Error("KDetails:row.Scan() error(%v)", err)
  592. return
  593. }
  594. res = append(res, detail)
  595. }
  596. if err = rows.Err(); err != nil {
  597. log.Error("KDetails rows.Err() error(%v)", err)
  598. }
  599. return
  600. }