2019-03-13 21:47:47 +00:00
|
|
|
// Copyright 2019 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.
|
2019-02-28 07:07:13 +00:00
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
package trigger
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"runtime/debug"
|
2019-02-21 19:06:33 +00:00
|
|
|
"strings"
|
2019-02-19 23:56:41 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/drone/drone-yaml/yaml"
|
|
|
|
"github.com/drone/drone-yaml/yaml/converter"
|
|
|
|
"github.com/drone/drone-yaml/yaml/linter"
|
|
|
|
"github.com/drone/drone-yaml/yaml/signer"
|
|
|
|
|
|
|
|
"github.com/drone/drone/core"
|
2019-04-20 00:20:40 +00:00
|
|
|
"github.com/drone/drone/trigger/dag"
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type triggerer struct {
|
2019-10-02 06:28:57 +00:00
|
|
|
canceler core.Canceler
|
2019-09-03 22:05:53 +00:00
|
|
|
config core.ConfigService
|
|
|
|
convert core.ConvertService
|
|
|
|
commits core.CommitService
|
|
|
|
status core.StatusService
|
|
|
|
builds core.BuildStore
|
|
|
|
sched core.Scheduler
|
|
|
|
repos core.RepositoryStore
|
|
|
|
users core.UserStore
|
|
|
|
validate core.ValidateService
|
|
|
|
hooks core.WebhookSender
|
2019-02-19 23:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new build triggerer.
|
|
|
|
func New(
|
2019-10-02 06:28:57 +00:00
|
|
|
canceler core.Canceler,
|
2019-02-19 23:56:41 +00:00
|
|
|
config core.ConfigService,
|
2019-09-03 06:05:30 +00:00
|
|
|
convert core.ConvertService,
|
2019-02-19 23:56:41 +00:00
|
|
|
commits core.CommitService,
|
|
|
|
status core.StatusService,
|
|
|
|
builds core.BuildStore,
|
|
|
|
sched core.Scheduler,
|
|
|
|
repos core.RepositoryStore,
|
|
|
|
users core.UserStore,
|
2019-09-03 22:05:53 +00:00
|
|
|
validate core.ValidateService,
|
2019-02-19 23:56:41 +00:00
|
|
|
hooks core.WebhookSender,
|
|
|
|
) core.Triggerer {
|
|
|
|
return &triggerer{
|
2019-10-02 06:28:57 +00:00
|
|
|
canceler: canceler,
|
2019-09-03 22:05:53 +00:00
|
|
|
config: config,
|
|
|
|
convert: convert,
|
|
|
|
commits: commits,
|
|
|
|
status: status,
|
|
|
|
builds: builds,
|
|
|
|
sched: sched,
|
|
|
|
repos: repos,
|
|
|
|
users: users,
|
|
|
|
validate: validate,
|
|
|
|
hooks: hooks,
|
2019-02-19 23:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *triggerer) Trigger(ctx context.Context, repo *core.Repository, base *core.Hook) (*core.Build, error) {
|
|
|
|
logger := logrus.WithFields(
|
|
|
|
logrus.Fields{
|
|
|
|
"repo": repo.Slug,
|
|
|
|
"ref": base.Ref,
|
|
|
|
"event": base.Event,
|
|
|
|
"commit": base.After,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
logger.Debugln("trigger: received")
|
|
|
|
defer func() {
|
|
|
|
// taking the paranoid approach to recover from
|
|
|
|
// a panic that should absolutely never happen.
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
logger.Errorf("runner: unexpected panic: %s", r)
|
|
|
|
debug.PrintStack()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if skipMessage(base) {
|
|
|
|
logger.Infoln("trigger: skipping hook. found skip directive")
|
|
|
|
return nil, nil
|
|
|
|
}
|
2019-02-21 19:10:56 +00:00
|
|
|
if base.Event == core.EventPullRequest {
|
|
|
|
if repo.IgnorePulls {
|
|
|
|
logger.Infoln("trigger: skipping hook. project ignores pull requests")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
if repo.IgnoreForks && !strings.EqualFold(base.Fork, repo.Slug) {
|
|
|
|
logger.Infoln("trigger: skipping hook. project ignores forks")
|
|
|
|
return nil, nil
|
|
|
|
}
|
2019-02-21 19:06:33 +00:00
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
user, err := t.users.Find(ctx, repo.UserID)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot find repository owner")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.Active == false {
|
|
|
|
logger.Infoln("trigger: skipping hook. repository owner is inactive")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the commit message is not included we should
|
|
|
|
// make an optional API call to the version control
|
|
|
|
// system to augment the available information.
|
|
|
|
if base.Message == "" && base.After != "" {
|
|
|
|
commit, err := t.commits.Find(ctx, user, repo.Slug, base.After)
|
|
|
|
if err == nil && commit != nil {
|
|
|
|
base.Message = commit.Message
|
|
|
|
if base.AuthorEmail == "" {
|
|
|
|
base.AuthorEmail = commit.Author.Email
|
|
|
|
}
|
|
|
|
if base.AuthorName == "" {
|
|
|
|
base.AuthorName = commit.Author.Name
|
|
|
|
}
|
|
|
|
if base.AuthorAvatar == "" {
|
|
|
|
base.AuthorAvatar = commit.Author.Avatar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// // some tag hooks provide the tag but do not provide the sha.
|
2019-02-22 17:01:11 +00:00
|
|
|
// // this may be important if we want to fetch the .drone.yml
|
2019-02-19 23:56:41 +00:00
|
|
|
// if base.After == "" && base.Event == core.EventTag {
|
|
|
|
// tag, _, err := t.client.Git.FindTag(ctx, repo.Slug, base.Ref)
|
|
|
|
// if err != nil {
|
|
|
|
// logger.Error().Err(err).
|
|
|
|
// Msg("cannot find tag")
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// base.After = tag.Sha
|
|
|
|
// }
|
|
|
|
|
|
|
|
// TODO: do a better job of documenting this
|
|
|
|
// obj := base.After
|
|
|
|
// if len(obj) == 0 {
|
|
|
|
// if strings.HasPrefix(base.Ref, "refs/pull/") {
|
|
|
|
// obj = base.Target
|
|
|
|
// } else {
|
|
|
|
// obj = base.Ref
|
|
|
|
// }
|
|
|
|
// }
|
2019-09-03 06:05:30 +00:00
|
|
|
tmpBuild := &core.Build{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Trigger: base.Trigger,
|
|
|
|
Parent: base.Parent,
|
|
|
|
Status: core.StatusPending,
|
|
|
|
Event: base.Event,
|
|
|
|
Action: base.Action,
|
|
|
|
Link: base.Link,
|
|
|
|
// Timestamp: base.Timestamp,
|
|
|
|
Title: base.Title,
|
|
|
|
Message: base.Message,
|
|
|
|
Before: base.Before,
|
|
|
|
After: base.After,
|
|
|
|
Ref: base.Ref,
|
|
|
|
Fork: base.Fork,
|
|
|
|
Source: base.Source,
|
|
|
|
Target: base.Target,
|
|
|
|
Author: base.Author,
|
|
|
|
AuthorName: base.AuthorName,
|
|
|
|
AuthorEmail: base.AuthorEmail,
|
|
|
|
AuthorAvatar: base.AuthorAvatar,
|
|
|
|
Params: base.Params,
|
|
|
|
Cron: base.Cron,
|
|
|
|
Deploy: base.Deployment,
|
|
|
|
DeployID: base.DeploymentID,
|
2020-11-09 20:32:17 +00:00
|
|
|
Debug: base.Debug,
|
2019-09-03 06:05:30 +00:00
|
|
|
Sender: base.Sender,
|
|
|
|
Created: time.Now().Unix(),
|
|
|
|
Updated: time.Now().Unix(),
|
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
req := &core.ConfigArgs{
|
2019-09-03 06:05:30 +00:00
|
|
|
User: user,
|
|
|
|
Repo: repo,
|
|
|
|
Build: tmpBuild,
|
2019-02-19 23:56:41 +00:00
|
|
|
}
|
|
|
|
raw, err := t.config.Find(ctx, req)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot find yaml")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-09-03 06:05:30 +00:00
|
|
|
raw, err = t.convert.Convert(ctx, &core.ConvertArgs{
|
|
|
|
User: user,
|
|
|
|
Repo: repo,
|
|
|
|
Build: tmpBuild,
|
|
|
|
Config: raw,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot convert yaml")
|
2019-09-21 00:08:25 +00:00
|
|
|
return t.createBuildError(ctx, repo, base, err.Error())
|
2019-09-03 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
// this code is temporarily in place to detect and convert
|
|
|
|
// the legacy yaml configuration file to the new format.
|
|
|
|
raw.Data, err = converter.ConvertString(raw.Data, converter.Metadata{
|
|
|
|
Filename: repo.Config,
|
2019-07-18 21:55:48 +00:00
|
|
|
URL: repo.Link,
|
2019-02-19 23:56:41 +00:00
|
|
|
Ref: base.Ref,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot convert yaml")
|
2019-09-21 00:08:25 +00:00
|
|
|
return t.createBuildError(ctx, repo, base, err.Error())
|
2019-02-19 23:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
manifest, err := yaml.ParseString(raw.Data)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot parse yaml")
|
|
|
|
return t.createBuildError(ctx, repo, base, err.Error())
|
|
|
|
}
|
|
|
|
|
2020-08-26 19:11:02 +00:00
|
|
|
verr := t.validate.Validate(ctx, &core.ValidateArgs{
|
2019-09-03 22:05:53 +00:00
|
|
|
User: user,
|
|
|
|
Repo: repo,
|
|
|
|
Build: tmpBuild,
|
|
|
|
Config: raw,
|
|
|
|
})
|
2020-08-26 19:11:02 +00:00
|
|
|
switch verr {
|
|
|
|
case core.ErrValidatorBlock:
|
2020-08-26 19:12:01 +00:00
|
|
|
logger.Debugln("trigger: yaml validation error: block pipeline")
|
2020-08-26 19:11:02 +00:00
|
|
|
case core.ErrValidatorSkip:
|
2020-08-26 19:12:01 +00:00
|
|
|
logger.Debugln("trigger: yaml validation error: skip pipeline")
|
2020-08-26 19:11:02 +00:00
|
|
|
return nil, nil
|
|
|
|
default:
|
|
|
|
if verr != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: yaml validation error")
|
|
|
|
return t.createBuildError(ctx, repo, base, verr.Error())
|
|
|
|
}
|
2019-09-03 22:05:53 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
err = linter.Manifest(manifest, repo.Trusted)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: yaml linting error")
|
|
|
|
return t.createBuildError(ctx, repo, base, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
verified := true
|
|
|
|
if repo.Protected && base.Trigger == core.TriggerHook {
|
|
|
|
key := signer.KeyString(repo.Secret)
|
|
|
|
val := []byte(raw.Data)
|
|
|
|
verified, _ = signer.Verify(val, key)
|
|
|
|
}
|
2020-08-26 19:11:02 +00:00
|
|
|
// if pipeline validation failed with a block error, the
|
|
|
|
// pipeline verification should be set to false, which will
|
|
|
|
// force manual review and approval.
|
|
|
|
if verr == core.ErrValidatorBlock {
|
|
|
|
verified = false
|
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
// var paths []string
|
|
|
|
// paths, err := listChanges(t.client, repo, base)
|
|
|
|
// if err != nil {
|
|
|
|
// logger.Warn().Err(err).
|
|
|
|
// Msg("cannot fetch changeset")
|
|
|
|
// }
|
|
|
|
|
|
|
|
var matched []*yaml.Pipeline
|
2019-04-20 00:20:40 +00:00
|
|
|
var dag = dag.New()
|
2019-02-19 23:56:41 +00:00
|
|
|
for _, document := range manifest.Resources {
|
|
|
|
pipeline, ok := document.(*yaml.Pipeline)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// TODO add repo
|
|
|
|
// TODO add instance
|
|
|
|
// TODO add target
|
|
|
|
// TODO add ref
|
2019-04-20 00:20:40 +00:00
|
|
|
name := pipeline.Name
|
|
|
|
if name == "" {
|
|
|
|
name = "default"
|
|
|
|
}
|
|
|
|
node := dag.Add(pipeline.Name, pipeline.DependsOn...)
|
|
|
|
node.Skip = true
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
if skipBranch(pipeline, base.Target) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match branch")
|
|
|
|
} else if skipEvent(pipeline, base.Event) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match event")
|
2019-06-25 02:48:46 +00:00
|
|
|
} else if skipAction(pipeline, base.Action) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name).WithField("action", base.Action)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match action")
|
2019-02-19 23:56:41 +00:00
|
|
|
} else if skipRef(pipeline, base.Ref) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match ref")
|
|
|
|
} else if skipRepo(pipeline, repo.Slug) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match repo")
|
|
|
|
} else if skipTarget(pipeline, base.Deployment) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match deploy target")
|
2019-04-13 19:40:50 +00:00
|
|
|
} else if skipCron(pipeline, base.Cron) {
|
|
|
|
logger = logger.WithField("pipeline", pipeline.Name)
|
|
|
|
logger.Infoln("trigger: skipping pipeline, does not match cron job")
|
2019-02-19 23:56:41 +00:00
|
|
|
} else {
|
|
|
|
matched = append(matched, pipeline)
|
2019-04-20 00:20:40 +00:00
|
|
|
node.Skip = false
|
2019-02-19 23:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 00:27:24 +00:00
|
|
|
if dag.DetectCycles() {
|
|
|
|
return t.createBuildError(ctx, repo, base, "Error: Dependency cycle detected in Pipeline")
|
|
|
|
}
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
if len(matched) == 0 {
|
|
|
|
logger.Infoln("trigger: skipping build, no matching pipelines")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
repo, err = t.repos.Increment(ctx, repo)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Errorln("trigger: cannot increment build sequence")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
build := &core.Build{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Trigger: base.Trigger,
|
|
|
|
Number: repo.Counter,
|
|
|
|
Parent: base.Parent,
|
|
|
|
Status: core.StatusPending,
|
|
|
|
Event: base.Event,
|
|
|
|
Action: base.Action,
|
|
|
|
Link: base.Link,
|
|
|
|
// Timestamp: base.Timestamp,
|
|
|
|
Title: trunc(base.Title, 2000),
|
|
|
|
Message: trunc(base.Message, 2000),
|
|
|
|
Before: base.Before,
|
|
|
|
After: base.After,
|
|
|
|
Ref: base.Ref,
|
|
|
|
Fork: base.Fork,
|
|
|
|
Source: base.Source,
|
|
|
|
Target: base.Target,
|
|
|
|
Author: base.Author,
|
|
|
|
AuthorName: base.AuthorName,
|
|
|
|
AuthorEmail: base.AuthorEmail,
|
|
|
|
AuthorAvatar: base.AuthorAvatar,
|
|
|
|
Params: base.Params,
|
|
|
|
Deploy: base.Deployment,
|
2019-08-26 19:26:09 +00:00
|
|
|
DeployID: base.DeploymentID,
|
2020-11-09 20:32:17 +00:00
|
|
|
Debug: base.Debug,
|
2019-02-19 23:56:41 +00:00
|
|
|
Sender: base.Sender,
|
2019-09-18 22:06:38 +00:00
|
|
|
Cron: base.Cron,
|
2019-02-19 23:56:41 +00:00
|
|
|
Created: time.Now().Unix(),
|
|
|
|
Updated: time.Now().Unix(),
|
|
|
|
}
|
|
|
|
|
|
|
|
stages := make([]*core.Stage, len(matched))
|
|
|
|
for i, match := range matched {
|
|
|
|
onSuccess := match.Trigger.Status.Match(core.StatusPassing)
|
|
|
|
onFailure := match.Trigger.Status.Match(core.StatusFailing)
|
|
|
|
if len(match.Trigger.Status.Include)+len(match.Trigger.Status.Exclude) == 0 {
|
|
|
|
onFailure = false
|
|
|
|
}
|
|
|
|
|
|
|
|
stage := &core.Stage{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Number: i + 1,
|
|
|
|
Name: match.Name,
|
2019-05-21 18:45:42 +00:00
|
|
|
Kind: match.Kind,
|
|
|
|
Type: match.Type,
|
2019-02-19 23:56:41 +00:00
|
|
|
OS: match.Platform.OS,
|
|
|
|
Arch: match.Platform.Arch,
|
|
|
|
Variant: match.Platform.Variant,
|
|
|
|
Kernel: match.Platform.Version,
|
|
|
|
Limit: match.Concurrency.Limit,
|
2020-12-11 18:57:49 +00:00
|
|
|
LimitRepo: int(repo.Throttle),
|
2019-02-19 23:56:41 +00:00
|
|
|
Status: core.StatusWaiting,
|
|
|
|
DependsOn: match.DependsOn,
|
|
|
|
OnSuccess: onSuccess,
|
|
|
|
OnFailure: onFailure,
|
|
|
|
Labels: match.Node,
|
|
|
|
Created: time.Now().Unix(),
|
|
|
|
Updated: time.Now().Unix(),
|
|
|
|
}
|
2019-05-21 18:45:42 +00:00
|
|
|
if stage.Kind == "pipeline" && stage.Type == "" {
|
|
|
|
stage.Type = "docker"
|
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
if stage.OS == "" {
|
|
|
|
stage.OS = "linux"
|
|
|
|
}
|
|
|
|
if stage.Arch == "" {
|
|
|
|
stage.Arch = "amd64"
|
|
|
|
}
|
|
|
|
|
|
|
|
if stage.Name == "" {
|
|
|
|
stage.Name = "default"
|
|
|
|
}
|
|
|
|
if verified == false {
|
|
|
|
stage.Status = core.StatusBlocked
|
|
|
|
} else if len(stage.DependsOn) == 0 {
|
|
|
|
stage.Status = core.StatusPending
|
|
|
|
}
|
|
|
|
stages[i] = stage
|
|
|
|
}
|
|
|
|
|
2019-04-20 00:20:40 +00:00
|
|
|
for _, stage := range stages {
|
2019-04-21 00:12:37 +00:00
|
|
|
// here we re-work the dependencies for the stage to
|
|
|
|
// account for the fact that some steps may be skipped
|
2019-10-21 12:56:35 +00:00
|
|
|
// and may otherwise break the dependency chain.
|
2019-04-21 00:12:37 +00:00
|
|
|
stage.DependsOn = dag.Dependencies(stage.Name)
|
|
|
|
|
|
|
|
// if the stage is pending dependencies, but those
|
|
|
|
// dependencies are skipped, the stage can be executed
|
|
|
|
// immediately.
|
|
|
|
if stage.Status == core.StatusWaiting &&
|
|
|
|
len(stage.DependsOn) == 0 {
|
2019-04-20 00:20:40 +00:00
|
|
|
stage.Status = core.StatusPending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
err = t.builds.Create(ctx, build, stages)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Errorln("trigger: cannot create build")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.status.Send(ctx, user, &core.StatusInput{
|
|
|
|
Repo: repo,
|
|
|
|
Build: build,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot create status")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, stage := range stages {
|
2019-04-20 00:20:40 +00:00
|
|
|
if stage.Status != core.StatusPending {
|
2019-02-19 23:56:41 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = t.sched.Schedule(ctx, stage)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Errorln("trigger: cannot enqueue build")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
payload := &core.WebhookData{
|
|
|
|
Event: core.WebhookEventBuild,
|
|
|
|
Action: core.WebhookActionCreated,
|
|
|
|
User: user,
|
|
|
|
Repo: repo,
|
|
|
|
Build: build,
|
|
|
|
}
|
|
|
|
err = t.hooks.Send(ctx, payload)
|
|
|
|
if err != nil {
|
|
|
|
logger = logger.WithError(err)
|
|
|
|
logger.Warnln("trigger: cannot send webhook")
|
|
|
|
}
|
2019-10-02 06:28:57 +00:00
|
|
|
|
|
|
|
if repo.CancelPush && build.Event == core.EventPush ||
|
|
|
|
repo.CancelPulls && build.Event == core.EventPullRequest {
|
|
|
|
go t.canceler.CancelPending(ctx, repo, build)
|
|
|
|
}
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
// err = t.hooks.SendEndpoint(ctx, payload, repo.Endpoints.Webhook)
|
|
|
|
// if err != nil {
|
|
|
|
// logger.Warn().Err(err).
|
|
|
|
// Int64("build", build.Number).
|
|
|
|
// Msg("cannot send user-defined webhook")
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // we should only synchronize the cronjob list on push
|
|
|
|
// // events to the default branch.
|
|
|
|
// if build.Event == core.EventPush &&
|
|
|
|
// build.Target == repo.Branch {
|
|
|
|
// err = t.cron.Sync(ctx, repo, manifest)
|
|
|
|
// if err != nil {
|
|
|
|
// logger.Warn().Err(err).
|
|
|
|
// Msg("cannot sync cronjobs")
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
return build, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func trunc(s string, i int) string {
|
|
|
|
runes := []rune(s)
|
|
|
|
if len(runes) > i {
|
|
|
|
return string(runes[:i])
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *triggerer) createBuildError(ctx context.Context, repo *core.Repository, base *core.Hook, message string) (*core.Build, error) {
|
|
|
|
repo, err := t.repos.Increment(ctx, repo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
build := &core.Build{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Number: repo.Counter,
|
|
|
|
Parent: base.Parent,
|
|
|
|
Status: core.StatusError,
|
|
|
|
Error: message,
|
|
|
|
Event: base.Event,
|
|
|
|
Action: base.Action,
|
|
|
|
Link: base.Link,
|
|
|
|
// Timestamp: base.Timestamp,
|
|
|
|
Title: base.Title,
|
|
|
|
Message: base.Message,
|
|
|
|
Before: base.Before,
|
|
|
|
After: base.After,
|
|
|
|
Ref: base.Ref,
|
|
|
|
Fork: base.Fork,
|
|
|
|
Source: base.Source,
|
|
|
|
Target: base.Target,
|
|
|
|
Author: base.Author,
|
|
|
|
AuthorName: base.AuthorName,
|
|
|
|
AuthorEmail: base.AuthorEmail,
|
|
|
|
AuthorAvatar: base.AuthorAvatar,
|
|
|
|
Deploy: base.Deployment,
|
2019-08-26 19:26:09 +00:00
|
|
|
DeployID: base.DeploymentID,
|
2020-11-09 20:32:17 +00:00
|
|
|
Debug: base.Debug,
|
2019-02-19 23:56:41 +00:00
|
|
|
Sender: base.Sender,
|
|
|
|
Created: time.Now().Unix(),
|
|
|
|
Updated: time.Now().Unix(),
|
2019-09-26 00:03:40 +00:00
|
|
|
Started: time.Now().Unix(),
|
2019-02-19 23:56:41 +00:00
|
|
|
Finished: time.Now().Unix(),
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.builds.Create(ctx, build, nil)
|
|
|
|
return build, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// func shouldBlock(repo *core.Repository, build *core.Build) bool {
|
|
|
|
// switch {
|
|
|
|
// case repo.Hooks.Promote == core.HookBlock && build.Event == core.EventPromote:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Rollback == core.HookBlock && build.Event == core.EventRollback:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Deploy == core.HookBlock && build.Event == core.EventRollback:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Pull == core.HookBlock && build.Event == core.EventPullRequest:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Push == core.HookBlock && build.Event == core.EventPush:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Tags == core.HookBlock && build.Event == core.EventTag:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Forks == core.HookBlock && build.Fork != repo.Slug:
|
|
|
|
// return true
|
|
|
|
// default:
|
|
|
|
// return false
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func skipHook(repo *core.Repository, build *core.Hook) bool {
|
|
|
|
// switch {
|
|
|
|
// case repo.Hooks.Promote == core.HookDisable && build.Event == core.EventPromote:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Rollback == core.HookDisable && build.Event == core.EventRollback:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Pull == core.HookDisable && build.Event == core.EventPullRequest:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Push == core.HookDisable && build.Event == core.EventPush:
|
|
|
|
// return true
|
|
|
|
// case repo.Hooks.Tags == core.HookDisable && build.Event == core.EventTag:
|
|
|
|
// return true
|
|
|
|
// default:
|
|
|
|
// return false
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func skipFork(repo *core.Repository, build *core.Hook) bool {
|
|
|
|
// return repo.Hooks.Forks == core.HookDisable && build.Fork != repo.Slug
|
|
|
|
// }
|