quintodrome/scanner/scanner.go

148 lines
3.5 KiB
Go
Raw Normal View History

package scanner
import (
"github.com/astaxie/beego"
"github.com/deluan/gosonic/repositories"
"github.com/deluan/gosonic/models"
2016-02-26 23:35:01 -09:00
"strings"
2016-02-29 09:56:09 -09:00
"github.com/deluan/gosonic/utils"
"github.com/deluan/gosonic/consts"
"time"
"fmt"
)
type Scanner interface {
LoadFolder(path string) []Track
}
2016-03-01 13:50:05 -09:00
type tempIndex map[string]models.ArtistInfo
2016-03-01 09:31:52 -09:00
// TODO Implement a flag 'isScanning'.
func StartImport() {
go doImport(beego.AppConfig.String("musicFolder"), &ItunesScanner{})
}
func doImport(mediaFolder string, scanner Scanner) {
beego.Info("Starting iTunes import from:", mediaFolder)
files := scanner.LoadFolder(mediaFolder)
2016-02-28 09:50:05 -09:00
importLibrary(files)
beego.Info("Finished importing", len(files), "files")
}
func importLibrary(files []Track) (err error){
2016-03-01 13:50:05 -09:00
indexGroups := utils.ParseIndexGroups(beego.AppConfig.String("indexGroups"))
mfRepo := repositories.NewMediaFileRepository()
2016-02-28 09:50:05 -09:00
albumRepo := repositories.NewAlbumRepository()
artistRepo := repositories.NewArtistRepository()
var artistIndex = make(map[string]tempIndex)
2016-02-28 09:50:05 -09:00
for _, t := range files {
2016-02-28 18:56:24 -09:00
mf, album, artist := parseTrack(&t)
persist(mfRepo, mf, albumRepo, album, artistRepo, artist)
2016-03-01 13:50:05 -09:00
collectIndex(indexGroups, artist, artistIndex)
}
2016-02-28 09:50:05 -09:00
if err = saveIndex(artistIndex); err != nil {
beego.Error(err)
}
2016-02-28 18:56:24 -09:00
c, _ := artistRepo.CountAll()
beego.Info("Total Artists in database:", c)
c, _ = albumRepo.CountAll()
beego.Info("Total Albums in database:", c)
c, _ = mfRepo.CountAll()
beego.Info("Total MediaFiles in database:", c)
if err == nil {
propertyRepo := repositories.NewPropertyRepository()
millis := time.Now().UnixNano() / 1000000
propertyRepo.Put(consts.LastScan, fmt.Sprint(millis))
beego.Info("LastScan timestamp:", millis)
}
return err
2016-02-26 23:35:01 -09:00
}
2016-02-28 18:56:24 -09:00
func parseTrack(t *Track) (*models.MediaFile, *models.Album, *models.Artist) {
2016-02-28 09:50:05 -09:00
mf := &models.MediaFile{
Id: t.Id,
Album: t.Album,
Artist: t.Artist,
AlbumArtist: t.AlbumArtist,
Title: t.Title,
Compilation: t.Compilation,
Path: t.Path,
CreatedAt: t.CreatedAt,
UpdatedAt: t.UpdatedAt,
}
album := &models.Album{
Name: t.Album,
Year: t.Year,
Compilation: t.Compilation,
}
artist := &models.Artist{
Name: t.RealArtist(),
2016-02-28 09:50:05 -09:00
}
return mf, album, artist
}
2016-02-28 18:56:24 -09:00
func persist(mfRepo *repositories.MediaFile, mf *models.MediaFile, albumRepo *repositories.Album, album *models.Album, artistRepo *repositories.Artist, artist *models.Artist) {
if err := artistRepo.Put(artist); err != nil {
2016-02-28 09:50:05 -09:00
beego.Error(err)
}
2016-02-28 18:56:24 -09:00
album.ArtistId = artist.Id
if err := albumRepo.Put(album); err != nil {
2016-02-28 09:50:05 -09:00
beego.Error(err)
}
2016-02-28 18:56:24 -09:00
mf.AlbumId = album.Id
2016-02-28 09:50:05 -09:00
if err := mfRepo.Put(mf); err != nil {
beego.Error(err)
}
}
2016-03-01 13:50:05 -09:00
func collectIndex(ig utils.IndexGroups, a *models.Artist, artistIndex map[string]tempIndex) {
name := a.Name
2016-02-29 09:56:09 -09:00
indexName := strings.ToLower(utils.NoArticle(name))
2016-02-26 23:35:01 -09:00
if indexName == "" {
return
}
2016-03-01 13:50:05 -09:00
group := findGroup(ig, indexName)
artists := artistIndex[group]
2016-02-26 23:35:01 -09:00
if artists == nil {
artists = make(tempIndex)
2016-03-01 13:50:05 -09:00
artistIndex[group] = artists
2016-02-26 23:35:01 -09:00
}
2016-03-01 13:50:05 -09:00
artists[indexName] = models.ArtistInfo{ArtistId: a.Id, Artist: a.Name}
}
func findGroup(ig utils.IndexGroups, name string) string {
for k, v := range ig {
key := strings.ToLower(k)
if strings.HasPrefix(name, key) {
return v
}
}
return "#"
}
func saveIndex(artistIndex map[string]tempIndex) error {
idxRepo := repositories.NewArtistIndexRepository()
for k, temp := range artistIndex {
idx := &models.ArtistIndex{Id: k}
for _, v := range temp {
2016-03-01 13:50:05 -09:00
idx.Artists = append(idx.Artists, v)
}
err := idxRepo.Put(idx)
if err != nil {
return err
}
}
return nil
}