feat(ECR-037): ExploreConfig ImageCardDeck 只读并 Closed

ImageCardDeck catalog (000038) · Loop continuous.
This commit is contained in:
jackyu66git
2026-08-08 03:16:42 +08:00
parent 0fa6da2446
commit 5c462ecb2a
25 changed files with 455 additions and 1 deletions
+1
View File
@@ -65,6 +65,7 @@ func (h *AdminHandler) Register(api *gin.RouterGroup) {
h.registerPrivacyRequests(authed)
h.registerStarConfigs(authed)
h.registerRhythmConfigs(authed)
h.registerImageCardDecks(authed)
}
func (h *AdminHandler) Login(c *gin.Context) {
@@ -0,0 +1,46 @@
package handler
import (
"errors"
"net/http"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"github.com/yuxingu/digital-psychology/apps/api/internal/middleware"
"github.com/yuxingu/digital-psychology/apps/api/internal/service/admin"
"github.com/yuxingu/digital-psychology/apps/api/pkg/response"
)
func (h *AdminHandler) registerImageCardDecks(authed *gin.RouterGroup) {
g := authed.Group("/explore")
g.GET("/image-card-decks", middleware.RequireAdminPermission(h.Svc, admin.PermExploreRead), h.ListImageCardDecks)
g.GET("/image-card-decks/:id", middleware.RequireAdminPermission(h.Svc, admin.PermExploreRead), h.GetImageCardDeck)
}
func (h *AdminHandler) ListImageCardDecks(c *gin.Context) {
items, err := h.Svc.ListImageCardDecks(c.Request.Context())
if err != nil {
response.Fail(c, http.StatusInternalServerError, 50050, "list image-card-deck failed")
return
}
response.OK(c, gin.H{"items": items})
}
func (h *AdminHandler) GetImageCardDeck(c *gin.Context) {
id, err := uuid.Parse(c.Param("id"))
if err != nil {
response.Fail(c, http.StatusBadRequest, 40002, "invalid id")
return
}
row, err := h.Svc.GetImageCardDeck(c.Request.Context(), id)
if errors.Is(err, admin.ErrImageCardDeckNotFound) {
response.Fail(c, http.StatusNotFound, 40420, "image-card-deck not found")
return
}
if err != nil {
response.Fail(c, http.StatusInternalServerError, 50051, "get image-card-deck failed")
return
}
response.OK(c, row)
}