mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
"path"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/go-chi/chi/v5/middleware"
|
|
"github.com/go-chi/cors"
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/consts"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/ui"
|
|
)
|
|
|
|
type Handler interface {
|
|
http.Handler
|
|
Setup(path string)
|
|
}
|
|
|
|
type Server struct {
|
|
router *chi.Mux
|
|
ds model.DataStore
|
|
}
|
|
|
|
func New(ds model.DataStore) *Server {
|
|
a := &Server{ds: ds}
|
|
initialSetup(ds)
|
|
a.initRoutes()
|
|
checkFfmpegInstallation()
|
|
checkExternalCredentials()
|
|
return a
|
|
}
|
|
|
|
func (a *Server) MountRouter(urlPath string, subRouter Handler) {
|
|
urlPath = path.Join(conf.Server.BaseURL, urlPath)
|
|
log.Info("Mounting routes", "path", urlPath)
|
|
subRouter.Setup(urlPath)
|
|
a.router.Group(func(r chi.Router) {
|
|
r.Mount(urlPath, subRouter)
|
|
})
|
|
}
|
|
|
|
func (a *Server) Run(addr string) error {
|
|
log.Info("Navidrome server is accepting requests", "address", addr)
|
|
return http.ListenAndServe(addr, a.router)
|
|
}
|
|
|
|
func (a *Server) initRoutes() {
|
|
r := chi.NewRouter()
|
|
|
|
r.Use(secureMiddleware())
|
|
r.Use(cors.AllowAll().Handler)
|
|
r.Use(middleware.RequestID)
|
|
r.Use(middleware.RealIP)
|
|
r.Use(middleware.Recoverer)
|
|
r.Use(middleware.Compress(5, "application/xml", "application/json", "application/javascript"))
|
|
r.Use(middleware.Heartbeat("/ping"))
|
|
r.Use(injectLogger)
|
|
r.Use(requestLogger)
|
|
r.Use(robotsTXT(ui.Assets()))
|
|
|
|
indexHtml := path.Join(conf.Server.BaseURL, consts.URLPathUI)
|
|
r.Get("/*", func(w http.ResponseWriter, r *http.Request) {
|
|
http.Redirect(w, r, indexHtml, 302)
|
|
})
|
|
|
|
a.router = r
|
|
}
|