2024-02-05 19:44:47 +00:00
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
"github.com/thegeeklab/wp-plugin-go/trace"
|
2024-02-05 19:44:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2024-02-05 20:50:41 +00:00
|
|
|
ErrTaintedPath = errors.New("filepath is tainted")
|
|
|
|
ErrMaxSizeSizeLimit = errors.New("max size limit of decoded data exceeded")
|
|
|
|
ErrActionUnknown = errors.New("action not found")
|
|
|
|
ErrInvalidTofuVersion = errors.New("invalid version string")
|
2024-02-05 19:44:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
maxDecompressionSize = 1024
|
|
|
|
defaultDirPerm = 0o755
|
|
|
|
)
|
|
|
|
|
|
|
|
//nolint:revive
|
|
|
|
func (p *Plugin) run(ctx context.Context) error {
|
|
|
|
if err := p.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("validation failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := p.Execute(); err != nil {
|
|
|
|
return fmt.Errorf("execution failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate handles the settings validation of the plugin.
|
|
|
|
func (p *Plugin) Validate() error {
|
|
|
|
p.Settings.DataDir = ".terraform"
|
|
|
|
if value, ok := os.LookupEnv("TF_DATA_DIR"); ok {
|
|
|
|
p.Settings.DataDir = value
|
|
|
|
}
|
|
|
|
|
|
|
|
p.Settings.OutFile = "plan.tfout"
|
|
|
|
if p.Settings.DataDir == ".terraform" {
|
|
|
|
p.Settings.OutFile = fmt.Sprintf("%s.plan.tfout", p.Settings.DataDir)
|
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute provides the implementation of the plugin.
|
|
|
|
func (p *Plugin) Execute() error {
|
2024-02-05 20:50:41 +00:00
|
|
|
if p.Settings.TofuVersion != "" {
|
|
|
|
err := installPackage(p.Plugin.Network.Context, p.Plugin.Network.Client, p.Settings.TofuVersion, maxDecompressionSize)
|
2024-02-05 19:44:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
commands := []*pluginCommand{
|
2024-02-05 19:44:47 +00:00
|
|
|
p.versionCommand(),
|
|
|
|
}
|
|
|
|
|
|
|
|
commands = append(commands, p.initCommand())
|
|
|
|
commands = append(commands, p.getModulesCommand())
|
|
|
|
|
|
|
|
for _, action := range p.Settings.Action.Value() {
|
|
|
|
switch action {
|
|
|
|
case "fmt":
|
|
|
|
commands = append(commands, p.fmtCommand())
|
|
|
|
case "validate":
|
|
|
|
commands = append(commands, p.validateCommand())
|
|
|
|
case "plan":
|
|
|
|
commands = append(commands, p.planCommand(false))
|
|
|
|
case "plan-destroy":
|
|
|
|
commands = append(commands, p.planCommand(true))
|
|
|
|
case "apply":
|
|
|
|
commands = append(commands, p.applyCommand())
|
|
|
|
case "destroy":
|
|
|
|
commands = append(commands, p.destroyCommand())
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("%w: %s", ErrActionUnknown, action)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
if err := deleteDir(p.Settings.DataDir); err != nil {
|
2024-02-05 19:44:47 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
for _, command := range commands {
|
|
|
|
command.cmd.Stdout = os.Stdout
|
|
|
|
command.cmd.Stderr = os.Stderr
|
|
|
|
command.cmd.Env = os.Environ()
|
2024-02-05 19:44:47 +00:00
|
|
|
|
|
|
|
if p.Settings.RootDir != "" {
|
2024-02-07 12:17:49 +00:00
|
|
|
command.cmd.Dir = p.Settings.RootDir
|
2024-02-05 19:44:47 +00:00
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
trace.Cmd(command.cmd)
|
2024-02-05 19:44:47 +00:00
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
if err := command.cmd.Run(); err != nil {
|
2024-02-05 19:44:47 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-07 12:17:49 +00:00
|
|
|
return deleteDir(p.Settings.DataDir)
|
2024-02-05 19:44:47 +00:00
|
|
|
}
|