106 lines
2.2 KiB
Go
106 lines
2.2 KiB
Go
|
// Copyright © 2022 Roberto Hidalgo <chinampa@un.rob.mx>
|
||
|
//
|
||
|
// 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 runtime
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"strconv"
|
||
|
|
||
|
_c "git.rob.mx/nidito/chinampa/internal/constants"
|
||
|
)
|
||
|
|
||
|
var falseIshValues = []string{
|
||
|
"",
|
||
|
"0",
|
||
|
"no",
|
||
|
"false",
|
||
|
"disable",
|
||
|
"disabled",
|
||
|
"off",
|
||
|
"never",
|
||
|
}
|
||
|
|
||
|
var trueIshValues = []string{
|
||
|
"1",
|
||
|
"yes",
|
||
|
"true",
|
||
|
"enable",
|
||
|
"enabled",
|
||
|
"on",
|
||
|
"always",
|
||
|
}
|
||
|
|
||
|
func isFalseIsh(val string) bool {
|
||
|
for _, negative := range falseIshValues {
|
||
|
if val == negative {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func isTrueIsh(val string) bool {
|
||
|
for _, positive := range trueIshValues {
|
||
|
if val == positive {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func DebugEnabled() bool {
|
||
|
return isTrueIsh(os.Getenv(_c.EnvVarDebug))
|
||
|
}
|
||
|
|
||
|
func ValidationEnabled() bool {
|
||
|
return isFalseIsh(os.Getenv(_c.EnvVarValidationDisabled))
|
||
|
}
|
||
|
|
||
|
func VerboseEnabled() bool {
|
||
|
return isTrueIsh(os.Getenv(_c.EnvVarMilpaVerbose))
|
||
|
}
|
||
|
|
||
|
func ColorEnabled() bool {
|
||
|
return isFalseIsh(os.Getenv(_c.EnvVarMilpaUnstyled)) && !UnstyledHelpEnabled()
|
||
|
}
|
||
|
|
||
|
func UnstyledHelpEnabled() bool {
|
||
|
return isTrueIsh(os.Getenv(_c.EnvVarHelpUnstyled))
|
||
|
}
|
||
|
|
||
|
// EnvironmentMap returns the resolved environment map.
|
||
|
func EnvironmentMap() map[string]string {
|
||
|
env := map[string]string{}
|
||
|
trueString := strconv.FormatBool(true)
|
||
|
|
||
|
if !ColorEnabled() {
|
||
|
env[_c.EnvVarMilpaUnstyled] = trueString
|
||
|
} else if isTrueIsh(os.Getenv(_c.EnvVarMilpaForceColor)) {
|
||
|
env[_c.EnvVarMilpaForceColor] = "always"
|
||
|
}
|
||
|
|
||
|
if DebugEnabled() {
|
||
|
env[_c.EnvVarDebug] = trueString
|
||
|
}
|
||
|
|
||
|
if VerboseEnabled() {
|
||
|
env[_c.EnvVarMilpaVerbose] = trueString
|
||
|
} else if isTrueIsh(os.Getenv(_c.EnvVarMilpaSilent)) {
|
||
|
env[_c.EnvVarMilpaSilent] = trueString
|
||
|
}
|
||
|
|
||
|
return env
|
||
|
}
|