mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
e28b43ab19
Co-authored-by: qwerty287 <ndev@web.de> Co-authored-by: 6543 <6543@obermui.de>
122 lines
4.3 KiB
Go
122 lines
4.3 KiB
Go
package yaml
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/exp/slices"
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/constraint"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/types"
|
|
"github.com/woodpecker-ci/woodpecker/shared/constant"
|
|
)
|
|
|
|
type (
|
|
// AuthConfig defines registry authentication credentials.
|
|
AuthConfig struct {
|
|
Username string
|
|
Password string
|
|
Email string
|
|
}
|
|
|
|
// Containers denotes an ordered collection of containers.
|
|
Containers struct {
|
|
Containers []*Container
|
|
}
|
|
|
|
// Container defines a container.
|
|
Container struct {
|
|
AuthConfig AuthConfig `yaml:"auth_config,omitempty"`
|
|
CapAdd []string `yaml:"cap_add,omitempty"`
|
|
CapDrop []string `yaml:"cap_drop,omitempty"`
|
|
Commands types.StringOrSlice `yaml:"commands,omitempty"`
|
|
CPUQuota types.StringorInt `yaml:"cpu_quota,omitempty"`
|
|
CPUSet string `yaml:"cpuset,omitempty"`
|
|
CPUShares types.StringorInt `yaml:"cpu_shares,omitempty"`
|
|
Detached bool `yaml:"detach,omitempty"`
|
|
Devices []string `yaml:"devices,omitempty"`
|
|
Tmpfs []string `yaml:"tmpfs,omitempty"`
|
|
DNS types.StringOrSlice `yaml:"dns,omitempty"`
|
|
DNSSearch types.StringOrSlice `yaml:"dns_search,omitempty"`
|
|
Directory string `yaml:"directory,omitempty"`
|
|
Environment types.SliceorMap `yaml:"environment,omitempty"`
|
|
ExtraHosts []string `yaml:"extra_hosts,omitempty"`
|
|
Group string `yaml:"group,omitempty"`
|
|
Image string `yaml:"image,omitempty"`
|
|
Failure string `yaml:"failure,omitempty"`
|
|
Isolation string `yaml:"isolation,omitempty"`
|
|
Labels types.SliceorMap `yaml:"labels,omitempty"`
|
|
MemLimit types.MemStringorInt `yaml:"mem_limit,omitempty"`
|
|
MemSwapLimit types.MemStringorInt `yaml:"memswap_limit,omitempty"`
|
|
MemSwappiness types.MemStringorInt `yaml:"mem_swappiness,omitempty"`
|
|
Name string `yaml:"name,omitempty"`
|
|
NetworkMode string `yaml:"network_mode,omitempty"`
|
|
IpcMode string `yaml:"ipc_mode,omitempty"`
|
|
Networks types.Networks `yaml:"networks,omitempty"`
|
|
Privileged bool `yaml:"privileged,omitempty"`
|
|
Pull bool `yaml:"pull,omitempty"`
|
|
ShmSize types.MemStringorInt `yaml:"shm_size,omitempty"`
|
|
Ulimits types.Ulimits `yaml:"ulimits,omitempty"`
|
|
Volumes types.Volumes `yaml:"volumes,omitempty"`
|
|
Secrets Secrets `yaml:"secrets,omitempty"`
|
|
Sysctls types.SliceorMap `yaml:"sysctls,omitempty"`
|
|
When constraint.When `yaml:"when,omitempty"`
|
|
Settings map[string]interface{} `yaml:"settings"`
|
|
}
|
|
)
|
|
|
|
// UnmarshalYAML implements the Unmarshaler interface.
|
|
func (c *Containers) UnmarshalYAML(value *yaml.Node) error {
|
|
switch value.Kind {
|
|
// We support maps ...
|
|
case yaml.MappingNode:
|
|
c.Containers = make([]*Container, 0, len(value.Content)/2+1)
|
|
// We cannot use decode on specific values
|
|
// since if we try to load from a map, the order
|
|
// will not be kept. Therefore use value.Content
|
|
// and take the map values i%2=1
|
|
for i, n := range value.Content {
|
|
if i%2 == 1 {
|
|
container := &Container{}
|
|
if err := n.Decode(container); err != nil {
|
|
return err
|
|
}
|
|
|
|
if container.Name == "" {
|
|
container.Name = fmt.Sprintf("%v", value.Content[i-1].Value)
|
|
}
|
|
|
|
c.Containers = append(c.Containers, container)
|
|
}
|
|
}
|
|
|
|
// ... and lists
|
|
case yaml.SequenceNode:
|
|
c.Containers = make([]*Container, 0, len(value.Content))
|
|
for i, n := range value.Content {
|
|
container := &Container{}
|
|
if err := n.Decode(container); err != nil {
|
|
return err
|
|
}
|
|
|
|
if container.Name == "" {
|
|
container.Name = fmt.Sprintf("step-%d", i)
|
|
}
|
|
|
|
c.Containers = append(c.Containers, container)
|
|
}
|
|
|
|
default:
|
|
return fmt.Errorf("yaml node type[%d]: '%s' not supported", value.Kind, value.Tag)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Container) IsPlugin() bool {
|
|
return len(c.Commands) == 0
|
|
}
|
|
|
|
func (c *Container) IsTrustedCloneImage() bool {
|
|
return c.IsPlugin() && slices.Contains(constant.TrustedCloneImages, c.Image)
|
|
}
|