- Delete 权限:新增 requesterID/isAdmin 参数,Service 层鉴权(仅本人/管理员可删)
- 通知内容:改用 GetUsernameByID 显示真实用户名,非数字 UID
- SearchUsers:Repository 返回 exp,Service 调用 GetLevelByExp 计算等级
- 通知高亮:Notification 新增 CommentID 字段,消息链接支持 #comment-{id}
- 已删除提示:前端 hash 检测 + 3 秒超时 Toast "该评论已不存在"
- Admin CSS:移除不存在的 comments.css 引用
- 错误哨兵:改用 common.ErrCommentNotFound/ErrCommentEmpty/PermissionDenied
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"metazone.cc/metalab/internal/common"
|
|
"metazone.cc/metalab/internal/model"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// AdminCommentController 后台评论管理
|
|
type AdminCommentController struct {
|
|
commentService adminCommentUseCase
|
|
}
|
|
|
|
// NewAdminCommentController 构造函数
|
|
func NewAdminCommentController(cs adminCommentUseCase) *AdminCommentController {
|
|
return &AdminCommentController{commentService: cs}
|
|
}
|
|
|
|
// CommentsPage SSR 页面
|
|
func (ctrl *AdminCommentController) CommentsPage(c *gin.Context) {
|
|
c.HTML(http.StatusOK, "admin/comments/index.html", common.BuildAdminPageData(c, gin.H{
|
|
"Title": "评论管理",
|
|
}))
|
|
}
|
|
|
|
// ListComments API 列表
|
|
func (ctrl *AdminCommentController) ListComments(c *gin.Context) {
|
|
keyword := c.Query("keyword")
|
|
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
|
pageSize, _ := strconv.Atoi(c.DefaultQuery("page_size", "20"))
|
|
|
|
comments, total, err := ctrl.commentService.ListAllComments(keyword, false, page, pageSize)
|
|
if err != nil {
|
|
common.Error(c, http.StatusInternalServerError, "获取评论列表失败")
|
|
return
|
|
}
|
|
if comments == nil {
|
|
comments = []model.AdminCommentRow{}
|
|
}
|
|
|
|
common.Ok(c, gin.H{
|
|
"items": comments,
|
|
"total": total,
|
|
"page": page,
|
|
"total_pages": common.PageCount(total, pageSize),
|
|
})
|
|
}
|
|
|
|
// Delete 软删除评论
|
|
func (ctrl *AdminCommentController) Delete(c *gin.Context) {
|
|
commentID, err := strconv.ParseUint(c.Param("id"), 10, 64)
|
|
if err != nil {
|
|
common.Error(c, http.StatusBadRequest, "无效的评论ID")
|
|
return
|
|
}
|
|
if err := ctrl.commentService.Delete(uint(commentID), 0, true); err != nil {
|
|
common.Error(c, http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
common.OkMessage(c, "删除成功")
|
|
}
|