mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
70 lines
2.6 KiB
Go
70 lines
2.6 KiB
Go
package model
|
|
|
|
import (
|
|
"mime"
|
|
"time"
|
|
)
|
|
|
|
type MediaFile struct {
|
|
Annotations
|
|
|
|
ID string `json:"id" orm:"pk;column(id)"`
|
|
Path string `json:"path"`
|
|
Title string `json:"title"`
|
|
Album string `json:"album"`
|
|
ArtistID string `json:"artistId" orm:"pk;column(artist_id)"`
|
|
Artist string `json:"artist"`
|
|
AlbumArtistID string `json:"albumArtistId" orm:"pk;column(album_artist_id)"`
|
|
AlbumArtist string `json:"albumArtist"`
|
|
AlbumID string `json:"albumId" orm:"pk;column(album_id)"`
|
|
HasCoverArt bool `json:"hasCoverArt"`
|
|
TrackNumber int `json:"trackNumber"`
|
|
DiscNumber int `json:"discNumber"`
|
|
DiscSubtitle string `json:"discSubtitle"`
|
|
Year int `json:"year"`
|
|
Size int64 `json:"size"`
|
|
Suffix string `json:"suffix"`
|
|
Duration float32 `json:"duration"`
|
|
BitRate int `json:"bitRate"`
|
|
Genre string `json:"genre"`
|
|
FullText string `json:"fullText"`
|
|
SortTitle string `json:"sortTitle"`
|
|
SortAlbumName string `json:"sortAlbumName"`
|
|
SortArtistName string `json:"sortArtistName"`
|
|
SortAlbumArtistName string `json:"sortAlbumArtistName"`
|
|
OrderAlbumName string `json:"orderAlbumName"`
|
|
OrderArtistName string `json:"orderArtistName"`
|
|
OrderAlbumArtistName string `json:"orderAlbumArtistName"`
|
|
Compilation bool `json:"compilation"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
func (mf *MediaFile) ContentType() string {
|
|
return mime.TypeByExtension("." + mf.Suffix)
|
|
}
|
|
|
|
type MediaFiles []MediaFile
|
|
|
|
type MediaFileRepository interface {
|
|
CountAll(options ...QueryOptions) (int64, error)
|
|
Exists(id string) (bool, error)
|
|
Put(m *MediaFile) error
|
|
Get(id string) (*MediaFile, error)
|
|
GetAll(options ...QueryOptions) (MediaFiles, error)
|
|
FindByAlbum(albumId string) (MediaFiles, error)
|
|
FindAllByPath(path string) (MediaFiles, error)
|
|
FindByPath(path string) (*MediaFile, error)
|
|
FindPathsRecursively(basePath string) ([]string, error)
|
|
GetStarred(options ...QueryOptions) (MediaFiles, error)
|
|
GetRandom(options ...QueryOptions) (MediaFiles, error)
|
|
Search(q string, offset int, size int) (MediaFiles, error)
|
|
Delete(id string) error
|
|
DeleteByPath(path string) (int64, error)
|
|
|
|
AnnotatedRepository
|
|
}
|
|
|
|
func (mf MediaFile) GetAnnotations() Annotations {
|
|
return mf.Annotations
|
|
}
|