mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Refactor App to use DI
This commit is contained in:
parent
30ebbc1fa1
commit
408030eb6c
4 changed files with 28 additions and 25 deletions
10
app.go
10
app.go
|
@ -7,7 +7,6 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/cloudsonic/sonic-server/conf"
|
|
||||||
"github.com/cloudsonic/sonic-server/log"
|
"github.com/cloudsonic/sonic-server/log"
|
||||||
"github.com/cloudsonic/sonic-server/scanner"
|
"github.com/cloudsonic/sonic-server/scanner"
|
||||||
"github.com/go-chi/chi"
|
"github.com/go-chi/chi"
|
||||||
|
@ -16,14 +15,16 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type App struct {
|
type App struct {
|
||||||
|
Importer *scanner.Importer
|
||||||
router *chi.Mux
|
router *chi.Mux
|
||||||
importer *scanner.Importer
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) Initialize() {
|
func NewApp(importer *scanner.Importer) *App {
|
||||||
|
a := &App{Importer: importer}
|
||||||
initMimeTypes()
|
initMimeTypes()
|
||||||
a.initRoutes()
|
a.initRoutes()
|
||||||
a.initImporter()
|
a.initImporter()
|
||||||
|
return a
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) MountRouter(path string, subRouter http.Handler) {
|
func (a *App) MountRouter(path string, subRouter http.Handler) {
|
||||||
|
@ -60,7 +61,6 @@ func (a *App) initRoutes() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) initImporter() {
|
func (a *App) initImporter() {
|
||||||
a.importer = initImporter(conf.Sonic.MusicFolder)
|
|
||||||
go a.startPeriodicScans()
|
go a.startPeriodicScans()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ func (a *App) startPeriodicScans() {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-time.After(5 * time.Second):
|
case <-time.After(5 * time.Second):
|
||||||
a.importer.CheckForUpdates(false)
|
a.Importer.CheckForUpdates(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
3
main.go
3
main.go
|
@ -11,8 +11,7 @@ func main() {
|
||||||
|
|
||||||
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
||||||
|
|
||||||
a := App{}
|
a := createApp(conf.Sonic.MusicFolder)
|
||||||
a.Initialize()
|
|
||||||
a.MountRouter("/rest/", initRouter().Routes())
|
a.MountRouter("/rest/", initRouter().Routes())
|
||||||
a.Run(":" + conf.Sonic.Port)
|
a.Run(":" + conf.Sonic.Port)
|
||||||
}
|
}
|
||||||
|
|
31
wire_gen.go
31
wire_gen.go
|
@ -20,6 +20,22 @@ import (
|
||||||
|
|
||||||
// Injectors from wire_injectors.go:
|
// Injectors from wire_injectors.go:
|
||||||
|
|
||||||
|
func createApp(musicFolder string) *App {
|
||||||
|
checkSumRepository := db_storm.NewCheckSumRepository()
|
||||||
|
itunesScanner := scanner.NewItunesScanner(checkSumRepository)
|
||||||
|
mediaFileRepository := db_storm.NewMediaFileRepository()
|
||||||
|
albumRepository := db_storm.NewAlbumRepository()
|
||||||
|
artistRepository := db_storm.NewArtistRepository()
|
||||||
|
artistIndexRepository := db_storm.NewArtistIndexRepository()
|
||||||
|
playlistRepository := db_storm.NewPlaylistRepository()
|
||||||
|
propertyRepository := db_storm.NewPropertyRepository()
|
||||||
|
db := newDB()
|
||||||
|
search := engine.NewSearch(artistRepository, albumRepository, mediaFileRepository, db)
|
||||||
|
importer := scanner.NewImporter(musicFolder, itunesScanner, mediaFileRepository, albumRepository, artistRepository, artistIndexRepository, playlistRepository, propertyRepository, search)
|
||||||
|
app := NewApp(importer)
|
||||||
|
return app
|
||||||
|
}
|
||||||
|
|
||||||
func initRouter() *api.Router {
|
func initRouter() *api.Router {
|
||||||
propertyRepository := db_storm.NewPropertyRepository()
|
propertyRepository := db_storm.NewPropertyRepository()
|
||||||
mediaFolderRepository := persistence.NewMediaFolderRepository()
|
mediaFolderRepository := persistence.NewMediaFolderRepository()
|
||||||
|
@ -42,21 +58,6 @@ func initRouter() *api.Router {
|
||||||
return router
|
return router
|
||||||
}
|
}
|
||||||
|
|
||||||
func initImporter(musicFolder string) *scanner.Importer {
|
|
||||||
checkSumRepository := db_storm.NewCheckSumRepository()
|
|
||||||
itunesScanner := scanner.NewItunesScanner(checkSumRepository)
|
|
||||||
mediaFileRepository := db_storm.NewMediaFileRepository()
|
|
||||||
albumRepository := db_storm.NewAlbumRepository()
|
|
||||||
artistRepository := db_storm.NewArtistRepository()
|
|
||||||
artistIndexRepository := db_storm.NewArtistIndexRepository()
|
|
||||||
playlistRepository := db_storm.NewPlaylistRepository()
|
|
||||||
propertyRepository := db_storm.NewPropertyRepository()
|
|
||||||
db := newDB()
|
|
||||||
search := engine.NewSearch(artistRepository, albumRepository, mediaFileRepository, db)
|
|
||||||
importer := scanner.NewImporter(musicFolder, itunesScanner, mediaFileRepository, albumRepository, artistRepository, artistIndexRepository, playlistRepository, propertyRepository, search)
|
|
||||||
return importer
|
|
||||||
}
|
|
||||||
|
|
||||||
// wire_injectors.go:
|
// wire_injectors.go:
|
||||||
|
|
||||||
var allProviders = wire.NewSet(itunesbridge.NewItunesControl, db_storm.Set, engine.Set, scanner.Set, newDB, api.NewRouter)
|
var allProviders = wire.NewSet(itunesbridge.NewItunesControl, db_storm.Set, engine.Set, scanner.Set, newDB, api.NewRouter)
|
||||||
|
|
|
@ -24,11 +24,14 @@ var allProviders = wire.NewSet(
|
||||||
api.NewRouter,
|
api.NewRouter,
|
||||||
)
|
)
|
||||||
|
|
||||||
func initRouter() *api.Router {
|
func createApp(musicFolder string) *App {
|
||||||
panic(wire.Build(allProviders))
|
panic(wire.Build(
|
||||||
|
NewApp,
|
||||||
|
allProviders,
|
||||||
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
func initImporter(musicFolder string) *scanner.Importer {
|
func initRouter() *api.Router {
|
||||||
panic(wire.Build(allProviders))
|
panic(wire.Build(allProviders))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue