navidrome/scanner/track.go

31 lines
457 B
Go
Raw Normal View History

package scanner
import (
"time"
)
type Track struct {
2016-02-27 09:35:01 +01:00
Id string
Path string
Title string
Album string
Artist string
AlbumArtist string
Genre string
TrackNumber int
2016-02-28 19:50:05 +01:00
Year int
2016-02-27 09:35:01 +01:00
Compilation bool
CreatedAt time.Time
UpdatedAt time.Time
}
func (m *Track) RealArtist() string {
2016-03-02 19:18:39 +01:00
if m.Compilation {
return "Various Artists"
}
2016-03-02 19:18:39 +01:00
if m.AlbumArtist != "" {
return m.AlbumArtist
}
return m.Artist
2016-03-02 19:18:39 +01:00
}