mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add tracks to playlist
This commit is contained in:
parent
fd49ae319f
commit
e81a9dd1b5
13 changed files with 358 additions and 132 deletions
|
@ -19,6 +19,8 @@ type Playlist struct {
|
|||
UpdatedAt time.Time `json:"updatedAt"`
|
||||
}
|
||||
|
||||
type Playlists []Playlist
|
||||
|
||||
type PlaylistRepository interface {
|
||||
CountAll(options ...QueryOptions) (int64, error)
|
||||
Exists(id string) (bool, error)
|
||||
|
@ -26,18 +28,20 @@ type PlaylistRepository interface {
|
|||
Get(id string) (*Playlist, error)
|
||||
GetAll(options ...QueryOptions) (Playlists, error)
|
||||
Delete(id string) error
|
||||
Tracks(playlistId string) PlaylistTracksRepository
|
||||
Tracks(playlistId string) PlaylistTrackRepository
|
||||
}
|
||||
|
||||
type PlaylistTracks struct {
|
||||
type PlaylistTrack struct {
|
||||
ID string `json:"id" orm:"column(id)"`
|
||||
MediaFileID string `json:"mediaFileId" orm:"column(media_file_id)"`
|
||||
PlaylistID string `json:"playlistId" orm:"column(playlist_id)"`
|
||||
MediaFile
|
||||
}
|
||||
|
||||
type PlaylistTracksRepository interface {
|
||||
rest.Repository
|
||||
//rest.Persistable
|
||||
}
|
||||
type PlaylistTracks []PlaylistTrack
|
||||
|
||||
type Playlists []Playlist
|
||||
type PlaylistTrackRepository interface {
|
||||
rest.Repository
|
||||
Add(mediaFileIds []string) error
|
||||
Update(mediaFileIds []string) error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue