mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Playlist struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
Name string `json:"name"`
|
|
Comment string `json:"comment"`
|
|
Duration float32 `json:"duration"`
|
|
SongCount int `json:"songCount"`
|
|
Owner string `json:"owner"`
|
|
Public bool `json:"public"`
|
|
Tracks MediaFiles `json:"tracks,omitempty"`
|
|
Path string `json:"path"`
|
|
Sync bool `json:"sync"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
type Playlists []Playlist
|
|
|
|
type PlaylistRepository interface {
|
|
CountAll(options ...QueryOptions) (int64, error)
|
|
Exists(id string) (bool, error)
|
|
Put(pls *Playlist) error
|
|
Get(id string) (*Playlist, error)
|
|
GetAll(options ...QueryOptions) (Playlists, error)
|
|
Delete(id string) error
|
|
Tracks(playlistId string) PlaylistTrackRepository
|
|
}
|
|
|
|
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 PlaylistTracks []PlaylistTrack
|
|
|
|
type PlaylistTrackRepository interface {
|
|
ResourceRepository
|
|
Add(mediaFileIds []string) error
|
|
Update(mediaFileIds []string) error
|
|
Delete(id string) error
|
|
Reorder(pos int, newPos int) error
|
|
}
|