mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
e57a09a404
We can not just update some records for steps, as we want the pipeline engine as single source of truth but not manage the state. And the server should only manage the state but not how pipelines work. We can match the pipeline but neither workflows or steps 1:1, so we "update" them as a whole by deleting existing workflow and step data and insert the new info from engine. close #3494 close #3472 --------- *Sponsored by Kithara Software GmbH* --------- Co-authored-by: Robert Kaussow <xoxys@rknet.org>
162 lines
5.7 KiB
Go
162 lines
5.7 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
//
|
|
// 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.
|
|
|
|
package pipeline
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
pipeline_errors "go.woodpecker-ci.org/woodpecker/v2/pipeline/errors"
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/frontend/yaml/compiler"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server"
|
|
forge_types "go.woodpecker-ci.org/woodpecker/v2/server/forge/types"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/pipeline/stepbuilder"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store"
|
|
)
|
|
|
|
func parsePipeline(store store.Store, currentPipeline *model.Pipeline, user *model.User, repo *model.Repo, yamls []*forge_types.FileMeta, envs map[string]string) ([]*stepbuilder.Item, error) {
|
|
netrc, err := server.Config.Services.Forge.Netrc(user, repo)
|
|
if err != nil {
|
|
log.Error().Err(err).Msg("failed to generate netrc file")
|
|
}
|
|
|
|
// get the previous pipeline so that we can send status change notifications
|
|
last, err := store.GetPipelineLastBefore(repo, currentPipeline.Branch, currentPipeline.ID)
|
|
if err != nil && !errors.Is(err, sql.ErrNoRows) {
|
|
log.Error().Err(err).Str("repo", repo.FullName).Msgf("error getting last pipeline before pipeline number '%d'", currentPipeline.Number)
|
|
}
|
|
|
|
secretService := server.Config.Services.Manager.SecretServiceFromRepo(repo)
|
|
secs, err := secretService.SecretListPipeline(repo, currentPipeline, &model.ListOptions{All: true})
|
|
if err != nil {
|
|
log.Error().Err(err).Msgf("error getting secrets for %s#%d", repo.FullName, currentPipeline.Number)
|
|
}
|
|
|
|
registryService := server.Config.Services.Manager.RegistryServiceFromRepo(repo)
|
|
regs, err := registryService.RegistryList(repo, &model.ListOptions{All: true})
|
|
if err != nil {
|
|
log.Error().Err(err).Msgf("error getting registry credentials for %s#%d", repo.FullName, currentPipeline.Number)
|
|
}
|
|
|
|
if envs == nil {
|
|
envs = map[string]string{}
|
|
}
|
|
|
|
environmentService := server.Config.Services.Manager.EnvironmentService()
|
|
if environmentService != nil {
|
|
globals, _ := environmentService.EnvironList(repo)
|
|
for _, global := range globals {
|
|
envs[global.Name] = global.Value
|
|
}
|
|
}
|
|
|
|
for k, v := range currentPipeline.AdditionalVariables {
|
|
envs[k] = v
|
|
}
|
|
|
|
b := stepbuilder.StepBuilder{
|
|
Repo: repo,
|
|
Curr: currentPipeline,
|
|
Last: last,
|
|
Netrc: netrc,
|
|
Secs: secs,
|
|
Regs: regs,
|
|
Envs: envs,
|
|
Host: server.Config.Server.Host,
|
|
Yamls: yamls,
|
|
Forge: server.Config.Services.Forge,
|
|
ProxyOpts: compiler.ProxyOptions{
|
|
NoProxy: server.Config.Pipeline.Proxy.No,
|
|
HTTPProxy: server.Config.Pipeline.Proxy.HTTP,
|
|
HTTPSProxy: server.Config.Pipeline.Proxy.HTTPS,
|
|
},
|
|
}
|
|
return b.Build()
|
|
}
|
|
|
|
func createPipelineItems(c context.Context, store store.Store,
|
|
currentPipeline *model.Pipeline, user *model.User, repo *model.Repo,
|
|
yamls []*forge_types.FileMeta, envs map[string]string,
|
|
) (*model.Pipeline, []*stepbuilder.Item, error) {
|
|
pipelineItems, err := parsePipeline(store, currentPipeline, user, repo, yamls, envs)
|
|
if pipeline_errors.HasBlockingErrors(err) {
|
|
currentPipeline, uerr := UpdateToStatusError(store, *currentPipeline, err)
|
|
if uerr != nil {
|
|
log.Error().Err(uerr).Msgf("error setting error status of pipeline for %s#%d", repo.FullName, currentPipeline.Number)
|
|
} else {
|
|
updatePipelineStatus(c, currentPipeline, repo, user)
|
|
}
|
|
|
|
return currentPipeline, nil, err
|
|
} else if err != nil {
|
|
currentPipeline.Errors = pipeline_errors.GetPipelineErrors(err)
|
|
err = updatePipelinePending(c, store, currentPipeline, repo, user)
|
|
}
|
|
|
|
currentPipeline = setPipelineStepsOnPipeline(currentPipeline, pipelineItems)
|
|
|
|
return currentPipeline, pipelineItems, err
|
|
}
|
|
|
|
// setPipelineStepsOnPipeline is the link between pipeline representation in "pipeline package" and server
|
|
// to be specific this func currently is used to convert the pipeline.Item list (crafted by StepBuilder.Build()) into
|
|
// a pipeline that can be stored in the database by the server
|
|
func setPipelineStepsOnPipeline(pipeline *model.Pipeline, pipelineItems []*stepbuilder.Item) *model.Pipeline {
|
|
var pidSequence int
|
|
for _, item := range pipelineItems {
|
|
if pidSequence < item.Workflow.PID {
|
|
pidSequence = item.Workflow.PID
|
|
}
|
|
}
|
|
|
|
// the workflows in the pipeline should be empty as only we do populate them,
|
|
// but if a pipeline was already loaded form database it might contain things, so we just clean it
|
|
pipeline.Workflows = nil
|
|
for _, item := range pipelineItems {
|
|
for _, stage := range item.Config.Stages {
|
|
for _, step := range stage.Steps {
|
|
pidSequence++
|
|
step := &model.Step{
|
|
Name: step.Name,
|
|
UUID: step.UUID,
|
|
PipelineID: pipeline.ID,
|
|
PID: pidSequence,
|
|
PPID: item.Workflow.PID,
|
|
State: model.StatusPending,
|
|
Failure: step.Failure,
|
|
Type: model.StepType(step.Type),
|
|
}
|
|
if item.Workflow.State == model.StatusSkipped {
|
|
step.State = model.StatusSkipped
|
|
}
|
|
if pipeline.Status == model.StatusBlocked {
|
|
step.State = model.StatusBlocked
|
|
}
|
|
item.Workflow.Children = append(item.Workflow.Children, step)
|
|
}
|
|
}
|
|
if pipeline.Status == model.StatusBlocked {
|
|
item.Workflow.State = model.StatusBlocked
|
|
}
|
|
item.Workflow.PipelineID = pipeline.ID
|
|
pipeline.Workflows = append(pipeline.Workflows, item.Workflow)
|
|
}
|
|
|
|
return pipeline
|
|
}
|