mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 17:48:35 +00:00
* feat: atlantis import * feat: atlantis import * regenerate mock comment builder * remove duplicate err check * instrumented import command runner/builder * atlantis import subcommand accept args before hyphen * fix link checker * docs: review feedback * fix atlantis import options order * Update runatlantis.io/docs/using-atlantis.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/using-atlantis.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/using-atlantis.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/using-atlantis.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/using-atlantis.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update server/events/comment_parser.go Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update server/events/comment_parser.go Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/server-side-repo-config.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update runatlantis.io/docs/command-requirements.md Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update server/events/command_requirement_handler.go Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * Update server/events/command_requirement_handler_test.go Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> * fix test import usage * fix e2e expected txt * fix doc link * docs: workflow import stage/step * docs fixup Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com>
348 lines
9.0 KiB
Go
348 lines
9.0 KiB
Go
package raw
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
validation "github.com/go-ozzo/ozzo-validation"
|
|
"github.com/runatlantis/atlantis/server/core/config/valid"
|
|
)
|
|
|
|
const (
|
|
ExtraArgsKey = "extra_args"
|
|
NameArgKey = "name"
|
|
CommandArgKey = "command"
|
|
ValueArgKey = "value"
|
|
RunStepName = "run"
|
|
PlanStepName = "plan"
|
|
ShowStepName = "show"
|
|
PolicyCheckStepName = "policy_check"
|
|
ApplyStepName = "apply"
|
|
InitStepName = "init"
|
|
EnvStepName = "env"
|
|
MultiEnvStepName = "multienv"
|
|
ImportStepName = "import"
|
|
)
|
|
|
|
// Step represents a single action/command to perform. In YAML, it can be set as
|
|
// 1. A single string for a built-in command:
|
|
// - init
|
|
// - plan
|
|
// - policy_check
|
|
//
|
|
// 2. A map for an env step with name and command or value
|
|
// - env:
|
|
// name: test
|
|
// command: echo 312
|
|
// value: value
|
|
//
|
|
// 3. A map for a built-in command and extra_args:
|
|
// - plan:
|
|
// extra_args: [-var-file=staging.tfvars]
|
|
//
|
|
// 4. A map for a custom run command:
|
|
// - run: my custom command
|
|
//
|
|
// Here we parse step in the most generic fashion possible. See fields for more
|
|
// details.
|
|
type Step struct {
|
|
// Key will be set in case #1 and #3 above to the key. In case #2, there
|
|
// could be multiple keys (since the element is a map) so we don't set Key.
|
|
Key *string
|
|
// Env will be set in case #2 above.
|
|
Env map[string]map[string]string
|
|
// Map will be set in case #3 above.
|
|
Map map[string]map[string][]string
|
|
// StringVal will be set in case #4 above.
|
|
StringVal map[string]string
|
|
}
|
|
|
|
func (s *Step) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
return s.unmarshalGeneric(unmarshal)
|
|
}
|
|
|
|
func (s Step) MarshalYAML() (interface{}, error) {
|
|
return s.marshalGeneric()
|
|
}
|
|
|
|
func (s *Step) UnmarshalJSON(data []byte) error {
|
|
return s.unmarshalGeneric(func(i interface{}) error {
|
|
return json.Unmarshal(data, i)
|
|
})
|
|
}
|
|
|
|
func (s *Step) MarshalJSON() ([]byte, error) {
|
|
out, err := s.marshalGeneric()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return json.Marshal(out)
|
|
}
|
|
|
|
func (s Step) validStepName(stepName string) bool {
|
|
return stepName == InitStepName ||
|
|
stepName == PlanStepName ||
|
|
stepName == ApplyStepName ||
|
|
stepName == EnvStepName ||
|
|
stepName == MultiEnvStepName ||
|
|
stepName == ShowStepName ||
|
|
stepName == PolicyCheckStepName ||
|
|
stepName == ImportStepName
|
|
}
|
|
|
|
func (s Step) Validate() error {
|
|
validStep := func(value interface{}) error {
|
|
str := *value.(*string)
|
|
if !s.validStepName(str) {
|
|
return fmt.Errorf("%q is not a valid step type, maybe you omitted the 'run' key", str)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
extraArgs := func(value interface{}) error {
|
|
elem := value.(map[string]map[string][]string)
|
|
var keys []string
|
|
for k := range elem {
|
|
keys = append(keys, k)
|
|
}
|
|
// Sort so tests can be deterministic.
|
|
sort.Strings(keys)
|
|
|
|
if len(keys) > 1 {
|
|
return fmt.Errorf("step element can only contain a single key, found %d: %s",
|
|
len(keys), strings.Join(keys, ","))
|
|
}
|
|
for stepName, args := range elem {
|
|
if !s.validStepName(stepName) {
|
|
return fmt.Errorf("%q is not a valid step type", stepName)
|
|
}
|
|
var argKeys []string
|
|
for k := range args {
|
|
argKeys = append(argKeys, k)
|
|
}
|
|
// Sort so tests can be deterministic.
|
|
sort.Strings(argKeys)
|
|
|
|
// args should contain a single 'extra_args' key.
|
|
if len(argKeys) > 1 {
|
|
return fmt.Errorf("built-in steps only support a single %s key, found %d: %s",
|
|
ExtraArgsKey, len(argKeys), strings.Join(argKeys, ","))
|
|
}
|
|
for k := range args {
|
|
if k != ExtraArgsKey {
|
|
return fmt.Errorf("built-in steps only support a single %s key, found %q in step %s", ExtraArgsKey, k, stepName)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
envStep := func(value interface{}) error {
|
|
elem := value.(map[string]map[string]string)
|
|
var keys []string
|
|
for k := range elem {
|
|
keys = append(keys, k)
|
|
}
|
|
// Sort so tests can be deterministic.
|
|
sort.Strings(keys)
|
|
|
|
if len(keys) > 1 {
|
|
return fmt.Errorf("step element can only contain a single key, found %d: %s",
|
|
len(keys), strings.Join(keys, ","))
|
|
}
|
|
for stepName, args := range elem {
|
|
if stepName != EnvStepName {
|
|
return fmt.Errorf("%q is not a valid step type", stepName)
|
|
}
|
|
var argKeys []string
|
|
for k := range args {
|
|
argKeys = append(argKeys, k)
|
|
}
|
|
// Sort so tests can be deterministic.
|
|
sort.Strings(argKeys)
|
|
|
|
foundNameKey := false
|
|
for _, k := range argKeys {
|
|
if k != NameArgKey && k != CommandArgKey && k != ValueArgKey {
|
|
return fmt.Errorf("env steps only support keys %q, %q and %q, found key %q", NameArgKey, ValueArgKey, CommandArgKey, k)
|
|
}
|
|
if k == NameArgKey {
|
|
foundNameKey = true
|
|
}
|
|
}
|
|
if !foundNameKey {
|
|
return fmt.Errorf("env steps must have a %q key set", NameArgKey)
|
|
}
|
|
// If we have 3 keys at this point then they've set both command and value.
|
|
if len(argKeys) != 2 {
|
|
return fmt.Errorf("env steps only support one of the %q or %q keys, found both",
|
|
ValueArgKey, CommandArgKey)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
runStep := func(value interface{}) error {
|
|
elem := value.(map[string]string)
|
|
var keys []string
|
|
for k := range elem {
|
|
keys = append(keys, k)
|
|
}
|
|
// Sort so tests can be deterministic.
|
|
sort.Strings(keys)
|
|
|
|
if len(keys) > 1 {
|
|
return fmt.Errorf("step element can only contain a single key, found %d: %s",
|
|
len(keys), strings.Join(keys, ","))
|
|
}
|
|
for stepName := range elem {
|
|
if stepName != RunStepName && stepName != MultiEnvStepName {
|
|
return fmt.Errorf("%q is not a valid step type", stepName)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
if s.Key != nil {
|
|
return validation.Validate(s.Key, validation.By(validStep))
|
|
}
|
|
if len(s.Map) > 0 {
|
|
return validation.Validate(s.Map, validation.By(extraArgs))
|
|
}
|
|
if len(s.Env) > 0 {
|
|
return validation.Validate(s.Env, validation.By(envStep))
|
|
}
|
|
if len(s.StringVal) > 0 {
|
|
return validation.Validate(s.StringVal, validation.By(runStep))
|
|
}
|
|
return errors.New("step element is empty")
|
|
}
|
|
|
|
func (s Step) ToValid() valid.Step {
|
|
// This will trigger in case #1 (see Step docs).
|
|
if s.Key != nil {
|
|
return valid.Step{
|
|
StepName: *s.Key,
|
|
}
|
|
}
|
|
|
|
// This will trigger in case #2 (see Step docs).
|
|
if len(s.Env) > 0 {
|
|
// After validation we assume there's only one key and it's a valid
|
|
// step name so we just use the first one.
|
|
for stepName, stepArgs := range s.Env {
|
|
return valid.Step{
|
|
StepName: stepName,
|
|
EnvVarName: stepArgs[NameArgKey],
|
|
RunCommand: stepArgs[CommandArgKey],
|
|
EnvVarValue: stepArgs[ValueArgKey],
|
|
}
|
|
}
|
|
}
|
|
|
|
// This will trigger in case #3 (see Step docs).
|
|
if len(s.Map) > 0 {
|
|
// After validation we assume there's only one key and it's a valid
|
|
// step name so we just use the first one.
|
|
for stepName, stepArgs := range s.Map {
|
|
return valid.Step{
|
|
StepName: stepName,
|
|
ExtraArgs: stepArgs[ExtraArgsKey],
|
|
}
|
|
}
|
|
}
|
|
|
|
// This will trigger in case #4 (see Step docs).
|
|
if len(s.StringVal) > 0 {
|
|
// After validation we assume there's only one key and it's a valid
|
|
// step name so we just use the first one.
|
|
for stepName, v := range s.StringVal {
|
|
return valid.Step{
|
|
StepName: stepName,
|
|
RunCommand: v,
|
|
}
|
|
}
|
|
}
|
|
|
|
panic("step was not valid. This is a bug!")
|
|
}
|
|
|
|
// unmarshalGeneric is used by UnmarshalJSON and UnmarshalYAML to unmarshal
|
|
// a step into one of its three forms. We need to implement a custom unmarshal
|
|
// function because steps can either be:
|
|
// 1. a built-in step: " - init"
|
|
// 2. a built-in step with extra_args: " - init: {extra_args: [arg1] }"
|
|
// 3. a custom run step: " - run: my custom command"
|
|
// It takes a parameter unmarshal that is a function that tries to unmarshal
|
|
// the current element into a given object.
|
|
func (s *Step) unmarshalGeneric(unmarshal func(interface{}) error) error {
|
|
|
|
// First try to unmarshal as a single string, ex.
|
|
// steps:
|
|
// - init
|
|
// - plan
|
|
// We validate if it's a legal string later.
|
|
var singleString string
|
|
err := unmarshal(&singleString)
|
|
if err == nil {
|
|
s.Key = &singleString
|
|
return nil
|
|
}
|
|
|
|
// This represents a step with extra_args, ex:
|
|
// init:
|
|
// extra_args: [a, b]
|
|
// We validate if there's a single key in the map and if the value is a
|
|
// legal value later.
|
|
var step map[string]map[string][]string
|
|
err = unmarshal(&step)
|
|
if err == nil {
|
|
s.Map = step
|
|
return nil
|
|
}
|
|
|
|
// This represents an env step, ex:
|
|
// env:
|
|
// name: k
|
|
// value: hi //optional
|
|
// command: exec
|
|
var envStep map[string]map[string]string
|
|
err = unmarshal(&envStep)
|
|
if err == nil {
|
|
s.Env = envStep
|
|
return nil
|
|
}
|
|
|
|
// Try to unmarshal as a custom run step, ex.
|
|
// steps:
|
|
// - run: my command
|
|
// We validate if the key is run later.
|
|
var runStep map[string]string
|
|
err = unmarshal(&runStep)
|
|
if err == nil {
|
|
s.StringVal = runStep
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func (s Step) marshalGeneric() (interface{}, error) {
|
|
if len(s.StringVal) != 0 {
|
|
return s.StringVal, nil
|
|
} else if len(s.Map) != 0 {
|
|
return s.Map, nil
|
|
} else if len(s.Env) != 0 {
|
|
return s.Env, nil
|
|
} else if s.Key != nil {
|
|
return s.Key, nil
|
|
}
|
|
|
|
// empty step should be marshalled to null, although this is generally
|
|
// unexpected behavior.
|
|
return nil, nil
|
|
}
|