package handler import ( "kra/app/system/internal/dto" "kra/app/system/internal/service" "kra/app/system/internal/transport/httpx" "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 { 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}, "获取成功") }