2019-02-19 23:56:41 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-03-13 21:47:47 +00:00
|
|
|
// +build !oss
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
package builds
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/drone/drone/core"
|
2019-03-13 21:47:47 +00:00
|
|
|
"github.com/drone/drone/handler/api/render"
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HandlePurge returns an http.HandlerFunc that purges the
|
|
|
|
// build history. If successful a 204 status code is returned.
|
|
|
|
func HandlePurge(repos core.RepositoryStore, builds core.BuildStore) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
namespace = chi.URLParam(r, "owner")
|
|
|
|
name = chi.URLParam(r, "name")
|
|
|
|
before = r.FormValue("before")
|
|
|
|
)
|
|
|
|
number, err := strconv.ParseInt(before, 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
|
|
|
|
}
|
|
|
|
err = builds.Purge(r.Context(), repo.ID, number)
|
|
|
|
if err != nil {
|
|
|
|
render.InternalError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
}
|
|
|
|
}
|