2019-06-01 08:17:02 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
package shared
|
2019-06-01 08:17:02 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math/rand"
|
|
|
|
"net/url"
|
2021-09-21 02:21:13 +00:00
|
|
|
"path/filepath"
|
2019-06-16 13:27:40 +00:00
|
|
|
"sort"
|
2019-06-01 08:17:02 +00:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/drone/envsubst"
|
2021-10-12 07:25:13 +00:00
|
|
|
|
2021-09-24 11:18:34 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/compiler"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/linter"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/matrix"
|
2021-09-22 18:48:01 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server"
|
2021-09-27 17:51:55 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2021-09-23 16:25:51 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/remote"
|
2019-06-01 08:17:02 +00:00
|
|
|
)
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
// ProcBuilder Takes the hook data and the yaml and returns in internal data model
|
|
|
|
type ProcBuilder struct {
|
2019-06-01 08:17:02 +00:00
|
|
|
Repo *model.Repo
|
|
|
|
Curr *model.Build
|
|
|
|
Last *model.Build
|
|
|
|
Netrc *model.Netrc
|
|
|
|
Secs []*model.Secret
|
|
|
|
Regs []*model.Registry
|
|
|
|
Link string
|
2019-06-13 15:38:19 +00:00
|
|
|
Yamls []*remote.FileMeta
|
2019-06-01 08:17:02 +00:00
|
|
|
Envs map[string]string
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
type BuildItem struct {
|
2019-06-13 15:38:19 +00:00
|
|
|
Proc *model.Proc
|
|
|
|
Platform string
|
|
|
|
Labels map[string]string
|
|
|
|
DependsOn []string
|
2019-06-17 07:06:36 +00:00
|
|
|
RunsOn []string
|
2019-06-13 15:38:19 +00:00
|
|
|
Config *backend.Config
|
2019-06-01 08:17:02 +00:00
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func (b *ProcBuilder) Build() ([]*BuildItem, error) {
|
|
|
|
var items []*BuildItem
|
2019-06-01 08:17:02 +00:00
|
|
|
|
2019-06-16 13:27:40 +00:00
|
|
|
sort.Sort(remote.ByName(b.Yamls))
|
|
|
|
|
2019-07-19 07:17:47 +00:00
|
|
|
pidSequence := 1
|
|
|
|
|
|
|
|
for _, y := range b.Yamls {
|
2019-06-05 13:58:27 +00:00
|
|
|
// matrix axes
|
2019-06-13 15:38:19 +00:00
|
|
|
axes, err := matrix.ParseString(string(y.Data))
|
2019-06-01 08:41:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-06-01 08:17:02 +00:00
|
|
|
}
|
2019-06-01 08:41:51 +00:00
|
|
|
if len(axes) == 0 {
|
|
|
|
axes = append(axes, matrix.Axis{})
|
2019-06-01 08:17:02 +00:00
|
|
|
}
|
|
|
|
|
2019-07-19 07:17:47 +00:00
|
|
|
for _, axis := range axes {
|
2019-06-01 08:41:51 +00:00
|
|
|
proc := &model.Proc{
|
|
|
|
BuildID: b.Curr.ID,
|
2019-07-19 07:17:47 +00:00
|
|
|
PID: pidSequence,
|
|
|
|
PGID: pidSequence,
|
2019-06-01 08:41:51 +00:00
|
|
|
State: model.StatusPending,
|
|
|
|
Environ: axis,
|
2021-09-22 18:48:01 +00:00
|
|
|
Name: SanitizePath(y.Name),
|
2019-06-01 08:17:02 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 08:41:51 +00:00
|
|
|
metadata := metadataFromStruct(b.Repo, b.Curr, b.Last, proc, b.Link)
|
2019-06-05 13:58:27 +00:00
|
|
|
environ := b.environmentVariables(metadata, axis)
|
2019-06-01 08:17:02 +00:00
|
|
|
|
2019-06-05 13:58:27 +00:00
|
|
|
// substitute vars
|
2019-06-13 15:38:19 +00:00
|
|
|
substituted, err := b.envsubst_(string(y.Data), environ)
|
2019-06-01 08:41:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-06-05 13:58:27 +00:00
|
|
|
// parse yaml pipeline
|
2019-06-13 15:38:19 +00:00
|
|
|
parsed, err := yaml.ParseString(substituted)
|
2019-06-01 08:41:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-06-05 13:58:27 +00:00
|
|
|
// lint pipeline
|
2019-06-01 08:41:51 +00:00
|
|
|
lerr := linter.New(
|
|
|
|
linter.WithTrusted(b.Repo.IsTrusted),
|
|
|
|
).Lint(parsed)
|
|
|
|
if lerr != nil {
|
|
|
|
return nil, lerr
|
|
|
|
}
|
|
|
|
|
2019-06-19 07:36:54 +00:00
|
|
|
if !parsed.Branches.Match(b.Curr.Branch) {
|
|
|
|
proc.State = model.StatusSkipped
|
|
|
|
}
|
|
|
|
|
2019-06-05 13:58:27 +00:00
|
|
|
metadata.SetPlatform(parsed.Platform)
|
2019-06-01 08:17:02 +00:00
|
|
|
|
2019-06-05 13:58:27 +00:00
|
|
|
ir := b.toInternalRepresentation(parsed, environ, metadata, proc.ID)
|
2019-06-01 08:41:51 +00:00
|
|
|
|
2019-07-19 07:18:40 +00:00
|
|
|
if len(ir.Stages) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
item := &BuildItem{
|
2019-06-13 15:38:19 +00:00
|
|
|
Proc: proc,
|
|
|
|
Config: ir,
|
|
|
|
Labels: parsed.Labels,
|
|
|
|
DependsOn: parsed.DependsOn,
|
2019-06-17 07:06:36 +00:00
|
|
|
RunsOn: parsed.RunsOn,
|
2019-06-13 15:38:19 +00:00
|
|
|
Platform: metadata.Sys.Arch,
|
2019-06-01 08:41:51 +00:00
|
|
|
}
|
|
|
|
if item.Labels == nil {
|
|
|
|
item.Labels = map[string]string{}
|
|
|
|
}
|
2019-07-19 07:18:40 +00:00
|
|
|
|
2019-06-01 08:41:51 +00:00
|
|
|
items = append(items, item)
|
2019-07-19 07:17:47 +00:00
|
|
|
pidSequence++
|
2019-06-01 08:17:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-22 12:13:46 +00:00
|
|
|
items = filterItemsWithMissingDependencies(items)
|
|
|
|
|
2019-06-01 08:17:02 +00:00
|
|
|
return items, nil
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func filterItemsWithMissingDependencies(items []*BuildItem) []*BuildItem {
|
|
|
|
itemsToRemove := make([]*BuildItem, 0)
|
2019-07-22 12:13:46 +00:00
|
|
|
|
|
|
|
for _, item := range items {
|
|
|
|
for _, dep := range item.DependsOn {
|
|
|
|
if !containsItemWithName(dep, items) {
|
|
|
|
itemsToRemove = append(itemsToRemove, item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(itemsToRemove) > 0 {
|
2021-09-22 18:48:01 +00:00
|
|
|
filtered := make([]*BuildItem, 0)
|
2019-07-22 12:13:46 +00:00
|
|
|
for _, item := range items {
|
|
|
|
if !containsItemWithName(item.Proc.Name, itemsToRemove) {
|
|
|
|
filtered = append(filtered, item)
|
|
|
|
}
|
|
|
|
}
|
2019-07-22 12:29:15 +00:00
|
|
|
// Recursive to handle transitive deps
|
|
|
|
return filterItemsWithMissingDependencies(filtered)
|
2019-07-22 12:13:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return items
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func containsItemWithName(name string, items []*BuildItem) bool {
|
2019-07-22 12:13:46 +00:00
|
|
|
for _, item := range items {
|
|
|
|
if name == item.Proc.Name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func (b *ProcBuilder) envsubst_(y string, environ map[string]string) (string, error) {
|
2019-06-05 13:58:27 +00:00
|
|
|
return envsubst.Eval(y, func(name string) string {
|
|
|
|
env := environ[name]
|
|
|
|
if strings.Contains(env, "\n") {
|
|
|
|
env = fmt.Sprintf("%q", env)
|
|
|
|
}
|
|
|
|
return env
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func (b *ProcBuilder) environmentVariables(metadata frontend.Metadata, axis matrix.Axis) map[string]string {
|
2019-06-05 13:58:27 +00:00
|
|
|
environ := metadata.Environ()
|
|
|
|
for k, v := range metadata.EnvironDrone() {
|
|
|
|
environ[k] = v
|
|
|
|
}
|
|
|
|
for k, v := range axis {
|
|
|
|
environ[k] = v
|
|
|
|
}
|
|
|
|
return environ
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func (b *ProcBuilder) toInternalRepresentation(parsed *yaml.Config, environ map[string]string, metadata frontend.Metadata, procID int64) *backend.Config {
|
2019-06-05 13:58:27 +00:00
|
|
|
var secrets []compiler.Secret
|
|
|
|
for _, sec := range b.Secs {
|
|
|
|
if !sec.Match(b.Curr.Event) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
secrets = append(secrets, compiler.Secret{
|
|
|
|
Name: sec.Name,
|
|
|
|
Value: sec.Value,
|
|
|
|
Match: sec.Images,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
var registries []compiler.Registry
|
|
|
|
for _, reg := range b.Regs {
|
|
|
|
registries = append(registries, compiler.Registry{
|
|
|
|
Hostname: reg.Address,
|
|
|
|
Username: reg.Username,
|
|
|
|
Password: reg.Password,
|
|
|
|
Email: reg.Email,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return compiler.New(
|
|
|
|
compiler.WithEnviron(environ),
|
|
|
|
compiler.WithEnviron(b.Envs),
|
2021-09-22 18:48:01 +00:00
|
|
|
compiler.WithEscalated(server.Config.Pipeline.Privileged...),
|
|
|
|
compiler.WithResourceLimit(server.Config.Pipeline.Limits.MemSwapLimit, server.Config.Pipeline.Limits.MemLimit, server.Config.Pipeline.Limits.ShmSize, server.Config.Pipeline.Limits.CPUQuota, server.Config.Pipeline.Limits.CPUShares, server.Config.Pipeline.Limits.CPUSet),
|
|
|
|
compiler.WithVolumes(server.Config.Pipeline.Volumes...),
|
|
|
|
compiler.WithNetworks(server.Config.Pipeline.Networks...),
|
2019-06-05 13:58:27 +00:00
|
|
|
compiler.WithLocal(false),
|
|
|
|
compiler.WithOption(
|
|
|
|
compiler.WithNetrc(
|
|
|
|
b.Netrc.Login,
|
|
|
|
b.Netrc.Password,
|
|
|
|
b.Netrc.Machine,
|
|
|
|
),
|
|
|
|
b.Repo.IsPrivate,
|
|
|
|
),
|
|
|
|
compiler.WithRegistry(registries...),
|
|
|
|
compiler.WithSecret(secrets...),
|
|
|
|
compiler.WithPrefix(
|
|
|
|
fmt.Sprintf(
|
|
|
|
"%d_%d",
|
|
|
|
procID,
|
|
|
|
rand.Int(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
compiler.WithProxy(),
|
|
|
|
compiler.WithWorkspaceFromURL("/drone", b.Repo.Link),
|
|
|
|
compiler.WithMetadata(metadata),
|
|
|
|
).Compile(parsed)
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func SetBuildStepsOnBuild(build *model.Build, buildItems []*BuildItem) *model.Build {
|
2019-07-23 12:10:44 +00:00
|
|
|
var pidSequence int
|
2019-07-22 11:43:18 +00:00
|
|
|
for _, item := range buildItems {
|
|
|
|
build.Procs = append(build.Procs, item.Proc)
|
2019-07-23 12:10:44 +00:00
|
|
|
if pidSequence < item.Proc.PID {
|
|
|
|
pidSequence = item.Proc.PID
|
|
|
|
}
|
2019-07-22 11:43:18 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 08:36:16 +00:00
|
|
|
for _, item := range buildItems {
|
|
|
|
for _, stage := range item.Config.Stages {
|
|
|
|
var gid int
|
|
|
|
for _, step := range stage.Steps {
|
2019-07-23 12:10:44 +00:00
|
|
|
pidSequence++
|
2019-06-05 08:36:16 +00:00
|
|
|
if gid == 0 {
|
2019-07-23 12:10:44 +00:00
|
|
|
gid = pidSequence
|
2019-06-05 08:36:16 +00:00
|
|
|
}
|
|
|
|
proc := &model.Proc{
|
|
|
|
BuildID: build.ID,
|
|
|
|
Name: step.Alias,
|
2019-07-23 12:10:44 +00:00
|
|
|
PID: pidSequence,
|
2019-06-05 08:36:16 +00:00
|
|
|
PPID: item.Proc.PID,
|
|
|
|
PGID: gid,
|
|
|
|
State: model.StatusPending,
|
|
|
|
}
|
2019-06-19 07:36:54 +00:00
|
|
|
if item.Proc.State == model.StatusSkipped {
|
|
|
|
proc.State = model.StatusSkipped
|
|
|
|
}
|
2019-06-05 08:36:16 +00:00
|
|
|
build.Procs = append(build.Procs, proc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-22 11:43:18 +00:00
|
|
|
|
|
|
|
return build
|
2019-06-05 08:36:16 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 08:17:02 +00:00
|
|
|
// return the metadata from the cli context.
|
|
|
|
func metadataFromStruct(repo *model.Repo, build, last *model.Build, proc *model.Proc, link string) frontend.Metadata {
|
|
|
|
host := link
|
|
|
|
uri, err := url.Parse(link)
|
|
|
|
if err == nil {
|
|
|
|
host = uri.Host
|
|
|
|
}
|
|
|
|
return frontend.Metadata{
|
|
|
|
Repo: frontend.Repo{
|
|
|
|
Name: repo.FullName,
|
|
|
|
Link: repo.Link,
|
|
|
|
Remote: repo.Clone,
|
|
|
|
Private: repo.IsPrivate,
|
|
|
|
Branch: repo.Branch,
|
|
|
|
},
|
|
|
|
Curr: frontend.Build{
|
|
|
|
Number: build.Number,
|
|
|
|
Parent: build.Parent,
|
|
|
|
Created: build.Created,
|
|
|
|
Started: build.Started,
|
|
|
|
Finished: build.Finished,
|
|
|
|
Status: build.Status,
|
|
|
|
Event: build.Event,
|
|
|
|
Link: build.Link,
|
|
|
|
Target: build.Deploy,
|
|
|
|
Commit: frontend.Commit{
|
|
|
|
Sha: build.Commit,
|
|
|
|
Ref: build.Ref,
|
|
|
|
Refspec: build.Refspec,
|
|
|
|
Branch: build.Branch,
|
|
|
|
Message: build.Message,
|
|
|
|
Author: frontend.Author{
|
|
|
|
Name: build.Author,
|
|
|
|
Email: build.Email,
|
|
|
|
Avatar: build.Avatar,
|
|
|
|
},
|
2021-06-28 21:50:35 +00:00
|
|
|
ChangedFiles: build.ChangedFiles,
|
2019-06-01 08:17:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Prev: frontend.Build{
|
|
|
|
Number: last.Number,
|
|
|
|
Created: last.Created,
|
|
|
|
Started: last.Started,
|
|
|
|
Finished: last.Finished,
|
|
|
|
Status: last.Status,
|
|
|
|
Event: last.Event,
|
|
|
|
Link: last.Link,
|
|
|
|
Target: last.Deploy,
|
|
|
|
Commit: frontend.Commit{
|
|
|
|
Sha: last.Commit,
|
|
|
|
Ref: last.Ref,
|
|
|
|
Refspec: last.Refspec,
|
|
|
|
Branch: last.Branch,
|
|
|
|
Message: last.Message,
|
|
|
|
Author: frontend.Author{
|
|
|
|
Name: last.Author,
|
|
|
|
Email: last.Email,
|
|
|
|
Avatar: last.Avatar,
|
|
|
|
},
|
2021-06-28 21:50:35 +00:00
|
|
|
ChangedFiles: last.ChangedFiles,
|
2019-06-01 08:17:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Job: frontend.Job{
|
|
|
|
Number: proc.PID,
|
|
|
|
Matrix: proc.Environ,
|
|
|
|
},
|
|
|
|
Sys: frontend.System{
|
2021-10-02 08:59:34 +00:00
|
|
|
Name: "woodpecker",
|
2019-06-01 08:17:02 +00:00
|
|
|
Link: link,
|
|
|
|
Host: host,
|
|
|
|
Arch: "linux/amd64",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2019-06-13 15:38:19 +00:00
|
|
|
|
2021-09-22 18:48:01 +00:00
|
|
|
func SanitizePath(path string) string {
|
2021-09-21 02:21:13 +00:00
|
|
|
path = filepath.Base(path)
|
2019-06-13 15:38:19 +00:00
|
|
|
path = strings.TrimSuffix(path, ".yml")
|
|
|
|
path = strings.TrimPrefix(path, ".")
|
|
|
|
return path
|
|
|
|
}
|