summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/repo/status.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2021-07-13 09:14:14 +0200
committerGitHub <noreply@github.com>2021-07-13 08:14:14 +0100
commitb81106be3faadf7821c30b18fb1cec6c27041896 (patch)
tree4e6198ec7013999bf8c85d79a00c4c14ea55c07a /routers/api/v1/repo/status.go
parent4ce32c9e93591f2449a388201c323ca193f59c07 (diff)
downloadgitea-b81106be3faadf7821c30b18fb1cec6c27041896.tar.gz
gitea-b81106be3faadf7821c30b18fb1cec6c27041896.zip
Let branch/tag name be a valid ref to get CI status (#16400)
* fix #16384# * refactor: move shared helper func to utils package * extend Tests * use ctx.Repo.GitRepo if not nil
Diffstat (limited to 'routers/api/v1/repo/status.go')
-rw-r--r--routers/api/v1/repo/status.go35
1 files changed, 5 insertions, 30 deletions
diff --git a/routers/api/v1/repo/status.go b/routers/api/v1/repo/status.go
index 7ab399b572..95c3f00a72 100644
--- a/routers/api/v1/repo/status.go
+++ b/routers/api/v1/repo/status.go
@@ -171,39 +171,14 @@ func GetCommitStatusesByRef(ctx *context.APIContext) {
// "400":
// "$ref": "#/responses/error"
- filter := ctx.Params("ref")
- if len(filter) == 0 {
- ctx.Error(http.StatusBadRequest, "ref not given", nil)
+ filter := utils.ResolveRefOrSha(ctx, ctx.Params("ref"))
+ if ctx.Written() {
return
}
- for _, reftype := range []string{"heads", "tags"} { //Search branches and tags
- refSHA, lastMethodName, err := searchRefCommitByType(ctx, reftype, filter)
- if err != nil {
- ctx.Error(http.StatusInternalServerError, lastMethodName, err)
- return
- }
- if refSHA != "" {
- filter = refSHA
- break
- }
-
- }
-
getCommitStatuses(ctx, filter) //By default filter is maybe the raw SHA
}
-func searchRefCommitByType(ctx *context.APIContext, refType, filter string) (string, string, error) {
- refs, lastMethodName, err := getGitRefs(ctx, refType+"/"+filter) //Search by type
- if err != nil {
- return "", lastMethodName, err
- }
- if len(refs) > 0 {
- return refs[0].Object.String(), "", nil //Return found SHA
- }
- return "", "", nil
-}
-
func getCommitStatuses(ctx *context.APIContext, sha string) {
if len(sha) == 0 {
ctx.Error(http.StatusBadRequest, "ref/sha not given", nil)
@@ -272,11 +247,11 @@ func GetCombinedCommitStatusByRef(ctx *context.APIContext) {
// "400":
// "$ref": "#/responses/error"
- sha := ctx.Params("ref")
- if len(sha) == 0 {
- ctx.Error(http.StatusBadRequest, "ref/sha not given", nil)
+ sha := utils.ResolveRefOrSha(ctx, ctx.Params("ref"))
+ if ctx.Written() {
return
}
+
repo := ctx.Repo.Repository
statuses, err := models.GetLatestCommitStatus(repo.ID, sha, utils.GetListOptions(ctx))