mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Implementing coverArt
This commit is contained in:
parent
80880434aa
commit
1b945831cc
9 changed files with 40 additions and 8 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,9 +1,6 @@
|
||||||
lastupdate.tmp
|
/gosonic
|
||||||
gosonic
|
/iTunes*.xml
|
||||||
iTunes.xml
|
|
||||||
iTunesFull.xml
|
|
||||||
gosonic.index
|
|
||||||
static/Jamstash
|
static/Jamstash
|
||||||
devDb
|
devDb
|
||||||
tmp
|
/tmp
|
||||||
.vendor
|
.vendor
|
|
@ -7,6 +7,7 @@ github.com/deluan/itl = commit:35d15a3
|
||||||
github.com/siddontang/ledisdb = commit:713b229
|
github.com/siddontang/ledisdb = commit:713b229
|
||||||
github.com/smartystreets/goconvey = commit:899ed5a
|
github.com/smartystreets/goconvey = commit:899ed5a
|
||||||
github.com/karlkfi/inject = commit:fe06da2
|
github.com/karlkfi/inject = commit:fe06da2
|
||||||
|
github.com/dhowden/tag = commit:a35ac09
|
||||||
|
|
||||||
[res]
|
[res]
|
||||||
include = conf
|
include = conf
|
||||||
|
|
|
@ -13,6 +13,7 @@ install:
|
||||||
- go get github.com/siddontang/ledisdb/ledis
|
- go get github.com/siddontang/ledisdb/ledis
|
||||||
- go get github.com/karlkfi/inject
|
- go get github.com/karlkfi/inject
|
||||||
- go get github.com/smartystreets/goconvey
|
- go get github.com/smartystreets/goconvey
|
||||||
|
- go get github.com/dhowden/tag
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- go test ./... -v
|
- go test ./... -v
|
||||||
|
|
|
@ -57,6 +57,7 @@ func (c *GetMusicDirectoryController) buildArtistDir(a *domain.Artist, albums []
|
||||||
dir.Child[i].Year = al.Year
|
dir.Child[i].Year = al.Year
|
||||||
dir.Child[i].Artist = al.Artist
|
dir.Child[i].Artist = al.Artist
|
||||||
dir.Child[i].Genre = al.Genre
|
dir.Child[i].Genre = al.Genre
|
||||||
|
dir.Child[i].CoverArt = al.CoverArtId
|
||||||
}
|
}
|
||||||
return dir
|
return dir
|
||||||
}
|
}
|
||||||
|
@ -78,6 +79,9 @@ func (c *GetMusicDirectoryController) buildAlbumDir(al *domain.Album, tracks []d
|
||||||
dir.Child[i].Size = mf.Size
|
dir.Child[i].Size = mf.Size
|
||||||
dir.Child[i].Suffix = mf.Suffix
|
dir.Child[i].Suffix = mf.Suffix
|
||||||
dir.Child[i].BitRate = mf.BitRate
|
dir.Child[i].BitRate = mf.BitRate
|
||||||
|
if mf.HasCoverArt {
|
||||||
|
dir.Child[i].CoverArt = mf.Id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return dir
|
return dir
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ apiVersion = 1.0.0
|
||||||
ignoredArticles="The El La Los Las Le Les Os As O A"
|
ignoredArticles="The El La Los Las Le Les Os As O A"
|
||||||
indexGroups=A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ)
|
indexGroups=A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ)
|
||||||
|
|
||||||
musicFolder=./iTunesFull.xml
|
musicFolder=./iTunes.xml
|
||||||
user=deluan
|
user=deluan
|
||||||
password=wordpass
|
password=wordpass
|
||||||
dbPath = ./devDb
|
dbPath = ./devDb
|
||||||
|
|
|
@ -5,6 +5,7 @@ type Album struct {
|
||||||
Name string
|
Name string
|
||||||
ArtistId string `parent:"artist"`
|
ArtistId string `parent:"artist"`
|
||||||
CoverArtPath string // TODO http://stackoverflow.com/questions/13795842/linking-itunes-itc2-files-and-ituneslibrary-xml
|
CoverArtPath string // TODO http://stackoverflow.com/questions/13795842/linking-itunes-itc2-files-and-ituneslibrary-xml
|
||||||
|
CoverArtId string
|
||||||
Artist string
|
Artist string
|
||||||
AlbumArtist string
|
AlbumArtist string
|
||||||
Year int
|
Year int
|
||||||
|
|
|
@ -12,6 +12,7 @@ type MediaFile struct {
|
||||||
Artist string
|
Artist string
|
||||||
AlbumArtist string
|
AlbumArtist string
|
||||||
AlbumId string `parent:"album"`
|
AlbumId string `parent:"album"`
|
||||||
|
HasCoverArt bool
|
||||||
TrackNumber int
|
TrackNumber int
|
||||||
DiscNumber int
|
DiscNumber int
|
||||||
Year int
|
Year int
|
||||||
|
|
|
@ -39,7 +39,7 @@ func (s *ItunesScanner) LoadFolder(path string) []Track {
|
||||||
}
|
}
|
||||||
mediaFiles[i].BitRate = t.BitRate
|
mediaFiles[i].BitRate = t.BitRate
|
||||||
path, _ = url.QueryUnescape(t.Location)
|
path, _ = url.QueryUnescape(t.Location)
|
||||||
path = strings.TrimPrefix(path, "file://")
|
path = strings.TrimPrefix(unescape(path), "file://")
|
||||||
mediaFiles[i].Path = path
|
mediaFiles[i].Path = path
|
||||||
mediaFiles[i].Suffix = strings.TrimPrefix(filepath.Ext(path), ".")
|
mediaFiles[i].Suffix = strings.TrimPrefix(filepath.Ext(path), ".")
|
||||||
mediaFiles[i].CreatedAt = t.DateAdded
|
mediaFiles[i].CreatedAt = t.DateAdded
|
||||||
|
|
|
@ -9,6 +9,8 @@ import (
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/deluan/gosonic/utils"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
"github.com/dhowden/tag"
|
||||||
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Scanner interface {
|
type Scanner interface {
|
||||||
|
@ -63,7 +65,27 @@ func importLibrary(files []Track) (err error) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func hasCoverArt(path string) bool {
|
||||||
|
if _, err := os.Stat(path); err == nil {
|
||||||
|
f, err := os.Open(path)
|
||||||
|
if err != nil {
|
||||||
|
beego.Warn("Error opening file", path, "-", err)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
m, err := tag.ReadFrom(f)
|
||||||
|
if err != nil {
|
||||||
|
beego.Warn("Error reading tag from file", path, "-", err)
|
||||||
|
}
|
||||||
|
return m.Picture() != nil
|
||||||
|
}
|
||||||
|
//beego.Warn("File not found:", path)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
||||||
|
hasCover := hasCoverArt(t.Path)
|
||||||
mf := &domain.MediaFile{
|
mf := &domain.MediaFile{
|
||||||
Id: t.Id,
|
Id: t.Id,
|
||||||
Album: t.Album,
|
Album: t.Album,
|
||||||
|
@ -75,6 +97,7 @@ func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
||||||
Path: t.Path,
|
Path: t.Path,
|
||||||
CreatedAt: t.CreatedAt,
|
CreatedAt: t.CreatedAt,
|
||||||
UpdatedAt: t.UpdatedAt,
|
UpdatedAt: t.UpdatedAt,
|
||||||
|
HasCoverArt: hasCover,
|
||||||
TrackNumber: t.TrackNumber,
|
TrackNumber: t.TrackNumber,
|
||||||
DiscNumber: t.DiscNumber,
|
DiscNumber: t.DiscNumber,
|
||||||
Genre: t.Genre,
|
Genre: t.Genre,
|
||||||
|
@ -95,6 +118,10 @@ func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
||||||
AlbumArtist: t.AlbumArtist,
|
AlbumArtist: t.AlbumArtist,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if mf.HasCoverArt {
|
||||||
|
album.CoverArtId = mf.Id
|
||||||
|
}
|
||||||
|
|
||||||
artist := &domain.Artist{
|
artist := &domain.Artist{
|
||||||
Name: t.RealArtist(),
|
Name: t.RealArtist(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue