1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 18:45:46 +01:00
Files
incus/shared/util/boolean.go
Lucas Bremgartner 7ffff2d65a shared/util: Add IsTruthy
Signed-off-by: Lucas Bremgartner <lucas.bremgartner@futurfusion.io>
2025-03-06 17:06:09 +01:00

39 lines
1.1 KiB
Go

package util
import (
"slices"
"strings"
)
// IsTrue returns true if value is "true", "1", "yes" or "on" (case insensitive).
func IsTrue(value string) bool {
return slices.Contains([]string{"true", "1", "yes", "on"}, strings.ToLower(value))
}
// IsNeitherFalseNorEmpty is true, if value is neither false nor empty,
// which is the contrary to IsFalseOrEmpty.
func IsNeitherFalseNorEmpty(value string) bool {
isFalseOrEmtpy := IsFalseOrEmpty(value)
return !isFalseOrEmtpy
}
// IsTrueOrEmpty returns true if value is empty or if IsTrue() returns true.
func IsTrueOrEmpty(value string) bool {
return value == "" || IsTrue(value)
}
// IsFalse returns true if value is "false", "0", "no" or "off" (case insensitive).
func IsFalse(value string) bool {
return slices.Contains([]string{"false", "0", "no", "off"}, strings.ToLower(value))
}
// IsFalseOrEmpty returns true if value is empty or if IsFalse() returns true.
func IsFalseOrEmpty(value string) bool {
return value == "" || IsFalse(value)
}
// IsNoneOrEmpty returns true if value is empty or a "none" value.
func IsNoneOrEmpty(value string) bool {
return value == "" || value == "none"
}