mirror of
https://github.com/minio/mc.git
synced 2025-11-10 13:42:32 +03:00
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
/*
|
|
* MinIO Client (C) 2015 MinIO, Inc.
|
|
*
|
|
* 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 cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// Check if version of the config is valid
|
|
func validateConfigVersion(config *configV9) (bool, string) {
|
|
if config.Version != globalMCConfigVersion {
|
|
return false, fmt.Sprintf("Config version '%s' does not match mc config version '%s', please update your binary.\n",
|
|
config.Version, globalMCConfigVersion)
|
|
}
|
|
return true, ""
|
|
}
|
|
|
|
// Verifies the config file of the MinIO Client
|
|
func validateConfigFile(config *configV9) (bool, []string) {
|
|
ok, err := validateConfigVersion(config)
|
|
var validationSuccessful = true
|
|
var errors []string
|
|
if !ok {
|
|
validationSuccessful = false
|
|
errors = append(errors, err)
|
|
}
|
|
hosts := config.Hosts
|
|
for _, hostConfig := range hosts {
|
|
hostConfigHealthOk, hostErrors := validateConfigHost(hostConfig)
|
|
if !hostConfigHealthOk {
|
|
validationSuccessful = false
|
|
errors = append(errors, hostErrors...)
|
|
}
|
|
}
|
|
return validationSuccessful, errors
|
|
}
|
|
|
|
func validateConfigHost(host hostConfigV9) (bool, []string) {
|
|
var validationSuccessful = true
|
|
var hostErrors []string
|
|
if !isValidAPI(strings.ToLower(host.API)) {
|
|
validationSuccessful = false
|
|
hostErrors = append(hostErrors, errInvalidAPISignature(host.API, host.URL).ToGoError().Error())
|
|
}
|
|
if !isValidHostURL(host.URL) {
|
|
validationSuccessful = false
|
|
hostErrors = append(hostErrors, errInvalidURL(host.URL).ToGoError().Error())
|
|
}
|
|
return validationSuccessful, hostErrors
|
|
}
|