mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add routing for basic web ui
This commit is contained in:
parent
5bc1551b09
commit
3a03284c59
8 changed files with 112 additions and 29 deletions
9
Makefile
9
Makefile
|
@ -18,10 +18,17 @@ test: check_go_env
|
|||
go test ./... -v
|
||||
# @(cd ./ui && npm test -- --watchAll=false)
|
||||
|
||||
.PHONY: testall
|
||||
testall: check_go_env test
|
||||
@(cd ./ui && npm test -- --watchAll=false)
|
||||
|
||||
.PHONY: build
|
||||
build: check_go_env
|
||||
go build
|
||||
# @(cd ./ui && npm run build)
|
||||
|
||||
.PHONY: build
|
||||
buildall: check_go_env build
|
||||
@(cd ./ui && npm run build)
|
||||
|
||||
.PHONY: setup
|
||||
setup: Jamstash-master
|
||||
|
|
5
main.go
5
main.go
|
@ -7,7 +7,8 @@ import (
|
|||
func main() {
|
||||
conf.Load()
|
||||
|
||||
a := CreateApp(conf.Sonic.MusicFolder)
|
||||
a.MountRouter("/rest/", CreateSubsonicAPIRouter())
|
||||
a := CreateServer(conf.Sonic.MusicFolder)
|
||||
a.MountRouter("/rest", CreateSubsonicAPIRouter())
|
||||
a.MountRouter("/app", CreateAppRouter("/app"))
|
||||
a.Run(":" + conf.Sonic.Port)
|
||||
}
|
||||
|
|
33
server/app/app.go
Normal file
33
server/app/app.go
Normal file
|
@ -0,0 +1,33 @@
|
|||
package app
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/cloudsonic/sonic-server/model"
|
||||
"github.com/cloudsonic/sonic-server/server"
|
||||
"github.com/go-chi/chi"
|
||||
)
|
||||
|
||||
type Router struct {
|
||||
ds model.DataStore
|
||||
mux http.Handler
|
||||
path string
|
||||
}
|
||||
|
||||
func New(ds model.DataStore, path string) *Router {
|
||||
r := &Router{ds: ds, path: path}
|
||||
r.mux = r.routes()
|
||||
return r
|
||||
}
|
||||
|
||||
func (app *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
app.mux.ServeHTTP(w, r)
|
||||
}
|
||||
|
||||
func (app *Router) routes() http.Handler {
|
||||
r := chi.NewRouter()
|
||||
server.FileServer(r, app.path, "/", http.Dir("ui/build"))
|
||||
r.Get("/ping", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte(`{"response":"pong"}`)) })
|
||||
|
||||
return r
|
||||
}
|
47
server/fileserver.go
Normal file
47
server/fileserver.go
Normal file
|
@ -0,0 +1,47 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/go-chi/chi"
|
||||
)
|
||||
|
||||
func FileServer(r chi.Router, fullPath, subPath string, root http.FileSystem) {
|
||||
if strings.ContainsAny(fullPath, "{}*") {
|
||||
panic("FileServer does not permit URL parameters.")
|
||||
}
|
||||
|
||||
fs := http.StripPrefix(fullPath, http.FileServer(justFilesFilesystem{root}))
|
||||
|
||||
if subPath != "/" && subPath[len(subPath)-1] != '/' {
|
||||
r.Get(subPath, http.RedirectHandler(fullPath+"/", 302).ServeHTTP)
|
||||
subPath += "/"
|
||||
}
|
||||
subPath += "*"
|
||||
|
||||
r.Get(subPath, func(w http.ResponseWriter, r *http.Request) {
|
||||
fs.ServeHTTP(w, r)
|
||||
})
|
||||
}
|
||||
|
||||
type justFilesFilesystem struct {
|
||||
fs http.FileSystem
|
||||
}
|
||||
|
||||
func (fs justFilesFilesystem) Open(name string) (http.File, error) {
|
||||
f, err := fs.fs.Open(name)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return neuteredReaddirFile{f}, nil
|
||||
}
|
||||
|
||||
type neuteredReaddirFile struct {
|
||||
http.File
|
||||
}
|
||||
|
||||
func (f neuteredReaddirFile) Readdir(count int) ([]os.FileInfo, error) {
|
||||
return nil, nil
|
||||
}
|
|
@ -4,7 +4,6 @@ import (
|
|||
"net/http"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/cloudsonic/sonic-server/conf"
|
||||
|
@ -34,7 +33,7 @@ func New(scanner *scanner.Scanner) *Server {
|
|||
}
|
||||
|
||||
func (a *Server) MountRouter(path string, subRouter http.Handler) {
|
||||
log.Info("Mounting API", "path", path)
|
||||
log.Info("Mounting routes", "path", path)
|
||||
a.router.Group(func(r chi.Router) {
|
||||
r.Use(middleware.Logger)
|
||||
r.Mount(path, subRouter)
|
||||
|
@ -58,11 +57,12 @@ func (a *Server) initRoutes() {
|
|||
r.Use(InjectLogger)
|
||||
|
||||
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
http.Redirect(w, r, "/Jamstash", 302)
|
||||
http.Redirect(w, r, "/app", 302)
|
||||
})
|
||||
|
||||
workDir, _ := os.Getwd()
|
||||
filesDir := filepath.Join(workDir, "Jamstash-master/dist")
|
||||
FileServer(r, "/Jamstash", http.Dir(filesDir))
|
||||
FileServer(r, "/Jamstash", "/Jamstash", http.Dir(filesDir))
|
||||
|
||||
a.router = r
|
||||
}
|
||||
|
@ -81,24 +81,6 @@ func (a *Server) initScanner() {
|
|||
}()
|
||||
}
|
||||
|
||||
func FileServer(r chi.Router, path string, root http.FileSystem) {
|
||||
if strings.ContainsAny(path, "{}*") {
|
||||
panic("FileServer does not permit URL parameters.")
|
||||
}
|
||||
|
||||
fs := http.StripPrefix(path, http.FileServer(root))
|
||||
|
||||
if path != "/" && path[len(path)-1] != '/' {
|
||||
r.Get(path, http.RedirectHandler(path+"/", 301).ServeHTTP)
|
||||
path += "/"
|
||||
}
|
||||
path += "*"
|
||||
|
||||
r.Get(path, func(w http.ResponseWriter, r *http.Request) {
|
||||
fs.ServeHTTP(w, r)
|
||||
})
|
||||
}
|
||||
|
||||
func InjectLogger(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"homepage": "https://localhost/ui/",
|
||||
"homepage": "https://localhost/app/",
|
||||
"proxy": "http://localhost:4633/",
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
|
|
11
wire_gen.go
11
wire_gen.go
|
@ -10,19 +10,26 @@ import (
|
|||
"github.com/cloudsonic/sonic-server/persistence"
|
||||
"github.com/cloudsonic/sonic-server/scanner"
|
||||
"github.com/cloudsonic/sonic-server/server"
|
||||
"github.com/cloudsonic/sonic-server/server/app"
|
||||
"github.com/cloudsonic/sonic-server/server/subsonic"
|
||||
"github.com/google/wire"
|
||||
)
|
||||
|
||||
// Injectors from wire_injectors.go:
|
||||
|
||||
func CreateApp(musicFolder string) *server.Server {
|
||||
func CreateServer(musicFolder string) *server.Server {
|
||||
dataStore := persistence.New()
|
||||
scannerScanner := scanner.New(dataStore)
|
||||
serverServer := server.New(scannerScanner)
|
||||
return serverServer
|
||||
}
|
||||
|
||||
func CreateAppRouter(path string) *app.Router {
|
||||
dataStore := persistence.New()
|
||||
router := app.New(dataStore, path)
|
||||
return router
|
||||
}
|
||||
|
||||
func CreateSubsonicAPIRouter() *subsonic.Router {
|
||||
dataStore := persistence.New()
|
||||
browser := engine.NewBrowser(dataStore)
|
||||
|
@ -39,4 +46,4 @@ func CreateSubsonicAPIRouter() *subsonic.Router {
|
|||
|
||||
// wire_injectors.go:
|
||||
|
||||
var allProviders = wire.NewSet(engine.Set, scanner.New, subsonic.New, persistence.New)
|
||||
var allProviders = wire.NewSet(engine.Set, scanner.New, subsonic.New, app.New, persistence.New)
|
||||
|
|
|
@ -7,6 +7,7 @@ import (
|
|||
"github.com/cloudsonic/sonic-server/persistence"
|
||||
"github.com/cloudsonic/sonic-server/scanner"
|
||||
"github.com/cloudsonic/sonic-server/server"
|
||||
"github.com/cloudsonic/sonic-server/server/app"
|
||||
"github.com/cloudsonic/sonic-server/server/subsonic"
|
||||
"github.com/google/wire"
|
||||
)
|
||||
|
@ -15,16 +16,21 @@ var allProviders = wire.NewSet(
|
|||
engine.Set,
|
||||
scanner.New,
|
||||
subsonic.New,
|
||||
app.New,
|
||||
persistence.New,
|
||||
)
|
||||
|
||||
func CreateApp(musicFolder string) *server.Server {
|
||||
func CreateServer(musicFolder string) *server.Server {
|
||||
panic(wire.Build(
|
||||
server.New,
|
||||
allProviders,
|
||||
))
|
||||
}
|
||||
|
||||
func CreateAppRouter(path string) *app.Router {
|
||||
panic(wire.Build(allProviders))
|
||||
}
|
||||
|
||||
func CreateSubsonicAPIRouter() *subsonic.Router {
|
||||
panic(wire.Build(allProviders))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue