harness-drone/handler/api/ccmenu/ccmenu.go
2019-02-28 12:49:04 -08:00

48 lines
1,016 B
Go

// 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.
// +build !oss
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)
}
}