Initial Last.fm UI implementation

This commit is contained in:
Steve Richter 2021-06-17 02:05:52 -04:00 committed by Deluan Quintão
parent 0495e421fe
commit 8ee5c1f245
2 changed files with 63 additions and 12 deletions

View file

@ -15,6 +15,7 @@ import (
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/model"
"github.com/navidrome/navidrome/ui"
"github.com/navidrome/navidrome/utils"
)
type Server struct {
@ -84,6 +85,15 @@ func (s *Server) initRoutes() {
r.Post("/createAdmin", createAdmin(s.ds))
})
r.Get("/api/lastfm/link/status", func(w http.ResponseWriter, r *http.Request) {
rs := "false"
c := utils.ParamInt(r, "c", 0)
if (c == 4) {
rs = "true"
}
_, _ = w.Write([]byte(rs))
})
// Redirect root to UI URL
r.Get("/*", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, s.appRoot+"/", http.StatusFound)