mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Removed composition from model, makes it more readable
This commit is contained in:
parent
0ea2bd79d9
commit
19765b0ad8
6 changed files with 10 additions and 10 deletions
|
@ -27,7 +27,8 @@ type Album struct {
|
||||||
type Albums []Album
|
type Albums []Album
|
||||||
|
|
||||||
type AlbumRepository interface {
|
type AlbumRepository interface {
|
||||||
BaseRepository
|
CountAll() (int64, error)
|
||||||
|
Exists(id string) (bool, error)
|
||||||
Put(m *Album) error
|
Put(m *Album) error
|
||||||
Get(id string) (*Album, error)
|
Get(id string) (*Album, error)
|
||||||
FindByArtist(artistId string) (Albums, error)
|
FindByArtist(artistId string) (Albums, error)
|
||||||
|
|
|
@ -7,7 +7,8 @@ type Artist struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ArtistRepository interface {
|
type ArtistRepository interface {
|
||||||
BaseRepository
|
CountAll() (int64, error)
|
||||||
|
Exists(id string) (bool, error)
|
||||||
Put(m *Artist) error
|
Put(m *Artist) error
|
||||||
Get(id string) (*Artist, error)
|
Get(id string) (*Artist, error)
|
||||||
PurgeInactive(active Artists) error
|
PurgeInactive(active Artists) error
|
||||||
|
|
|
@ -2,11 +2,6 @@ package model
|
||||||
|
|
||||||
import "errors"
|
import "errors"
|
||||||
|
|
||||||
type BaseRepository interface {
|
|
||||||
CountAll() (int64, error)
|
|
||||||
Exists(id string) (bool, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ErrNotFound = errors.New("data not found")
|
ErrNotFound = errors.New("data not found")
|
||||||
)
|
)
|
||||||
|
|
|
@ -24,7 +24,8 @@ func (a ArtistInfos) Less(i, j int) bool {
|
||||||
type ArtistIndexes []ArtistIndex
|
type ArtistIndexes []ArtistIndex
|
||||||
|
|
||||||
type ArtistIndexRepository interface {
|
type ArtistIndexRepository interface {
|
||||||
BaseRepository
|
CountAll() (int64, error)
|
||||||
|
Exists(id string) (bool, error)
|
||||||
Put(m *ArtistIndex) error
|
Put(m *ArtistIndex) error
|
||||||
Get(id string) (*ArtistIndex, error)
|
Get(id string) (*ArtistIndex, error)
|
||||||
GetAll() (ArtistIndexes, error)
|
GetAll() (ArtistIndexes, error)
|
||||||
|
|
|
@ -46,7 +46,8 @@ func (a MediaFiles) Less(i, j int) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
type MediaFileRepository interface {
|
type MediaFileRepository interface {
|
||||||
BaseRepository
|
CountAll() (int64, error)
|
||||||
|
Exists(id string) (bool, error)
|
||||||
Put(m *MediaFile) error
|
Put(m *MediaFile) error
|
||||||
Get(id string) (*MediaFile, error)
|
Get(id string) (*MediaFile, error)
|
||||||
FindByAlbum(albumId string) (MediaFiles, error)
|
FindByAlbum(albumId string) (MediaFiles, error)
|
||||||
|
|
|
@ -12,7 +12,8 @@ type Playlist struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type PlaylistRepository interface {
|
type PlaylistRepository interface {
|
||||||
BaseRepository
|
CountAll() (int64, error)
|
||||||
|
Exists(id string) (bool, error)
|
||||||
Put(m *Playlist) error
|
Put(m *Playlist) error
|
||||||
Get(id string) (*Playlist, error)
|
Get(id string) (*Playlist, error)
|
||||||
GetAll(options ...QueryOptions) (Playlists, error)
|
GetAll(options ...QueryOptions) (Playlists, error)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue