36 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setting.go 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
package setting
import (
"fmt"
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
"github.com/rancher/norman/types/slice"
"github.com/rancher/rancher/pkg/auth/providerrefresh"
v3client "github.com/rancher/types/client/management/v3"
)
var readOnlySettings = []string{
"cacerts",
}
func PipelineFormatter(apiContext *types.APIContext, resource *types.RawResource) {
v, ok := resource.Values["value"]
if !ok || v == "" {
resource.Values["value"] = resource.Values["default"]
resource.Values["customized"] = false
} else {
resource.Values["customized"] = true
}
}
func Formatter(apiContext *types.APIContext, resource *types.RawResource) {
if convert.ToString(resource.Values["source"]) == "env" {
delete(resource.Links, "update")
} else if slice.ContainsString(readOnlySettings, resource.ID) {
delete(resource.Links, "update")
}
}
func Validator(request *types.APIContext, schema *types.Schema, data map[string]interface{}) error {
var setting v3client.Setting
// request.ID is taken from the request request url, it is possible that the request url does not contain the id
id := request.ID
if name, ok := data["name"].(string); ok && id == "" {
id = name
}
if err := access.ByID(request, request.Version, v3client.SettingType, id, &setting); err != nil {
if !httperror.IsNotFound(err) {
return err
}
}
if setting.Source == "env" {
return httperror.NewAPIError(httperror.MethodNotAllowed, fmt.Sprintf("%s is readOnly because its value is from environment variable", id))
} else if slice.ContainsString(readOnlySettings, id) {
return httperror.NewAPIError(httperror.MethodNotAllowed, fmt.Sprintf("%s is readOnly", id))
}
newValue, ok := data["value"]
if !ok {
return fmt.Errorf("value not found")
}
newValueString, ok := newValue.(string)
if !ok {
return fmt.Errorf("value not string")
}
var err error
switch id {
case "auth-user-info-max-age-seconds":
_, err = providerrefresh.ParseMaxAge(newValueString)
case "auth-user-info-resync-cron":
_, err = providerrefresh.ParseCron(newValueString)
}
if err != nil {
return httperror.NewAPIError(httperror.InvalidBodyContent, fmt.Sprintf("%v", err))
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.3-rc5

搜索帮助

344bd9b3 5694891 D2dac590 5694891