Files
opentf/internal/command/views/apply.go
Andrei Ciobanu 8689efa1f1 Add backend view and migrate outputs (#3949)
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2026-03-30 15:35:09 +03:00

272 lines
6.7 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 views
import (
"fmt"
"github.com/opentofu/opentofu/internal/command/arguments"
"github.com/opentofu/opentofu/internal/command/format"
"github.com/opentofu/opentofu/internal/command/views/json"
"github.com/opentofu/opentofu/internal/states"
"github.com/opentofu/opentofu/internal/tfdiags"
"github.com/opentofu/opentofu/internal/tofu"
)
// The Apply view is used for the apply command.
type Apply interface {
ResourceCount(stateOutPath string)
Outputs(outputValues map[string]*states.OutputValue)
Operation() Operation
Hooks() []tofu.Hook
Diagnostics(diags tfdiags.Diagnostics)
HelpPrompt()
// Backend returns the non-command view that contains methods to provide
// progress output for the backend operations.
Backend() Backend
}
// NewApply returns an initialized Apply implementation for the given ViewType.
func NewApply(args arguments.ViewOptions, destroy bool, view *View) Apply {
var apply Apply
switch args.ViewType {
case arguments.ViewJSON:
apply = &ApplyJSON{
view: NewJSONView(view, nil),
destroy: destroy,
countHook: &countHook{},
}
case arguments.ViewHuman:
apply = &ApplyHuman{
view: view,
destroy: destroy,
inAutomation: view.RunningInAutomation(),
countHook: &countHook{},
}
default:
panic(fmt.Sprintf("unknown view type %v", args.ViewType))
}
if args.JSONInto != nil {
apply = ApplyMulti{apply, &ApplyJSON{
view: NewJSONView(view, args.JSONInto),
destroy: destroy,
countHook: &countHook{},
}}
}
return apply
}
type ApplyMulti []Apply
var _ Apply = (ApplyMulti)(nil)
func (m ApplyMulti) ResourceCount(stateOutPath string) {
for _, a := range m {
a.ResourceCount(stateOutPath)
}
}
func (m ApplyMulti) Outputs(outputValues map[string]*states.OutputValue) {
for _, a := range m {
a.Outputs(outputValues)
}
}
func (m ApplyMulti) Operation() Operation {
var operation OperationMulti
for _, a := range m {
operation = append(operation, a.Operation())
}
return operation
}
func (m ApplyMulti) Hooks() []tofu.Hook {
var hooks []tofu.Hook
for _, a := range m {
hooks = append(hooks, a.Hooks()...)
}
return hooks
}
func (m ApplyMulti) Diagnostics(diags tfdiags.Diagnostics) {
for _, a := range m {
a.Diagnostics(diags)
}
}
func (m ApplyMulti) HelpPrompt() {
for _, a := range m {
a.HelpPrompt()
}
}
func (m ApplyMulti) Backend() Backend {
ret := make([]Backend, len(m))
for i, v := range m {
ret[i] = v.Backend()
}
return BackendMulti(ret)
}
// The ApplyHuman implementation renders human-readable text logs, suitable for
// a scrolling terminal.
type ApplyHuman struct {
view *View
destroy bool
inAutomation bool
countHook *countHook
}
var _ Apply = (*ApplyHuman)(nil)
func (v *ApplyHuman) ResourceCount(stateOutPath string) {
if v.destroy {
v.view.streams.Printf(
v.view.colorize.Color("[reset][bold][green]\nDestroy complete! Resources: %d destroyed.\n"),
v.countHook.Removed,
)
} else if v.countHook.Imported > 0 {
if v.countHook.Forgotten > 0 {
v.view.streams.Printf(
v.view.colorize.Color("[reset][bold][green]\nApply complete! Resources: %d imported, %d added, %d changed, %d destroyed, %d forgotten.\n"),
v.countHook.Imported,
v.countHook.Added,
v.countHook.Changed,
v.countHook.Removed,
v.countHook.Forgotten,
)
} else {
v.view.streams.Printf(
v.view.colorize.Color("[reset][bold][green]\nApply complete! Resources: %d imported, %d added, %d changed, %d destroyed.\n"),
v.countHook.Imported,
v.countHook.Added,
v.countHook.Changed,
v.countHook.Removed,
)
}
} else if v.countHook.Forgotten > 0 {
v.view.streams.Printf(
v.view.colorize.Color("[reset][bold][green]\nApply complete! Resources: %d added, %d changed, %d destroyed, %d forgotten.\n"),
v.countHook.Added,
v.countHook.Changed,
v.countHook.Removed,
v.countHook.Forgotten,
)
} else {
v.view.streams.Printf(
v.view.colorize.Color("[reset][bold][green]\nApply complete! Resources: %d added, %d changed, %d destroyed.\n"),
v.countHook.Added,
v.countHook.Changed,
v.countHook.Removed,
)
}
if (v.countHook.Added > 0 || v.countHook.Changed > 0) && stateOutPath != "" {
v.view.streams.Printf("\n%s\n\n", format.WordWrap(stateOutPathPostApply, v.view.outputColumns()))
v.view.streams.Printf("State path: %s\n", stateOutPath)
}
}
func (v *ApplyHuman) Outputs(outputValues map[string]*states.OutputValue) {
if len(outputValues) > 0 {
v.view.streams.Print(v.view.colorize.Color("[reset][bold][green]\nOutputs:\n\n"))
NewOutput(arguments.ViewOptions{ViewType: arguments.ViewHuman}, v.view).Output("", outputValues)
}
}
func (v *ApplyHuman) Operation() Operation {
return NewOperation(arguments.ViewHuman, v.inAutomation, v.view)
}
func (v *ApplyHuman) Hooks() []tofu.Hook {
return []tofu.Hook{v.countHook, NewUIOptionalHook(v.view)}
}
func (v *ApplyHuman) Diagnostics(diags tfdiags.Diagnostics) {
v.view.Diagnostics(diags)
}
func (v *ApplyHuman) HelpPrompt() {
command := "apply"
if v.destroy {
command = "destroy"
}
v.view.HelpPrompt(command)
}
func (v *ApplyHuman) Backend() Backend {
return &BackendHuman{
view: v.view,
}
}
const stateOutPathPostApply = "The state of your infrastructure has been saved to the path below. This state is required to modify and destroy your infrastructure, so keep it safe. To inspect the complete state use the `tofu show` command."
// The ApplyJSON implementation renders streaming JSON logs, suitable for
// integrating with other software.
type ApplyJSON struct {
view *JSONView
destroy bool
countHook *countHook
}
var _ Apply = (*ApplyJSON)(nil)
func (v *ApplyJSON) ResourceCount(stateOutPath string) {
operation := json.OperationApplied
if v.destroy {
operation = json.OperationDestroyed
}
v.view.ChangeSummary(&json.ChangeSummary{
Add: v.countHook.Added,
Change: v.countHook.Changed,
Remove: v.countHook.Removed,
Import: v.countHook.Imported,
Forget: v.countHook.Forgotten,
Operation: operation,
})
}
func (v *ApplyJSON) Outputs(outputValues map[string]*states.OutputValue) {
outputs, diags := json.OutputsFromMap(outputValues)
if diags.HasErrors() {
v.Diagnostics(diags)
} else {
v.view.Outputs(outputs)
}
}
func (v *ApplyJSON) Operation() Operation {
return &OperationJSON{view: v.view}
}
func (v *ApplyJSON) Hooks() []tofu.Hook {
return []tofu.Hook{
v.countHook,
newJSONHook(v.view),
}
}
func (v *ApplyJSON) Diagnostics(diags tfdiags.Diagnostics) {
v.view.Diagnostics(diags)
}
func (v *ApplyJSON) HelpPrompt() {
}
func (v *ApplyJSON) Backend() Backend {
return &BackendJSON{
view: v.view,
}
}