代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。