refactor(handlers): update all handlers for Echo v5 compatibility
Update all handler functions to use *echo.Context (pointer) instead of echo.Context (value) as required by Echo v5. Changes across all handler files: - analytics.go: Update handler signatures - auth.go: Update authentication handler signatures - book_matching.go: Update matching handler signatures - collections.go: Update collection handler signatures - collections_preview_test.go: Update test signatures - commonhandlers.go: Update common handler signatures - conflicts.go: Update conflict handler signatures - context.go: Update context handler signatures - dashboard.go: Update dashboard handler signatures - devices.go: Update device handler signatures - jobs.go: Update job handler signatures - kobo.go: Update Kobo handler signatures - koreader.go: Update Koreader handler signatures - library.go: Update library handler signatures - matching.go: Update matching handler signatures - media.go: Update media handler signatures - opds.go: Update OPDS handler signatures - progress.go: Update progress handler signatures - queue.go: Update queue handler signatures - refresh_token.go: Update token handler signatures - scanner.go: Update scanner handler signatures - sidecar.go: Update sidecar handler signatures - sync.go: Update sync handler signatures - system_settings.go: Update settings handler signatures - websocket.go: Update WebSocket handler signatures All handlers now properly implement Echo v5's pointer-based context pattern. This change is necessary for type safety and compatibility with Echo v5's improved context handling and WebSocket support.
This commit is contained in:
@@ -9,7 +9,7 @@ import (
|
||||
|
||||
"github.com/google/uuid"
|
||||
"github.com/jackc/pgx/v5/pgtype"
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/labstack/echo/v5"
|
||||
)
|
||||
|
||||
type SidecarHandler struct {
|
||||
@@ -56,7 +56,7 @@ type SidecarCollection struct {
|
||||
|
||||
// GetSidecarConfig generates and returns sidecar configuration for a device
|
||||
// GET /api/devices/:device_id/sidecar
|
||||
func (h *SidecarHandler) GetSidecarConfig(c echo.Context) error {
|
||||
func (h *SidecarHandler) GetSidecarConfig(c *echo.Context) error {
|
||||
deviceID, err := uuid.Parse(c.Param("device_id"))
|
||||
if err != nil {
|
||||
return c.JSON(http.StatusBadRequest, map[string]string{
|
||||
@@ -189,7 +189,7 @@ func (h *SidecarHandler) GetSidecarConfig(c echo.Context) error {
|
||||
|
||||
// DownloadSidecarConfig generates a .bookhoard.json file for device setup
|
||||
// GET /api/devices/:device_id/sidecar/download
|
||||
func (h *SidecarHandler) DownloadSidecarConfig(c echo.Context) error {
|
||||
func (h *SidecarHandler) DownloadSidecarConfig(c *echo.Context) error {
|
||||
deviceID, err := uuid.Parse(c.Param("device_id"))
|
||||
if err != nil {
|
||||
return c.JSON(http.StatusBadRequest, map[string]string{
|
||||
@@ -333,7 +333,7 @@ func (h *SidecarHandler) DownloadSidecarConfig(c echo.Context) error {
|
||||
|
||||
// GetSystemConfiguration returns system-wide configuration
|
||||
// GET /api/system/config
|
||||
func (h *SidecarHandler) GetSystemConfiguration(c echo.Context) error {
|
||||
func (h *SidecarHandler) GetSystemConfiguration(c *echo.Context) error {
|
||||
ctx := c.Request().Context()
|
||||
|
||||
// Get all system config
|
||||
@@ -355,7 +355,7 @@ func (h *SidecarHandler) GetSystemConfiguration(c echo.Context) error {
|
||||
|
||||
// UpdateSystemConfiguration updates system-wide configuration
|
||||
// PUT /api/system/config
|
||||
func (h *SidecarHandler) UpdateSystemConfiguration(c echo.Context) error {
|
||||
func (h *SidecarHandler) UpdateSystemConfiguration(c *echo.Context) error {
|
||||
user := c.Get("user")
|
||||
if user == nil {
|
||||
return c.JSON(http.StatusUnauthorized, map[string]string{
|
||||
|
||||
Reference in New Issue
Block a user