mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* Start migration to dbx package * Fix annotations and bookmarks bindings * Fix tests * Fix more tests * Remove remaining references to beego/orm * Add PostScanner/PostMapper interfaces * Fix importing SmartPlaylists * Renaming * More renaming * Fix artist DB mapping * Fix playlist updates * Remove bookmarks at the end of the test * Remove remaining `orm` struct tags * Fix user timestamps DB access * Fix smart playlist evaluated_at DB access * Fix search3
28 lines
1 KiB
Go
28 lines
1 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Player struct {
|
|
ID string `structs:"id" json:"id"`
|
|
Name string `structs:"name" json:"name"`
|
|
UserAgent string `structs:"user_agent" json:"userAgent"`
|
|
UserName string `structs:"user_name" json:"userName"`
|
|
Client string `structs:"client" json:"client"`
|
|
IPAddress string `structs:"ip_address" json:"ipAddress"`
|
|
LastSeen time.Time `structs:"last_seen" json:"lastSeen"`
|
|
TranscodingId string `structs:"transcoding_id" json:"transcodingId"`
|
|
MaxBitRate int `structs:"max_bit_rate" json:"maxBitRate"`
|
|
ReportRealPath bool `structs:"report_real_path" json:"reportRealPath"`
|
|
ScrobbleEnabled bool `structs:"scrobble_enabled" json:"scrobbleEnabled"`
|
|
}
|
|
|
|
type Players []Player
|
|
|
|
type PlayerRepository interface {
|
|
Get(id string) (*Player, error)
|
|
FindMatch(userName, client, typ string) (*Player, error)
|
|
Put(p *Player) error
|
|
// TODO: Add CountAll method. Useful at least for metrics.
|
|
}
|