harness-drone/handler/api/ccmenu/ccmenu.go

49 lines
1,016 B
Go
Raw Normal View History

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-02-28 20:49:04 +00:00
// +build !oss
2019-02-19 23:56:41 +00:00
package ccmenu
import (
"encoding/xml"
"fmt"
"net/http"
"github.com/drone/drone/core"
"github.com/go-chi/chi"
)
// Handler returns an http.HandlerFunc that writes an svg status
// badge to the response.
func Handler(
repos core.RepositoryStore,
builds core.BuildStore,
link string,
) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
namespace := chi.URLParam(r, "owner")
name := chi.URLParam(r, "name")
repo, err := repos.FindName(r.Context(), namespace, name)
if err != nil {
w.WriteHeader(404)
return
}
build, err := builds.FindNumber(r.Context(), repo.ID, repo.Counter)
if err != nil {
w.WriteHeader(404)
return
}
project := New(repo, build,
fmt.Sprintf("%s/%s/%s/%d", link, namespace, name, build.Number),
)
xml.NewEncoder(w).Encode(project)
}
}