2019-02-20 18:34:26 +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-19 23:56:41 +00:00
|
|
|
|
|
|
|
package builds
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
2019-02-20 18:34:26 +00:00
|
|
|
"github.com/drone/drone/core"
|
2019-02-19 23:56:41 +00:00
|
|
|
"github.com/drone/drone/handler/api/render"
|
|
|
|
"github.com/drone/drone/handler/api/request"
|
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HandleRetry returns an http.HandlerFunc that processes http
|
|
|
|
// requests to retry and re-execute a build.
|
|
|
|
func HandleRetry(
|
|
|
|
repos core.RepositoryStore,
|
|
|
|
builds core.BuildStore,
|
|
|
|
triggerer core.Triggerer,
|
|
|
|
) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
namespace = chi.URLParam(r, "owner")
|
|
|
|
name = chi.URLParam(r, "name")
|
|
|
|
user, _ = request.UserFrom(r.Context())
|
|
|
|
)
|
|
|
|
number, err := strconv.ParseInt(chi.URLParam(r, "number"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
render.BadRequest(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repo, err := repos.FindName(r.Context(), namespace, name)
|
|
|
|
if err != nil {
|
|
|
|
render.NotFound(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
prev, err := builds.FindNumber(r.Context(), repo.ID, number)
|
|
|
|
if err != nil {
|
|
|
|
render.NotFound(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch prev.Status {
|
|
|
|
case core.StatusBlocked:
|
|
|
|
render.BadRequestf(w, "cannot start a blocked build")
|
|
|
|
return
|
|
|
|
case core.StatusDeclined:
|
|
|
|
render.BadRequestf(w, "cannot start a declined build")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
hook := &core.Hook{
|
2022-05-06 13:51:05 +00:00
|
|
|
Parent: prev.Number,
|
2019-02-19 23:56:41 +00:00
|
|
|
Trigger: user.Login,
|
|
|
|
Event: prev.Event,
|
|
|
|
Action: prev.Action,
|
|
|
|
Link: prev.Link,
|
|
|
|
Timestamp: prev.Timestamp,
|
|
|
|
Title: prev.Title,
|
|
|
|
Message: prev.Message,
|
|
|
|
Before: prev.Before,
|
|
|
|
After: prev.After,
|
|
|
|
Ref: prev.Ref,
|
2019-05-20 14:41:27 +00:00
|
|
|
Fork: prev.Fork,
|
2019-02-19 23:56:41 +00:00
|
|
|
Source: prev.Source,
|
|
|
|
Target: prev.Target,
|
|
|
|
Author: prev.Author,
|
|
|
|
AuthorName: prev.AuthorName,
|
|
|
|
AuthorEmail: prev.AuthorEmail,
|
|
|
|
AuthorAvatar: prev.AuthorAvatar,
|
2019-08-26 19:26:09 +00:00
|
|
|
Deployment: prev.Deploy,
|
|
|
|
DeploymentID: prev.DeployID,
|
2020-11-09 20:32:17 +00:00
|
|
|
Debug: r.FormValue("debug") == "true",
|
2019-09-03 23:07:30 +00:00
|
|
|
Cron: prev.Cron,
|
2019-02-19 23:56:41 +00:00
|
|
|
Sender: prev.Sender,
|
|
|
|
Params: map[string]string{},
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, value := range r.URL.Query() {
|
|
|
|
if key == "access_token" {
|
|
|
|
continue
|
|
|
|
}
|
2020-11-09 20:32:17 +00:00
|
|
|
if key == "debug" {
|
|
|
|
continue
|
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
if len(value) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
hook.Params[key] = value[0]
|
|
|
|
}
|
2020-07-29 23:57:28 +00:00
|
|
|
for key, value := range prev.Params {
|
|
|
|
hook.Params[key] = value
|
|
|
|
}
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
result, err := triggerer.Trigger(r.Context(), repo, hook)
|
|
|
|
if err != nil {
|
|
|
|
render.InternalError(w, err)
|
|
|
|
} else {
|
|
|
|
render.JSON(w, result, 200)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|