Files
unified-media-manager/internal/api/blocklist.go
2026-04-24 10:45:19 -07:00

108 lines
3.1 KiB
Go

package api
import (
"context"
"net/http"
"strconv"
"time"
"github.com/TopherMayor/unified-media-manager/internal/service"
"github.com/labstack/echo/v4"
)
func listBlocklist(svc *service.BlocklistService) echo.HandlerFunc {
return func(c echo.Context) error {
ctx, cancel := context.WithTimeout(c.Request().Context(), 10*time.Second)
defer cancel()
page, pageSize := service.ParsePagination(c.QueryParam("page"), c.QueryParam("page_size"))
items, total, err := svc.List(ctx, service.BlocklistFilters{
Page: page,
PageSize: pageSize,
})
if err != nil {
return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusOK, paginatedResponse{
Data: items,
Total: total,
Page: page,
PageSize: pageSize,
TotalPages: service.CalcTotalPages(total, pageSize),
})
}
}
func deleteBlocklistItem(svc *service.BlocklistService) echo.HandlerFunc {
return func(c echo.Context) error {
ctx, cancel := context.WithTimeout(c.Request().Context(), 5*time.Second)
defer cancel()
id, err := strconv.ParseInt(c.Param("id"), 10, 64)
if err != nil {
return c.JSON(http.StatusBadRequest, map[string]string{"error": "invalid id"})
}
if err := svc.Delete(ctx, id); err != nil {
if err.Error() == "blocklist item not found" {
return c.JSON(http.StatusNotFound, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusOK, map[string]string{"status": "deleted"})
}
}
func clearBlocklist(svc *service.BlocklistService) echo.HandlerFunc {
return func(c echo.Context) error {
ctx, cancel := context.WithTimeout(c.Request().Context(), 10*time.Second)
defer cancel()
cleared, err := svc.Clear(ctx)
if err != nil {
return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusOK, map[string]int64{"cleared": cleared})
}
}
func clearExpiredBlocklist(svc *service.BlocklistService) echo.HandlerFunc {
return func(c echo.Context) error {
ctx, cancel := context.WithTimeout(c.Request().Context(), 10*time.Second)
defer cancel()
cleared, err := svc.ClearExpired(ctx)
if err != nil {
return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusOK, map[string]int64{"cleared": cleared})
}
}
func addBlocklistItem(svc *service.BlocklistService) echo.HandlerFunc {
return func(c echo.Context) error {
ctx, cancel := context.WithTimeout(c.Request().Context(), 5*time.Second)
defer cancel()
var req service.AddBlocklistRequest
if err := c.Bind(&req); err != nil {
return c.JSON(http.StatusBadRequest, map[string]string{"error": err.Error()})
}
if req.ReleaseTitle == "" {
return c.JSON(http.StatusBadRequest, map[string]string{"error": "release_title is required"})
}
id, err := svc.Add(ctx, req)
if err != nil {
return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()})
}
return c.JSON(http.StatusCreated, map[string]int64{"id": id})
}
}