mirror of
https://github.com/minio/mc.git
synced 2025-11-12 01:02:26 +03:00
Project can be only built with go1.12 or newer other build related changes to use new go1.12 features. Fixes #2815
102 lines
2.9 KiB
Go
102 lines
2.9 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 contains all the global variables and constants. ONLY TO BE ACCESSED VIA GET/SET FUNCTIONS.
|
|
package cmd
|
|
|
|
import (
|
|
"crypto/x509"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/minio/cli"
|
|
"github.com/minio/mc/pkg/console"
|
|
)
|
|
|
|
// mc configuration related constants.
|
|
var (
|
|
globalMCConfigDir = fmt.Sprintf(".%s/", filepath.Base(os.Args[0]))
|
|
globalMCConfigWindowsDir = fmt.Sprintf("%s\\", filepath.Base(os.Args[0]))
|
|
)
|
|
|
|
const (
|
|
globalMCConfigVersion = "9"
|
|
|
|
globalMCConfigFile = "config.json"
|
|
globalMCCertsDir = "certs"
|
|
globalMCCAsDir = "CAs"
|
|
|
|
// session config and shared urls related constants
|
|
globalSessionDir = "session"
|
|
globalSharedURLsDataDir = "share"
|
|
globalSessionConfigVersion = "8"
|
|
|
|
// Profile directory for dumping profiler outputs.
|
|
globalProfileDir = "profile"
|
|
|
|
// Global error exit status.
|
|
globalErrorExitStatus = 1
|
|
)
|
|
|
|
var (
|
|
globalQuiet = false // Quiet flag set via command line
|
|
globalJSON = false // Json flag set via command line
|
|
globalDebug = false // Debug flag set via command line
|
|
globalNoColor = false // No Color flag set via command line
|
|
globalInsecure = false // Insecure flag set via command line
|
|
|
|
// WHEN YOU ADD NEXT GLOBAL FLAG, MAKE SURE TO ALSO UPDATE SESSION CODE AND CODE BELOW.
|
|
)
|
|
|
|
var (
|
|
// Terminal width
|
|
globalTermWidth int
|
|
|
|
// CA root certificates, a nil value means system certs pool will be used
|
|
globalRootCAs *x509.CertPool
|
|
)
|
|
|
|
// Set global states. NOTE: It is deliberately kept monolithic to ensure we dont miss out any flags.
|
|
func setGlobals(quiet, debug, json, noColor, insecure bool) {
|
|
globalQuiet = globalQuiet || quiet
|
|
globalDebug = globalDebug || debug
|
|
globalJSON = globalJSON || json
|
|
globalNoColor = globalNoColor || noColor
|
|
globalInsecure = globalInsecure || insecure
|
|
|
|
// Enable debug messages if requested.
|
|
if globalDebug {
|
|
console.DebugPrint = true
|
|
}
|
|
|
|
// Disable colorified messages if requested.
|
|
if globalNoColor || globalQuiet {
|
|
console.SetColorOff()
|
|
}
|
|
}
|
|
|
|
// Set global states. NOTE: It is deliberately kept monolithic to ensure we dont miss out any flags.
|
|
func setGlobalsFromContext(ctx *cli.Context) error {
|
|
quiet := ctx.IsSet("quiet")
|
|
debug := ctx.IsSet("debug")
|
|
json := ctx.IsSet("json")
|
|
noColor := ctx.IsSet("no-color")
|
|
insecure := ctx.IsSet("insecure")
|
|
setGlobals(quiet, debug, json, noColor, insecure)
|
|
return nil
|
|
}
|