2016-03-16 16:27:48 -08:00
|
|
|
package engine
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
2016-03-17 13:35:10 -08:00
|
|
|
const NowPlayingExpire = time.Duration(60) * time.Minute
|
2016-03-16 16:27:48 -08:00
|
|
|
|
|
|
|
|
type NowPlayingInfo struct {
|
2016-03-17 05:34:32 -08:00
|
|
|
TrackId string
|
|
|
|
|
Start time.Time
|
|
|
|
|
Username string
|
|
|
|
|
PlayerId int
|
|
|
|
|
PlayerName string
|
2016-03-16 16:27:48 -08:00
|
|
|
}
|
|
|
|
|
|
2016-03-23 09:51:02 -08:00
|
|
|
// This repo must have the semantics of a FIFO queue, for each playerId
|
2016-03-16 16:27:48 -08:00
|
|
|
type NowPlayingRepository interface {
|
2016-03-23 06:06:26 -08:00
|
|
|
// Insert at the head of the queue
|
2016-03-24 13:14:13 -08:00
|
|
|
Enqueue(*NowPlayingInfo) error
|
2016-03-23 06:06:26 -08:00
|
|
|
|
2016-03-23 09:51:02 -08:00
|
|
|
// Removes and returns the element at the end of the queue
|
|
|
|
|
Dequeue(playerId int) (*NowPlayingInfo, error)
|
|
|
|
|
|
2016-03-23 06:06:26 -08:00
|
|
|
// Returns the element at the head of the queue (last inserted one)
|
|
|
|
|
Head(playerId int) (*NowPlayingInfo, error)
|
|
|
|
|
|
2016-03-23 09:51:02 -08:00
|
|
|
// Returns the element at the end of the queue (first inserted one)
|
|
|
|
|
Tail(playerId int) (*NowPlayingInfo, error)
|
|
|
|
|
|
|
|
|
|
// Size of the queue for the playerId
|
|
|
|
|
Count(playerId int) (int64, error)
|
2016-03-23 06:06:26 -08:00
|
|
|
|
2016-03-23 09:51:02 -08:00
|
|
|
// Returns all tails from all playerIds
|
2016-03-23 06:06:26 -08:00
|
|
|
GetAll() ([]*NowPlayingInfo, error)
|
2016-03-16 16:27:48 -08:00
|
|
|
}
|