2018-02-20 00:24:10 +02:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2021-06-28 19:28:18 +02:00
|
|
|
// Copyright 2021 Informatyka Boguslawski sp. z o.o. sp.k., http://www.ib.pl/
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02:00
|
|
|
// 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
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02:00
|
|
|
// 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-06-28 19:28:18 +02:00
|
|
|
//
|
|
|
|
// This file has been modified by Informatyka Boguslawski sp. z o.o. sp.k.
|
2018-02-20 00:24:10 +02:00
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
package api
|
2015-04-09 00:43:59 +02:00
|
|
|
|
|
|
|
import (
|
2015-09-30 03:21:17 +02:00
|
|
|
"fmt"
|
2017-05-12 15:02:24 +02:00
|
|
|
"math/rand"
|
2019-06-28 08:29:57 +02:00
|
|
|
"net/http"
|
2017-03-16 12:14:02 +02:00
|
|
|
"regexp"
|
|
|
|
"time"
|
2016-01-11 01:19:48 +02:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-10-12 09:25:13 +02:00
|
|
|
"github.com/rs/zerolog/log"
|
2017-03-16 12:14:02 +02:00
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server"
|
2021-10-12 09:25:13 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2022-06-15 21:33:29 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/pipeline"
|
2021-09-23 13:33:59 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/store"
|
2021-10-12 09:25:13 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/shared/token"
|
2015-04-09 00:43:59 +02:00
|
|
|
)
|
|
|
|
|
2017-03-16 12:14:02 +02:00
|
|
|
var skipRe = regexp.MustCompile(`\[(?i:ci *skip|skip *ci)\]`)
|
|
|
|
|
2017-05-12 15:02:24 +02:00
|
|
|
func init() {
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
}
|
|
|
|
|
2017-03-16 12:14:02 +02:00
|
|
|
func GetQueueInfo(c *gin.Context) {
|
|
|
|
c.IndentedJSON(200,
|
2021-09-22 20:48:01 +02:00
|
|
|
server.Config.Services.Queue.Info(c),
|
2017-03-16 12:14:02 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:29:57 +02:00
|
|
|
func PauseQueue(c *gin.Context) {
|
2021-09-22 20:48:01 +02:00
|
|
|
server.Config.Services.Queue.Pause()
|
2019-06-28 08:29:57 +02:00
|
|
|
c.Status(http.StatusOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ResumeQueue(c *gin.Context) {
|
2021-09-22 20:48:01 +02:00
|
|
|
server.Config.Services.Queue.Resume()
|
2019-06-28 08:29:57 +02:00
|
|
|
c.Status(http.StatusOK)
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:42:06 +02:00
|
|
|
func BlockTilQueueHasRunningItem(c *gin.Context) {
|
|
|
|
for {
|
2021-09-22 20:48:01 +02:00
|
|
|
info := server.Config.Services.Queue.Info(c)
|
2019-06-28 08:42:06 +02:00
|
|
|
if info.Stats.Running == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c.Status(http.StatusOK)
|
|
|
|
}
|
|
|
|
|
2022-06-15 21:33:29 +02:00
|
|
|
// PostHook start a pipeline triggered by a forges post webhook
|
2015-04-09 00:43:59 +02:00
|
|
|
func PostHook(c *gin.Context) {
|
2021-12-01 15:22:06 +02:00
|
|
|
_store := store.FromContext(c)
|
2015-04-09 00:43:59 +02:00
|
|
|
|
2022-06-15 21:33:29 +02:00
|
|
|
tmpRepo, tmpBuild, err := server.Config.Services.Remote.Hook(c, c.Request)
|
2015-04-09 00:43:59 +02:00
|
|
|
if err != nil {
|
2021-12-18 01:09:09 +02:00
|
|
|
msg := "failure to parse hook"
|
|
|
|
log.Debug().Err(err).Msg(msg)
|
2021-12-18 15:58:01 +02:00
|
|
|
c.String(http.StatusBadRequest, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
2022-06-15 21:33:29 +02:00
|
|
|
if tmpBuild == nil {
|
2021-12-18 15:58:01 +02:00
|
|
|
msg := "ignoring hook: hook parsing resulted in empty build"
|
|
|
|
log.Debug().Msg(msg)
|
|
|
|
c.String(http.StatusOK, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
2021-09-27 23:32:08 +02:00
|
|
|
if tmpRepo == nil {
|
2021-12-18 15:58:01 +02:00
|
|
|
msg := "failure to ascertain repo from hook"
|
|
|
|
log.Debug().Msg(msg)
|
|
|
|
c.String(http.StatusBadRequest, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-15 21:33:29 +02:00
|
|
|
// skip the tmpBuild if any case-insensitive combination of the words "skip" and "ci"
|
2015-12-11 02:44:14 +02:00
|
|
|
// wrapped in square brackets appear in the commit message
|
2022-06-15 21:33:29 +02:00
|
|
|
skipMatch := skipRe.FindString(tmpBuild.Message)
|
2015-12-11 03:12:27 +02:00
|
|
|
if len(skipMatch) > 0 {
|
2022-06-15 21:33:29 +02:00
|
|
|
msg := fmt.Sprintf("ignoring hook: %s found in %s", skipMatch, tmpBuild.Commit)
|
2021-12-18 01:09:09 +02:00
|
|
|
log.Debug().Msg(msg)
|
|
|
|
c.String(http.StatusNoContent, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-01 15:22:06 +02:00
|
|
|
repo, err := _store.GetRepoName(tmpRepo.Owner + "/" + tmpRepo.Name)
|
2015-04-09 00:43:59 +02:00
|
|
|
if err != nil {
|
2021-12-18 15:58:01 +02:00
|
|
|
msg := fmt.Sprintf("failure to get repo %s from store", tmpRepo.FullName)
|
2021-12-18 01:09:09 +02:00
|
|
|
log.Error().Err(err).Msg(msg)
|
2021-12-18 15:58:01 +02:00
|
|
|
c.String(http.StatusNotFound, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
2017-07-14 21:58:38 +02:00
|
|
|
if !repo.IsActive {
|
2021-12-18 15:58:01 +02:00
|
|
|
msg := fmt.Sprintf("ignoring hook: repo %s is inactive", tmpRepo.FullName)
|
|
|
|
log.Debug().Msg(msg)
|
|
|
|
c.String(http.StatusNoContent, msg)
|
2017-07-14 21:58:38 +02:00
|
|
|
return
|
|
|
|
}
|
2015-04-09 00:43:59 +02:00
|
|
|
|
2015-08-11 10:36:07 +02:00
|
|
|
// get the token and verify the hook is authorized
|
2021-12-18 01:09:09 +02:00
|
|
|
parsed, err := token.ParseRequest(c.Request, func(_ *token.Token) (string, error) {
|
2015-09-09 23:05:52 +02:00
|
|
|
return repo.Hash, nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2021-12-18 01:09:09 +02:00
|
|
|
msg := fmt.Sprintf("failure to parse token from hook for %s", repo.FullName)
|
|
|
|
log.Error().Err(err).Msg(msg)
|
2021-12-18 15:58:01 +02:00
|
|
|
c.String(http.StatusBadRequest, msg)
|
2015-09-09 23:05:52 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if parsed.Text != repo.FullName {
|
2021-12-18 01:09:09 +02:00
|
|
|
msg := fmt.Sprintf("failure to verify token from hook. Expected %s, got %s", repo.FullName, parsed.Text)
|
|
|
|
log.Debug().Msg(msg)
|
|
|
|
c.String(http.StatusForbidden, msg)
|
2015-08-11 10:36:07 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
if repo.UserID == 0 {
|
2021-12-18 01:09:09 +02:00
|
|
|
msg := fmt.Sprintf("ignoring hook. repo %s has no owner.", repo.FullName)
|
|
|
|
log.Warn().Msg(msg)
|
|
|
|
c.String(http.StatusNoContent, msg)
|
2015-04-12 00:46:30 +02:00
|
|
|
return
|
2015-09-30 03:21:17 +02:00
|
|
|
}
|
|
|
|
|
2022-06-15 21:33:29 +02:00
|
|
|
if tmpBuild.Event == model.EventPull && !repo.AllowPull {
|
2021-12-18 01:09:09 +02:00
|
|
|
msg := "ignoring hook: pull requests are disabled for this repo in woodpecker"
|
|
|
|
log.Debug().Str("repo", repo.FullName).Msg(msg)
|
|
|
|
c.String(http.StatusNoContent, msg)
|
2015-04-09 00:43:59 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-15 21:33:29 +02:00
|
|
|
build, err := pipeline.Create(c, _store, repo, tmpBuild)
|
2015-04-09 00:43:59 +02:00
|
|
|
if err != nil {
|
2022-06-15 21:33:29 +02:00
|
|
|
handlePipelineErr(c, err)
|
|
|
|
} else {
|
|
|
|
c.JSON(200, build)
|
2019-06-11 10:50:50 +02:00
|
|
|
}
|
2017-05-05 18:59:37 +02:00
|
|
|
}
|