mirror of
https://github.com/pgsty/minio.git
synced 2026-08-07 08:11:13 +03:00
ee4a6a823d
- adding oauth support to MinIO browser (#8400) by @kanagaraj - supports multi-line get/set/del for all config fields - add support for comments, allow toggle - add extensive validation of config before saving - support MinIO browser to support proper claims, using STS tokens - env support for all config parameters, legacy envs are also supported with all documentation now pointing to latest ENVs - preserve accessKey/secretKey from FS mode setups - add history support implements three APIs - ClearHistory - RestoreHistory - ListHistory - add help command support for each config parameters - all the bug fixes after migration to KV, and other bug fixes encountered during testing.
104 lines
2.5 KiB
Go
104 lines
2.5 KiB
Go
package color
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/mattn/go-isatty"
|
|
)
|
|
|
|
// global colors.
|
|
var (
|
|
// Check if we stderr, stdout are dumb terminals, we do not apply
|
|
// ansi coloring on dumb terminals.
|
|
IsTerminal = func() bool {
|
|
return isatty.IsTerminal(os.Stdout.Fd()) && isatty.IsTerminal(os.Stderr.Fd())
|
|
}
|
|
|
|
Bold = func() func(a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.Bold).SprintFunc()
|
|
}
|
|
return fmt.Sprint
|
|
}()
|
|
Red = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgRed).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
Blue = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgBlue).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
Yellow = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgYellow).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
Green = func() func(a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgGreen).SprintFunc()
|
|
}
|
|
return fmt.Sprint
|
|
}()
|
|
GreenBold = func() func(a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgGreen, color.Bold).SprintFunc()
|
|
}
|
|
return fmt.Sprint
|
|
}()
|
|
CyanBold = func() func(a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgCyan, color.Bold).SprintFunc()
|
|
}
|
|
return fmt.Sprint
|
|
}()
|
|
YellowBold = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgYellow, color.Bold).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
BlueBold = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgBlue, color.Bold).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
BgYellow = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.BgYellow).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
Black = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgBlack).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
FgRed = func() func(a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgRed).SprintFunc()
|
|
}
|
|
return fmt.Sprint
|
|
}()
|
|
BgRed = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.BgRed).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
FgWhite = func() func(format string, a ...interface{}) string {
|
|
if IsTerminal() {
|
|
return color.New(color.FgWhite).SprintfFunc()
|
|
}
|
|
return fmt.Sprintf
|
|
}()
|
|
)
|