Files
atlantis/server/core/config/raw/project.go
Sarvar Muminov 7a927c050b Moving config files to core/config (#2036)
* Moving config files to core/config

* fix package names

* fix package dependencies

* linting fixes

* more linting fixes

* ran golangci-lint run --fix
2022-02-03 11:06:04 -08:00

116 lines
3.5 KiB
Go

package raw
import (
"fmt"
"net/url"
"path/filepath"
"strings"
validation "github.com/go-ozzo/ozzo-validation"
version "github.com/hashicorp/go-version"
"github.com/pkg/errors"
"github.com/runatlantis/atlantis/server/core/config/valid"
)
const (
DefaultWorkspace = "default"
ApprovedApplyRequirement = "approved"
MergeableApplyRequirement = "mergeable"
UnDivergedApplyRequirement = "undiverged"
)
type Project struct {
Name *string `yaml:"name,omitempty"`
Dir *string `yaml:"dir,omitempty"`
Workspace *string `yaml:"workspace,omitempty"`
Workflow *string `yaml:"workflow,omitempty"`
TerraformVersion *string `yaml:"terraform_version,omitempty"`
Autoplan *Autoplan `yaml:"autoplan,omitempty"`
ApplyRequirements []string `yaml:"apply_requirements,omitempty"`
DeleteSourceBranchOnMerge *bool `yaml:"delete_source_branch_on_merge,omitempty"`
}
func (p Project) Validate() error {
hasDotDot := func(value interface{}) error {
if strings.Contains(*value.(*string), "..") {
return errors.New("cannot contain '..'")
}
return nil
}
validName := func(value interface{}) error {
strPtr := value.(*string)
if strPtr == nil {
return nil
}
if *strPtr == "" {
return errors.New("if set cannot be empty")
}
if !validProjectName(*strPtr) {
return fmt.Errorf("%q is not allowed: must contain only URL safe characters", *strPtr)
}
return nil
}
return validation.ValidateStruct(&p,
validation.Field(&p.Dir, validation.Required, validation.By(hasDotDot)),
validation.Field(&p.ApplyRequirements, validation.By(validApplyReq)),
validation.Field(&p.TerraformVersion, validation.By(VersionValidator)),
validation.Field(&p.Name, validation.By(validName)),
)
}
func (p Project) ToValid() valid.Project {
var v valid.Project
// Prepend ./ and then run .Clean() so we're guaranteed to have a relative
// directory. This is necessary because we use this dir without sanitation
// in DefaultProjectFinder.
cleanedDir := filepath.Clean("./" + *p.Dir)
v.Dir = cleanedDir
if p.Workspace == nil || *p.Workspace == "" {
v.Workspace = DefaultWorkspace
} else {
v.Workspace = *p.Workspace
}
v.WorkflowName = p.Workflow
if p.TerraformVersion != nil {
v.TerraformVersion, _ = version.NewVersion(*p.TerraformVersion)
}
if p.Autoplan == nil {
v.Autoplan = DefaultAutoPlan()
} else {
v.Autoplan = p.Autoplan.ToValid()
}
// There are no default apply requirements.
v.ApplyRequirements = p.ApplyRequirements
v.Name = p.Name
if p.DeleteSourceBranchOnMerge != nil {
v.DeleteSourceBranchOnMerge = p.DeleteSourceBranchOnMerge
}
return v
}
// validProjectName returns true if the project name is valid.
// Since the name might be used in URLs and definitely in files we don't
// support any characters that must be url escaped *except* for '/' because
// users like to name their projects to match the directory it's in.
func validProjectName(name string) bool {
nameWithoutSlashes := strings.Replace(name, "/", "-", -1)
return nameWithoutSlashes == url.QueryEscape(nameWithoutSlashes)
}
func validApplyReq(value interface{}) error {
reqs := value.([]string)
for _, r := range reqs {
if r != ApprovedApplyRequirement && r != MergeableApplyRequirement && r != UnDivergedApplyRequirement {
return fmt.Errorf("%q is not a valid apply_requirement, only %q, %q and %q are supported", r, ApprovedApplyRequirement, MergeableApplyRequirement, UnDivergedApplyRequirement)
}
}
return nil
}