feat(ECR-044): RhythmConfig 写面闭环并 Closed

复用 admin.explore.write、POST/PUT+审计、C端 GET /rhythm/configs、
H5 无 active 空态/失败回退;migration 000053。ExploreConfig Loop STOP,禁自动 ECR-045。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
jackyu66git
2026-08-13 20:43:08 +08:00
co-authored by Cursor
parent fcc7667ba3
commit 87b463b2bb
33 changed files with 1006 additions and 35 deletions
@@ -16,6 +16,8 @@ func (h *AdminHandler) registerRhythmConfigs(authed *gin.RouterGroup) {
g := authed.Group("/explore")
g.GET("/rhythm-configs", middleware.RequireAdminPermission(h.Svc, admin.PermExploreRead), h.ListRhythmConfigs)
g.GET("/rhythm-configs/:id", middleware.RequireAdminPermission(h.Svc, admin.PermExploreRead), h.GetRhythmConfig)
g.POST("/rhythm-configs", middleware.RequireAdminPermission(h.Svc, admin.PermExploreWrite), h.CreateRhythmConfig)
g.PUT("/rhythm-configs/:id", middleware.RequireAdminPermission(h.Svc, admin.PermExploreWrite), h.UpdateRhythmConfig)
}
func (h *AdminHandler) ListRhythmConfigs(c *gin.Context) {
@@ -44,3 +46,66 @@ func (h *AdminHandler) GetRhythmConfig(c *gin.Context) {
}
response.OK(c, row)
}
func (h *AdminHandler) CreateRhythmConfig(c *gin.Context) {
adminID, ok := middleware.AdminIDFromContext(c)
if !ok {
response.Fail(c, http.StatusUnauthorized, 40101, "admin auth required")
return
}
var body admin.RhythmConfigWriteBody
if err := c.ShouldBindJSON(&body); err != nil {
response.Fail(c, http.StatusBadRequest, 40054, "invalid body")
return
}
row, err := h.Svc.CreateRhythmConfig(c.Request.Context(), adminID, body)
if errors.Is(err, admin.ErrInvalidRhythmConfig) {
response.Fail(c, http.StatusBadRequest, 40055, "invalid rhythm config")
return
}
if errors.Is(err, admin.ErrRhythmConfigConflict) {
response.Fail(c, http.StatusConflict, 40912, "rhythm config code conflict")
return
}
if err != nil {
response.Fail(c, http.StatusInternalServerError, 50052, "create rhythm config failed")
return
}
response.OK(c, row)
}
func (h *AdminHandler) UpdateRhythmConfig(c *gin.Context) {
adminID, ok := middleware.AdminIDFromContext(c)
if !ok {
response.Fail(c, http.StatusUnauthorized, 40101, "admin auth required")
return
}
id, err := uuid.Parse(c.Param("id"))
if err != nil {
response.Fail(c, http.StatusBadRequest, 40002, "invalid id")
return
}
var body admin.RhythmConfigWriteBody
if err := c.ShouldBindJSON(&body); err != nil {
response.Fail(c, http.StatusBadRequest, 40054, "invalid body")
return
}
row, err := h.Svc.UpdateRhythmConfig(c.Request.Context(), adminID, id, body)
if errors.Is(err, admin.ErrRhythmConfigNotFound) {
response.Fail(c, http.StatusNotFound, 40420, "rhythm-config not found")
return
}
if errors.Is(err, admin.ErrInvalidRhythmConfig) {
response.Fail(c, http.StatusBadRequest, 40055, "invalid rhythm config")
return
}
if errors.Is(err, admin.ErrRhythmConfigConflict) {
response.Fail(c, http.StatusConflict, 40912, "rhythm config code conflict")
return
}
if err != nil {
response.Fail(c, http.StatusInternalServerError, 50053, "update rhythm config failed")
return
}
response.OK(c, row)
}
@@ -0,0 +1,36 @@
package handler
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/yuxingu/digital-psychology/apps/api/internal/repository"
"github.com/yuxingu/digital-psychology/apps/api/pkg/response"
)
// RhythmConfigPublicHandler serves GET /api/v1/rhythm/configs (DeviceAuth).
type RhythmConfigPublicHandler struct {
Repo *repository.AdminRepo
}
// Register mounts public rhythm config routes.
func (h *RhythmConfigPublicHandler) Register(api *gin.RouterGroup) {
api.GET("/rhythm/configs", h.ListActive)
}
func (h *RhythmConfigPublicHandler) ListActive(c *gin.Context) {
if h.Repo == nil {
response.OK(c, gin.H{"items": []repository.RhythmConfigRow{}})
return
}
items, err := h.Repo.ListActiveRhythmConfigs(c.Request.Context())
if err != nil {
response.Fail(c, http.StatusInternalServerError, 50054, "rhythm configs failed")
return
}
if items == nil {
items = []repository.RhythmConfigRow{}
}
response.OK(c, gin.H{"items": items})
}