f4d1c3cf28
- Add statistics.sql with 8 SQL queries for play count statistics - Generate repository code via sqlc - Add backend/statistics.go with business logic - Add server/statistics_handler.go with Echo handlers - Register protected routes under /api/v1/statistics/ with token auth - Endpoints: games/most-played, games/least-played, games/never-played, games/last-played, games/oldest-played, songs/most-played, songs/least-played, summary Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
169 lines
5.8 KiB
Go
169 lines
5.8 KiB
Go
package server
|
|
|
|
import (
|
|
"music-server/cmd/web"
|
|
"music-server/internal/logging"
|
|
"music-server/internal/server/middleware"
|
|
"net/http"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/a-h/templ"
|
|
"github.com/labstack/echo/v5"
|
|
echoMiddleware "github.com/labstack/echo/v5/middleware"
|
|
echoSwagger "github.com/swaggo/echo-swagger/v2"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// @Title MusicServer API
|
|
// @version 1.0
|
|
// @description API for the MusicServer application
|
|
// @termsOfService http://sanplex.xyz/terms/
|
|
|
|
// @contact.name Sebastian Olsson
|
|
// @contact.email zarnor91@gmail.com
|
|
|
|
// @license.name MIT
|
|
// @license.url http://opensource.org/licenses/MIT
|
|
|
|
// @host localhost:8080
|
|
// @BasePath /
|
|
func (s *Server) RegisterRoutes() http.Handler {
|
|
e := echo.New()
|
|
|
|
// Serve OpenAPI spec at /openapi
|
|
e.GET("/openapi", echo.WrapHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
http.ServeFile(w, r, "cmd/docs/swagger.json")
|
|
})))
|
|
e.Use(logging.RequestLogger())
|
|
e.Use(echoMiddleware.Recover())
|
|
|
|
e.Use(echoMiddleware.CORSWithConfig(echoMiddleware.CORSConfig{
|
|
AllowOrigins: []string{"https://*", "http://*"},
|
|
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH"},
|
|
AllowHeaders: []string{"Accept", "Authorization", "Content-Type", "X-CSRF-Token"},
|
|
AllowCredentials: true,
|
|
MaxAge: 300,
|
|
}))
|
|
|
|
fileServer := http.FileServer(http.FS(web.Assets))
|
|
e.GET("/assets/*", echo.WrapHandler(fileServer))
|
|
|
|
e.GET("/search", echo.WrapHandler(templ.Handler(web.HelloForm())))
|
|
e.POST("/find", echo.WrapHandler(http.HandlerFunc(web.FindGameWebHandler)))
|
|
|
|
e.Static("/", "/frontend")
|
|
|
|
// Swagger UI
|
|
e.GET("/swagger/*", echoSwagger.WrapHandler)
|
|
|
|
index := NewIndexHandler()
|
|
e.GET("/version", index.GetVersion)
|
|
e.GET("/dbtest", index.GetDBTest)
|
|
e.GET("/health", index.HealthCheck)
|
|
e.GET("/character", index.GetCharacter)
|
|
e.GET("/characters", index.GetCharacterList)
|
|
|
|
download := NewDownloadHandler()
|
|
e.GET("/download", download.checkLatest)
|
|
e.GET("/download/list", download.listAssetsOfLatest)
|
|
e.GET("/download/windows", download.downloadLatestWindows)
|
|
e.GET("/download/linux", download.downloadLatestLinux)
|
|
|
|
sync := NewSyncHandler()
|
|
syncGroup := e.Group("/sync")
|
|
syncGroup.GET("", sync.SyncGamesNewOnlyChanges)
|
|
syncGroup.GET("/progress", sync.SyncProgress)
|
|
syncGroup.GET("/new", sync.SyncGamesNewOnlyChanges)
|
|
syncGroup.GET("/full", sync.SyncGamesNewFull)
|
|
syncGroup.GET("/new/full", sync.SyncGamesNewFull)
|
|
syncGroup.GET("/quick", sync.SyncGamesNewOnlyChanges)
|
|
syncGroup.GET("/reset", sync.ResetGames)
|
|
|
|
music := NewMusicHandler()
|
|
musicGroup := e.Group("/music")
|
|
musicGroup.GET("", music.GetSong)
|
|
musicGroup.GET("/soundTest", music.GetSoundCheckSong)
|
|
musicGroup.GET("/reset", music.ResetMusic)
|
|
musicGroup.GET("/rand", music.GetRandomSong)
|
|
musicGroup.GET("/rand/low", music.GetRandomSongLowChance)
|
|
musicGroup.GET("/rand/classic", music.GetRandomSongClassic)
|
|
musicGroup.GET("/info", music.GetSongInfo)
|
|
musicGroup.GET("/list", music.GetPlayedSongs)
|
|
musicGroup.GET("/next", music.GetNextSong)
|
|
musicGroup.GET("/previous", music.GetPreviousSong)
|
|
musicGroup.GET("/all", music.GetAllGamesRandom)
|
|
musicGroup.GET("/all/order", music.GetAllGames)
|
|
musicGroup.GET("/all/random", music.GetAllGamesRandom)
|
|
musicGroup.PUT("/played", music.PutPlayed)
|
|
musicGroup.GET("/addQue", music.AddLatestToQue)
|
|
musicGroup.GET("/addPlayed", music.AddLatestPlayed)
|
|
|
|
// ============================================
|
|
// API v1 Routes with Token Authentication
|
|
// ============================================
|
|
|
|
// Create /api/v1 group
|
|
apiV1 := e.Group("/api/v1")
|
|
|
|
// Public endpoints - no token required
|
|
apiV1.POST("/token", func(c *echo.Context) error {
|
|
return s.tokenHandler.CreateTokenHandler(c)
|
|
})
|
|
apiV1.DELETE("/token", func(c *echo.Context) error {
|
|
return s.tokenHandler.DeleteTokenHandler(c)
|
|
})
|
|
apiV1.POST("/token/cleanup", func(c *echo.Context) error {
|
|
return s.tokenHandler.CleanupExpiredSessionsHandler(c)
|
|
})
|
|
|
|
// Protected endpoints - require valid token
|
|
// Create token auth middleware with pool access
|
|
tokenAuthMiddleware := middleware.TokenAuthMiddleware(s.db.Pool)
|
|
|
|
// Protected group with token authentication
|
|
protectedV1 := apiV1.Group("", tokenAuthMiddleware)
|
|
|
|
// Statistics API endpoints (protected by token auth)
|
|
statistics := s.statisticsHandler
|
|
protectedV1.GET("/statistics/games/most-played", func(c *echo.Context) error {
|
|
return statistics.GetMostPlayedGames(c)
|
|
})
|
|
protectedV1.GET("/statistics/games/least-played", func(c *echo.Context) error {
|
|
return statistics.GetLeastPlayedGames(c)
|
|
})
|
|
protectedV1.GET("/statistics/games/never-played", func(c *echo.Context) error {
|
|
return statistics.GetNeverPlayedGames(c)
|
|
})
|
|
protectedV1.GET("/statistics/games/last-played", func(c *echo.Context) error {
|
|
return statistics.GetLastPlayedGames(c)
|
|
})
|
|
protectedV1.GET("/statistics/games/oldest-played", func(c *echo.Context) error {
|
|
return statistics.GetOldestPlayedGames(c)
|
|
})
|
|
protectedV1.GET("/statistics/songs/most-played", func(c *echo.Context) error {
|
|
return statistics.GetMostPlayedSongs(c)
|
|
})
|
|
protectedV1.GET("/statistics/songs/least-played", func(c *echo.Context) error {
|
|
return statistics.GetLeastPlayedSongs(c)
|
|
})
|
|
protectedV1.GET("/statistics/summary", func(c *echo.Context) error {
|
|
return statistics.GetStatisticsSummary(c)
|
|
})
|
|
|
|
// Future: VGMQ endpoints will be added to protectedV1 group
|
|
_ = protectedV1 // Use the variable to avoid unused variable error
|
|
|
|
routes := e.Router().Routes()
|
|
sort.Slice(routes, func(i, j int) bool {
|
|
return routes[i].Path < routes[j].Path
|
|
})
|
|
for _, r := range routes {
|
|
if (r.Method == "GET" || r.Method == "POST" || r.Method == "PUT" || r.Method == "DELETE") && !strings.Contains(r.Name, "github") {
|
|
logging.GetLogger().Debug("Registered route", zap.String("method", r.Method), zap.String("path", r.Path))
|
|
}
|
|
}
|
|
return e
|
|
}
|