mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
44 lines
1020 B
Go
44 lines
1020 B
Go
package api
|
|
|
|
import (
|
|
"mayfly-go/internal/sys/api/form"
|
|
"mayfly-go/internal/sys/application"
|
|
"mayfly-go/internal/sys/domain/entity"
|
|
"mayfly-go/pkg/biz"
|
|
"mayfly-go/pkg/ginx"
|
|
"mayfly-go/pkg/req"
|
|
)
|
|
|
|
type Config struct {
|
|
ConfigApp application.Config
|
|
}
|
|
|
|
func (c *Config) Configs(rc *req.Ctx) {
|
|
g := rc.GinCtx
|
|
condition := &entity.Config{Key: g.Query("key")}
|
|
condition.Permission = rc.LoginAccount.Username
|
|
rc.ResData = c.ConfigApp.GetPageList(condition, ginx.GetPageParam(g), new([]entity.Config))
|
|
}
|
|
|
|
func (c *Config) GetConfigValueByKey(rc *req.Ctx) {
|
|
key := rc.GinCtx.Query("key")
|
|
biz.NotEmpty(key, "key不能为空")
|
|
|
|
config := c.ConfigApp.GetConfig(key)
|
|
// 判断是否为公开配置
|
|
if config.Permission != "all" {
|
|
rc.ResData = ""
|
|
return
|
|
}
|
|
|
|
rc.ResData = config.Value
|
|
}
|
|
|
|
func (c *Config) SaveConfig(rc *req.Ctx) {
|
|
form := &form.ConfigForm{}
|
|
config := ginx.BindJsonAndCopyTo(rc.GinCtx, form, new(entity.Config))
|
|
rc.ReqParam = form
|
|
config.SetBaseInfo(rc.LoginAccount)
|
|
c.ConfigApp.Save(config)
|
|
}
|