2021-01-11 20:54:49 +00:00
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Daemon defines Docker daemon parameters.
|
|
|
|
type Daemon struct {
|
2021-07-08 07:00:51 +00:00
|
|
|
Registry string // Docker registry
|
|
|
|
Mirror string // Docker registry mirror
|
|
|
|
Insecure bool // Docker daemon enable insecure registries
|
|
|
|
StorageDriver string // Docker daemon storage driver
|
|
|
|
StoragePath string // Docker daemon storage path
|
|
|
|
Disabled bool // DOcker daemon is disabled (already running)
|
|
|
|
Debug bool // Docker daemon started in debug mode
|
|
|
|
Bip string // Docker daemon network bridge IP address
|
|
|
|
DNS cli.StringSlice // Docker daemon dns server
|
|
|
|
DNSSearch cli.StringSlice // Docker daemon dns search domain
|
|
|
|
MTU string // Docker daemon mtu setting
|
|
|
|
IPv6 bool // Docker daemon IPv6 networking
|
|
|
|
Experimental bool // Docker daemon enable experimental mode
|
2021-07-25 12:28:33 +00:00
|
|
|
BuildkitConfig string // Docker buildkit config
|
2021-01-11 20:54:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Login defines Docker login parameters.
|
|
|
|
type Login struct {
|
|
|
|
Registry string // Docker registry address
|
|
|
|
Username string // Docker registry username
|
|
|
|
Password string // Docker registry password
|
|
|
|
Email string // Docker registry email
|
|
|
|
Config string // Docker Auth Config
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build defines Docker build parameters.
|
|
|
|
type Build struct {
|
|
|
|
Remote string // Git remote URL
|
|
|
|
Ref string // Git commit ref
|
|
|
|
Branch string // Git repository branch
|
|
|
|
Dockerfile string // Docker build Dockerfile
|
|
|
|
Context string // Docker build context
|
|
|
|
TagsAuto bool // Docker build auto tag
|
|
|
|
TagsSuffix string // Docker build tags with suffix
|
|
|
|
Tags cli.StringSlice // Docker build tags
|
|
|
|
Platforms cli.StringSlice // Docker build target platforms
|
|
|
|
Args cli.StringSlice // Docker build args
|
|
|
|
ArgsEnv cli.StringSlice // Docker build args from env
|
|
|
|
Target string // Docker build target
|
|
|
|
Pull bool // Docker build pull
|
|
|
|
CacheFrom cli.StringSlice // Docker build cache-from
|
|
|
|
Compress bool // Docker build compress
|
|
|
|
Repo string // Docker build repository
|
|
|
|
NoCache bool // Docker build no-cache
|
|
|
|
AddHost cli.StringSlice // Docker build add-host
|
|
|
|
Quiet bool // Docker build quiet
|
2022-01-27 20:53:46 +00:00
|
|
|
Output string // Docker build output folder
|
2021-01-11 20:54:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Settings for the Plugin.
|
|
|
|
type Settings struct {
|
|
|
|
Daemon Daemon
|
|
|
|
Login Login
|
|
|
|
Build Build
|
|
|
|
Dryrun bool
|
|
|
|
Cleanup bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate handles the settings validation of the plugin.
|
|
|
|
func (p *Plugin) Validate() error {
|
2021-01-11 21:38:17 +00:00
|
|
|
p.settings.Build.Branch = p.pipeline.Repo.Branch
|
|
|
|
p.settings.Build.Ref = p.pipeline.Commit.Ref
|
2021-01-11 20:54:49 +00:00
|
|
|
p.settings.Daemon.Registry = p.settings.Login.Registry
|
|
|
|
|
|
|
|
if p.settings.Build.TagsAuto {
|
|
|
|
// return true if tag event or default branch
|
|
|
|
if UseDefaultTag(
|
|
|
|
p.settings.Build.Ref,
|
|
|
|
p.settings.Build.Branch,
|
|
|
|
) {
|
|
|
|
tag, err := DefaultTagSuffix(
|
|
|
|
p.settings.Build.Ref,
|
|
|
|
p.settings.Build.TagsSuffix,
|
|
|
|
)
|
|
|
|
if err != nil {
|
2022-01-12 08:10:27 +00:00
|
|
|
logrus.Printf("cannot generate tags from %s, invalid semantic version", p.settings.Build.Ref)
|
2021-01-11 20:54:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.settings.Build.Tags = *cli.NewStringSlice(tag...)
|
|
|
|
} else {
|
2022-01-12 08:10:27 +00:00
|
|
|
logrus.Printf("skip auto-tagging for %s, not on default branch or tag", p.settings.Build.Ref)
|
2021-01-11 20:54:49 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute provides the implementation of the plugin.
|
|
|
|
func (p *Plugin) Execute() error {
|
|
|
|
// start the Docker daemon server
|
|
|
|
if !p.settings.Daemon.Disabled {
|
|
|
|
p.startDaemon()
|
|
|
|
}
|
|
|
|
|
|
|
|
// poll the docker daemon until it is started. This ensures the daemon is
|
|
|
|
// ready to accept connections before we proceed.
|
|
|
|
for i := 0; i < 15; i++ {
|
|
|
|
cmd := commandInfo()
|
|
|
|
err := cmd.Run()
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second * 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create Auth Config File
|
|
|
|
if p.settings.Login.Config != "" {
|
2022-04-25 10:51:42 +00:00
|
|
|
if err := os.MkdirAll(dockerHome, 0o600); err != nil {
|
|
|
|
return fmt.Errorf("failed to create docker home: %s", err)
|
|
|
|
}
|
2021-01-11 20:54:49 +00:00
|
|
|
|
|
|
|
path := filepath.Join(dockerHome, "config.json")
|
2022-04-25 10:51:42 +00:00
|
|
|
err := os.WriteFile(path, []byte(p.settings.Login.Config), 0o600)
|
2021-01-11 20:54:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error writing config.json: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// login to the Docker registry
|
|
|
|
if p.settings.Login.Password != "" {
|
|
|
|
cmd := commandLogin(p.settings.Login)
|
|
|
|
err := cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error authenticating: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-25 12:28:33 +00:00
|
|
|
if p.settings.Daemon.BuildkitConfig != "" {
|
2022-04-25 10:51:42 +00:00
|
|
|
err := os.WriteFile(buildkitConfig, []byte(p.settings.Daemon.BuildkitConfig), 0o600)
|
2021-07-25 12:28:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error writing buildkit.json: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 20:54:49 +00:00
|
|
|
switch {
|
|
|
|
case p.settings.Login.Password != "":
|
|
|
|
fmt.Println("Detected registry credentials")
|
|
|
|
case p.settings.Login.Config != "":
|
|
|
|
fmt.Println("Detected registry credentials file")
|
|
|
|
default:
|
|
|
|
fmt.Println("Registry credentials or Docker config not provided. Guest mode enabled.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// add proxy build args
|
|
|
|
addProxyBuildArgs(&p.settings.Build)
|
|
|
|
|
|
|
|
var cmds []*exec.Cmd
|
|
|
|
cmds = append(cmds, commandVersion()) // docker version
|
|
|
|
cmds = append(cmds, commandInfo()) // docker info
|
2021-07-08 07:00:51 +00:00
|
|
|
cmds = append(cmds, commandBuilder(p.settings.Daemon))
|
2021-01-11 20:54:49 +00:00
|
|
|
cmds = append(cmds, commandBuildx())
|
|
|
|
|
|
|
|
// pre-pull cache images
|
|
|
|
for _, img := range p.settings.Build.CacheFrom.Value() {
|
|
|
|
cmds = append(cmds, commandPull(img))
|
|
|
|
}
|
|
|
|
|
2021-07-02 16:58:55 +00:00
|
|
|
cmds = append(cmds, commandBuild(p.settings.Build, p.settings.Dryrun)) // docker build
|
2021-01-11 20:54:49 +00:00
|
|
|
|
|
|
|
// execute all commands in batch mode.
|
|
|
|
for _, cmd := range cmds {
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
trace(cmd)
|
|
|
|
|
|
|
|
err := cmd.Run()
|
|
|
|
if err != nil && isCommandPull(cmd.Args) {
|
|
|
|
fmt.Printf("Could not pull cache-from image %s. Ignoring...\n", cmd.Args[2])
|
|
|
|
} else if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|