e6956aa001
- React frontend with route-level code splitting - Backend rebranded from Baihu to TaskPool - DB brand migration script and local compatibility
80 lines
1.8 KiB
Go
80 lines
1.8 KiB
Go
package controllers
|
|
|
|
import (
|
|
"github.com/engigu/taskpool/internal/services"
|
|
"github.com/engigu/taskpool/internal/utils"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type AppLogController struct {
|
|
appLogService *services.AppLogService
|
|
}
|
|
|
|
func NewAppLogController() *AppLogController {
|
|
return &AppLogController{
|
|
appLogService: services.NewAppLogService(),
|
|
}
|
|
}
|
|
|
|
// GetLogs 获取应用日志列表
|
|
func (ac *AppLogController) GetLogs(c *gin.Context) {
|
|
p := utils.ParsePagination(c)
|
|
category := c.Query("category")
|
|
status := c.Query("status")
|
|
level := c.Query("level")
|
|
keyword := c.Query("keyword")
|
|
|
|
logs, total, err := ac.appLogService.List(category, status, level, p.Page, p.PageSize, keyword)
|
|
if err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
utils.PaginatedResponse(c, logs, total, p)
|
|
}
|
|
|
|
// MarkAsRead 标记已读
|
|
func (ac *AppLogController) MarkAsRead(c *gin.Context) {
|
|
var req struct {
|
|
ID string `json:"id"`
|
|
Category string `json:"category"`
|
|
}
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
|
|
if req.ID != "" {
|
|
if err := ac.appLogService.MarkAsRead(req.ID); err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
} else if req.Category != "" {
|
|
if err := ac.appLogService.MarkAllAsRead(req.Category); err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
} else {
|
|
utils.BadRequest(c, "id 或 category 必须提供")
|
|
return
|
|
}
|
|
utils.SuccessMsg(c, "标记成功")
|
|
}
|
|
|
|
// ClearLogs 清理日志
|
|
func (ac *AppLogController) ClearLogs(c *gin.Context) {
|
|
var req struct {
|
|
Category string `json:"category"`
|
|
}
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
|
|
if err := ac.appLogService.Clear(req.Category); err != nil {
|
|
utils.BadRequest(c, err.Error())
|
|
return
|
|
}
|
|
utils.SuccessMsg(c, "清理成功")
|
|
}
|