Files
navidrome/server/server.go

98 lines
2.4 KiB
Go
Raw Normal View History

2020-01-13 17:06:47 -05:00
package server
import (
"net/http"
"os"
"path/filepath"
"time"
2020-01-23 19:44:08 -05:00
"github.com/deluan/navidrome/conf"
"github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/model"
"github.com/deluan/navidrome/scanner"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
2020-01-09 13:51:54 -05:00
"github.com/go-chi/cors"
)
2020-01-13 17:06:47 -05:00
type Server struct {
Scanner *scanner.Scanner
router *chi.Mux
ds model.DataStore
}
func New(scanner *scanner.Scanner, ds model.DataStore) *Server {
a := &Server{Scanner: scanner, ds: ds}
initialSetup(ds)
a.initRoutes()
a.initScanner()
2020-01-11 13:00:03 -05:00
return a
}
2020-01-13 17:06:47 -05:00
func (a *Server) MountRouter(path string, subRouter http.Handler) {
2020-01-19 19:34:54 -05:00
log.Info("Mounting routes", "path", path)
a.router.Group(func(r chi.Router) {
2020-02-01 20:07:15 -05:00
r.Use(RequestLogger)
r.Mount(path, subRouter)
})
}
2020-01-13 17:06:47 -05:00
func (a *Server) Run(addr string) {
2020-01-23 19:44:08 -05:00
log.Info("Navidrome server is accepting requests", "address", addr)
2020-01-08 20:45:07 -05:00
log.Error(http.ListenAndServe(addr, a.router))
}
2020-01-13 17:06:47 -05:00
func (a *Server) initRoutes() {
r := chi.NewRouter()
2020-01-09 13:51:54 -05:00
r.Use(cors.Default().Handler)
r.Use(middleware.RequestID)
r.Use(middleware.RealIP)
r.Use(middleware.Recoverer)
2020-01-09 00:18:55 -05:00
r.Use(middleware.Compress(5, "application/xml", "application/json", "application/javascript"))
r.Use(middleware.Heartbeat("/ping"))
2020-01-08 20:45:07 -05:00
r.Use(InjectLogger)
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
2020-01-19 19:34:54 -05:00
http.Redirect(w, r, "/app", 302)
})
2020-01-19 19:34:54 -05:00
workDir, _ := os.Getwd()
2020-01-08 11:13:05 -05:00
filesDir := filepath.Join(workDir, "Jamstash-master/dist")
2020-01-19 19:34:54 -05:00
FileServer(r, "/Jamstash", "/Jamstash", http.Dir(filesDir))
a.router = r
}
2020-01-16 16:53:48 -05:00
func (a *Server) initScanner() {
2020-01-24 01:29:31 -05:00
interval, err := time.ParseDuration(conf.Server.ScanInterval)
if interval == 0 {
log.Info("Scanner is disabled", "interval", conf.Server.ScanInterval, err)
return
}
if err != nil {
log.Error("Invalid interval specification. Using default of 5m", "interval", conf.Server.ScanInterval, err)
interval = 5 * time.Minute
} else {
log.Info("Starting scanner", "interval", interval.String())
}
2020-01-16 16:53:48 -05:00
go func() {
time.Sleep(2 * time.Second)
2020-01-16 16:53:48 -05:00
for {
err := a.Scanner.RescanAll(false)
if err != nil {
2020-01-24 01:29:31 -05:00
log.Error("Error scanning media folder", "folder", conf.Server.MusicFolder, err)
2020-01-16 16:53:48 -05:00
}
time.Sleep(interval)
2020-01-16 16:53:48 -05:00
}
}()
}
2020-01-08 20:45:07 -05:00
func InjectLogger(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
ctx = log.NewContext(r.Context(), "requestId", ctx.Value(middleware.RequestIDKey))
next.ServeHTTP(w, r.WithContext(ctx))
})
}