Fix GetNowPlaying endpoint showing only the last play

This commit is contained in:
Deluan 2021-06-20 10:36:50 -04:00
parent f8ee6db72a
commit 97434c1789
12 changed files with 110 additions and 31 deletions

View file

@ -37,8 +37,12 @@ func (r *playerRepository) Get(id string) (*model.Player, error) {
return &res, err
}
func (r *playerRepository) FindByName(client, userName string) (*model.Player, error) {
sel := r.newSelect().Columns("*").Where(And{Eq{"client": client}, Eq{"user_name": userName}})
func (r *playerRepository) FindMatch(userName, client, userAgent string) (*model.Player, error) {
sel := r.newSelect().Columns("*").Where(And{
Eq{"client": client},
Eq{"user_agent": userAgent},
Eq{"user_name": userName},
})
var res model.Player
err := r.queryOne(sel, &res)
return &res, err