2022-08-26 20:15:36 +08:00
|
|
|
package router
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"mayfly-go/internal/sys/api"
|
|
|
|
|
"mayfly-go/internal/sys/application"
|
2023-01-14 16:29:52 +08:00
|
|
|
"mayfly-go/pkg/req"
|
2022-08-26 20:15:36 +08:00
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func InitSysConfigRouter(router *gin.RouterGroup) {
|
2022-09-09 18:26:08 +08:00
|
|
|
r := &api.Config{ConfigApp: application.GetConfigApp()}
|
2022-08-26 20:15:36 +08:00
|
|
|
db := router.Group("sys/configs")
|
|
|
|
|
{
|
|
|
|
|
db.GET("", func(c *gin.Context) {
|
2023-01-14 16:29:52 +08:00
|
|
|
req.NewCtxWithGin(c).Handle(r.Configs)
|
2022-08-26 20:15:36 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
db.GET("/value", func(c *gin.Context) {
|
2023-04-16 00:50:36 +08:00
|
|
|
req.NewCtxWithGin(c).DontNeedToken().Handle(r.GetConfigValueByKey)
|
2022-08-26 20:15:36 +08:00
|
|
|
})
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
saveConfig := req.NewLogInfo("保存系统配置信息").WithSave(true)
|
2023-06-17 15:15:03 +08:00
|
|
|
saveConfigP := req.NewPermission("config:base")
|
2022-08-26 20:15:36 +08:00
|
|
|
db.POST("", func(c *gin.Context) {
|
2023-01-14 16:29:52 +08:00
|
|
|
req.NewCtxWithGin(c).
|
2022-08-26 20:15:36 +08:00
|
|
|
WithLog(saveConfig).
|
2023-06-17 15:15:03 +08:00
|
|
|
WithRequiredPermission(saveConfigP).
|
2022-08-26 20:15:36 +08:00
|
|
|
Handle(r.SaveConfig)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|