mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
60 lines
2.0 KiB
Go
60 lines
2.0 KiB
Go
// Copyright 2023 The frp Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package validation
|
|
|
|
import (
|
|
"fmt"
|
|
"slices"
|
|
|
|
"github.com/samber/lo"
|
|
|
|
v1 "github.com/fatedier/frp/pkg/config/v1"
|
|
)
|
|
|
|
func ValidateServerConfig(c *v1.ServerConfig) (Warning, error) {
|
|
var (
|
|
warnings Warning
|
|
errs error
|
|
)
|
|
if !slices.Contains(SupportedAuthMethods, c.Auth.Method) {
|
|
errs = AppendError(errs, fmt.Errorf("invalid auth method, optional values are %v", SupportedAuthMethods))
|
|
}
|
|
if !lo.Every(SupportedAuthAdditionalScopes, c.Auth.AdditionalScopes) {
|
|
errs = AppendError(errs, fmt.Errorf("invalid auth additional scopes, optional values are %v", SupportedAuthAdditionalScopes))
|
|
}
|
|
|
|
if err := validateLogConfig(&c.Log); err != nil {
|
|
errs = AppendError(errs, err)
|
|
}
|
|
|
|
if err := validateWebServerConfig(&c.WebServer); err != nil {
|
|
errs = AppendError(errs, err)
|
|
}
|
|
|
|
errs = AppendError(errs, ValidatePort(c.BindPort, "bindPort"))
|
|
errs = AppendError(errs, ValidatePort(c.KCPBindPort, "kcpBindPort"))
|
|
errs = AppendError(errs, ValidatePort(c.QUICBindPort, "quicBindPort"))
|
|
errs = AppendError(errs, ValidatePort(c.VhostHTTPPort, "vhostHTTPPort"))
|
|
errs = AppendError(errs, ValidatePort(c.VhostHTTPSPort, "vhostHTTPSPort"))
|
|
errs = AppendError(errs, ValidatePort(c.TCPMuxHTTPConnectPort, "tcpMuxHTTPConnectPort"))
|
|
|
|
for _, p := range c.HTTPPlugins {
|
|
if !lo.Every(SupportedHTTPPluginOps, p.Ops) {
|
|
errs = AppendError(errs, fmt.Errorf("invalid http plugin ops, optional values are %v", SupportedHTTPPluginOps))
|
|
}
|
|
}
|
|
return warnings, errs
|
|
}
|