88 lines
2.2 KiB
Go
88 lines
2.2 KiB
Go
package handler
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"kra/internal/biz"
|
|
"kra/internal/server/httpx"
|
|
"kra/internal/service"
|
|
"kra/internal/service/dto"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type SystemConfig struct {
|
|
system *service.SystemConfigService
|
|
settings *service.SecurityService
|
|
}
|
|
|
|
func NewSystemConfig(system *service.SystemConfigService, settings *service.SecurityService) *SystemConfig {
|
|
return &SystemConfig{system: system, settings: settings}
|
|
}
|
|
|
|
func (h *SystemConfig) GetSecurity(c *gin.Context) {
|
|
value, err := h.settings.Security(c.Request.Context())
|
|
if err != nil {
|
|
httpx.Fail(c, "获取安全配置失败")
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, value, "获取成功")
|
|
}
|
|
|
|
func (h *SystemConfig) SetSecurity(c *gin.Context) {
|
|
var req dto.SecurityConfigRequest
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
httpx.Fail(c, err.Error())
|
|
return
|
|
}
|
|
result, err := h.settings.SaveSecurityRequest(c.Request.Context(), &req)
|
|
if err != nil {
|
|
httpx.Fail(c, "设置安全配置失败")
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, result, "设置成功")
|
|
}
|
|
|
|
func (h *SystemConfig) Get(c *gin.Context) {
|
|
value, err := h.system.SystemConfig()
|
|
if err != nil {
|
|
httpx.Fail(c, "获取失败")
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, value, "获取成功")
|
|
}
|
|
|
|
func (h *SystemConfig) Set(c *gin.Context) {
|
|
var req dto.SetSystemConfigRequest
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
httpx.Fail(c, err.Error())
|
|
return
|
|
}
|
|
if err := h.system.SaveSystemConfig(c.Request.Context(), &req); err != nil {
|
|
httpx.Fail(c, "设置失败")
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, gin.H{}, "设置成功")
|
|
}
|
|
|
|
func (h *SystemConfig) Reload(c *gin.Context) {
|
|
if err := h.system.ReloadConfig(c.Request.Context()); err != nil {
|
|
if errors.Is(err, biz.ErrTaskRuntimeReload) {
|
|
httpx.Fail(c, "系统配置已重载,但定时任务重载失败:"+err.Error())
|
|
return
|
|
}
|
|
httpx.Fail(c, "重载系统失败:"+err.Error())
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, gin.H{}, "重载系统成功")
|
|
}
|
|
|
|
func (h *SystemConfig) ServerInfo(c *gin.Context) {
|
|
server, err := h.system.ServerInfo()
|
|
if err != nil {
|
|
httpx.Fail(c, "获取失败")
|
|
return
|
|
}
|
|
httpx.Write(c, httpx.CodeSuccess, gin.H{"server": server}, "获取成功")
|
|
}
|