0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-06-02 18:39:41 +02:00
wp-opentofu/plugin/impl.go

135 lines
3.3 KiB
Go
Raw Permalink Normal View History

2024-02-05 20:44:47 +01:00
package plugin
import (
"context"
"encoding/json"
2024-02-05 20:44:47 +01:00
"errors"
"fmt"
"os"
"github.com/thegeeklab/wp-opentofu/tofu"
plugin_exec "github.com/thegeeklab/wp-plugin-go/v3/exec"
2024-02-05 20:44:47 +01:00
)
var (
2024-02-05 21:50:41 +01: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")
ErrHTTPError = errors.New("http error")
2024-02-05 20:44:47 +01:00
)
const (
maxDecompressionSize = 100 * 1024 * 1024
2024-02-05 20:44:47 +01:00
defaultDirPerm = 0o755
)
//nolint:revive
func (p *Plugin) run(ctx context.Context) error {
if err := p.FlagsFromContext(); err != nil {
return fmt.Errorf("validation failed: %w", err)
}
2024-02-05 20:44:47 +01:00
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
}
func (p *Plugin) FlagsFromContext() error {
if p.Context.String("init-option") != "" {
initOptions := tofu.InitOptions{}
if err := json.Unmarshal([]byte(p.Context.String("init-option")), &initOptions); err != nil {
return fmt.Errorf("cannot unmarshal init_option: %w", err)
}
p.Settings.Tofu.InitOptions = initOptions
}
if p.Context.String("fmt-option") != "" {
fmtOptions := tofu.FmtOptions{}
if err := json.Unmarshal([]byte(p.Context.String("fmt-option")), &fmtOptions); err != nil {
return fmt.Errorf("cannot unmarshal fmt_option: %w", err)
}
p.Settings.Tofu.FmtOptions = fmtOptions
}
return nil
}
2024-02-05 20:44:47 +01:00
// 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.Tofu.OutFile = "plan.tfout"
2024-02-05 20:44:47 +01:00
if p.Settings.DataDir == ".terraform" {
p.Settings.Tofu.OutFile = fmt.Sprintf("%s.plan.tfout", p.Settings.DataDir)
2024-02-05 20:44:47 +01:00
}
return nil
}
// Execute provides the implementation of the plugin.
func (p *Plugin) Execute() error {
batchCmd := make([]*plugin_exec.Cmd, 0)
batchCmd = append(batchCmd, p.Settings.Tofu.Version())
2024-02-05 21:50:41 +01:00
if p.Settings.TofuVersion != "" {
err := installPackage(p.Plugin.Network.Context, p.Plugin.Network.Client, p.Settings.TofuVersion, maxDecompressionSize)
2024-02-05 20:44:47 +01:00
if err != nil {
return err
}
}
batchCmd = append(batchCmd, p.Settings.Tofu.Init())
batchCmd = append(batchCmd, p.Settings.Tofu.GetModules())
2024-02-05 20:44:47 +01:00
for _, action := range p.Settings.Action.Value() {
switch action {
case "fmt":
batchCmd = append(batchCmd, p.Settings.Tofu.Fmt())
2024-02-05 20:44:47 +01:00
case "validate":
batchCmd = append(batchCmd, p.Settings.Tofu.Validate())
2024-02-05 20:44:47 +01:00
case "plan":
batchCmd = append(batchCmd, p.Settings.Tofu.Plan(false))
2024-02-05 20:44:47 +01:00
case "plan-destroy":
batchCmd = append(batchCmd, p.Settings.Tofu.Plan(true))
2024-02-05 20:44:47 +01:00
case "apply":
batchCmd = append(batchCmd, p.Settings.Tofu.Apply())
2024-02-05 20:44:47 +01:00
case "destroy":
batchCmd = append(batchCmd, p.Settings.Tofu.Destroy())
2024-02-05 20:44:47 +01:00
default:
return fmt.Errorf("%w: %s", ErrActionUnknown, action)
}
}
if err := os.RemoveAll(p.Settings.DataDir); err != nil {
2024-02-05 20:44:47 +01:00
return err
}
2024-05-12 13:25:37 +02:00
for _, cmd := range batchCmd {
if cmd == nil {
continue
2024-02-05 20:44:47 +01:00
}
if p.Settings.RootDir != "" {
2024-05-12 13:25:37 +02:00
cmd.Dir = p.Settings.RootDir
}
2024-02-05 20:44:47 +01:00
2024-05-12 13:25:37 +02:00
if err := cmd.Run(); err != nil {
2024-02-05 20:44:47 +01:00
return err
}
}
return os.RemoveAll(p.Settings.DataDir)
2024-02-05 20:44:47 +01:00
}