mirror of
https://github.com/opentofu/opentofu.git
synced 2026-02-18 18:17:54 -05:00
Some checks are pending
build / Build for freebsd_386 (push) Waiting to run
build / Build for linux_386 (push) Waiting to run
build / Build for openbsd_386 (push) Waiting to run
build / Build for windows_386 (push) Waiting to run
build / Build for freebsd_amd64 (push) Waiting to run
build / Build for linux_amd64 (push) Waiting to run
build / Build for openbsd_amd64 (push) Waiting to run
build / Build for solaris_amd64 (push) Waiting to run
build / Build for windows_amd64 (push) Waiting to run
build / Build for freebsd_arm (push) Waiting to run
build / Build for linux_arm (push) Waiting to run
build / Build for linux_arm64 (push) Waiting to run
build / Build for darwin_amd64 (push) Waiting to run
build / Build for darwin_arm64 (push) Waiting to run
build / End-to-end Tests for linux_386 (push) Waiting to run
build / End-to-end Tests for windows_386 (push) Waiting to run
build / End-to-end Tests for darwin_amd64 (push) Waiting to run
build / End-to-end Tests for linux_amd64 (push) Waiting to run
build / End-to-end Tests for windows_amd64 (push) Waiting to run
Quick Checks / List files changed for pull request (push) Waiting to run
Quick Checks / Unit tests for linux_386 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_amd64 (push) Blocked by required conditions
Quick Checks / Unit tests for windows_amd64 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_arm (push) Blocked by required conditions
Quick Checks / Unit tests for darwin_arm64 (push) Blocked by required conditions
Quick Checks / Unit tests for linux_arm64 (push) Blocked by required conditions
Quick Checks / Race Tests (push) Blocked by required conditions
Quick Checks / End-to-end Tests (push) Blocked by required conditions
Quick Checks / Code Consistency Checks (push) Blocked by required conditions
Quick Checks / License Checks (push) Waiting to run
Website checks / List files changed for pull request (push) Waiting to run
Website checks / Build (push) Blocked by required conditions
Website checks / Test Installation Instructions (push) Blocked by required conditions
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
83 lines
2 KiB
Go
83 lines
2 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/mitchellh/cli"
|
|
"github.com/mitchellh/colorstring"
|
|
)
|
|
|
|
// ColorizeUi is a Ui implementation that colors its output according
|
|
// to the given color schemes for the given type of output.
|
|
type ColorizeUi struct {
|
|
Colorize *colorstring.Colorize
|
|
OutputColor string
|
|
InfoColor string
|
|
ErrorColor string
|
|
WarnColor string
|
|
Ui cli.Ui
|
|
}
|
|
|
|
func (u *ColorizeUi) Ask(query string) (string, error) {
|
|
return u.Ui.Ask(u.colorize(query, u.OutputColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) AskSecret(query string) (string, error) {
|
|
return u.Ui.AskSecret(u.colorize(query, u.OutputColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) Output(message string) {
|
|
u.Ui.Output(u.colorize(message, u.OutputColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) Info(message string) {
|
|
u.Ui.Info(u.colorize(message, u.InfoColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) Error(message string) {
|
|
u.Ui.Error(u.colorize(message, u.ErrorColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) Warn(message string) {
|
|
u.Ui.Warn(u.colorize(message, u.WarnColor))
|
|
}
|
|
|
|
func (u *ColorizeUi) colorize(message string, color string) string {
|
|
if color == "" {
|
|
return message
|
|
}
|
|
|
|
return u.Colorize.Color(fmt.Sprintf("%s%s[reset]", color, message))
|
|
}
|
|
|
|
// ui wraps the primary output [cli.Ui], and redirects Warn calls to Output
|
|
// calls. This ensures that warnings are sent to stdout, and are properly
|
|
// serialized within the stdout stream.
|
|
type ui struct {
|
|
cli.Ui
|
|
}
|
|
|
|
func (u *ui) Warn(msg string) {
|
|
u.Ui.Output(msg)
|
|
}
|
|
|
|
// NewBasicUI returns a preconfigured [cli.Ui] that is meant to be used
|
|
// as the primary Ui for OpenTofu.
|
|
// TODO meta-refactor: this will have to be removed once everything is moved to views.
|
|
func NewBasicUI() cli.Ui {
|
|
return NewWrappedUi(&cli.BasicUi{
|
|
Writer: os.Stdout,
|
|
ErrorWriter: os.Stderr,
|
|
Reader: os.Stdin,
|
|
})
|
|
}
|
|
|
|
func NewWrappedUi(u cli.Ui) cli.Ui {
|
|
return &ui{u}
|
|
}
|