mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Big Refactor:
- Create model.DataStore, with provision for transactions - Change all layers dependencies on repositories to use DataStore - Implemented persistence.SQLStore - Removed iTunes Bridge/Importer support
This commit is contained in:
parent
40186f7e10
commit
67eeb218c4
47 changed files with 389 additions and 1621 deletions
|
@ -10,7 +10,6 @@ import (
|
|||
"github.com/cloudsonic/sonic-server/conf"
|
||||
"github.com/cloudsonic/sonic-server/log"
|
||||
"github.com/cloudsonic/sonic-server/scanner"
|
||||
"github.com/cloudsonic/sonic-server/scanner_legacy"
|
||||
"github.com/go-chi/chi"
|
||||
"github.com/go-chi/chi/middleware"
|
||||
"github.com/go-chi/cors"
|
||||
|
@ -19,25 +18,18 @@ import (
|
|||
const Version = "0.2"
|
||||
|
||||
type Server struct {
|
||||
Importer *scanner_legacy.Importer
|
||||
Scanner *scanner.Scanner
|
||||
router *chi.Mux
|
||||
Scanner *scanner.Scanner
|
||||
router *chi.Mux
|
||||
}
|
||||
|
||||
func New(importer *scanner_legacy.Importer, scanner *scanner.Scanner) *Server {
|
||||
a := &Server{Importer: importer, Scanner: scanner}
|
||||
func New(scanner *scanner.Scanner) *Server {
|
||||
a := &Server{Scanner: scanner}
|
||||
if !conf.Sonic.DevDisableBanner {
|
||||
showBanner(Version)
|
||||
}
|
||||
initMimeTypes()
|
||||
a.initRoutes()
|
||||
if conf.Sonic.DevUseFileScanner {
|
||||
log.Info("Using Folder Scanner", "folder", conf.Sonic.MusicFolder)
|
||||
a.initScanner()
|
||||
} else {
|
||||
log.Info("Using iTunes Importer", "xml", conf.Sonic.MusicFolder)
|
||||
a.initImporter()
|
||||
}
|
||||
a.initScanner()
|
||||
return a
|
||||
}
|
||||
|
||||
|
@ -89,22 +81,6 @@ func (a *Server) initScanner() {
|
|||
}()
|
||||
}
|
||||
|
||||
func (a *Server) initImporter() {
|
||||
go func() {
|
||||
first := true
|
||||
for {
|
||||
select {
|
||||
case <-time.After(5 * time.Second):
|
||||
if first {
|
||||
log.Info("Started iTunes scanner", "xml", conf.Sonic.MusicFolder)
|
||||
first = false
|
||||
}
|
||||
a.Importer.CheckForUpdates(false)
|
||||
}
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
func FileServer(r chi.Router, path string, root http.FileSystem) {
|
||||
if strings.ContainsAny(path, "{}*") {
|
||||
panic("FileServer does not permit URL parameters.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue