2019-05-10 09:08:24 +00:00
|
|
|
// Copyright 2019 Sorint.lab
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2019-07-01 09:40:20 +00:00
|
|
|
"agola.io/agola/internal/services/gateway/action"
|
|
|
|
"agola.io/agola/internal/util"
|
2022-02-21 11:19:55 +00:00
|
|
|
|
2019-05-10 09:08:24 +00:00
|
|
|
"github.com/gorilla/mux"
|
2022-02-21 17:07:58 +00:00
|
|
|
"github.com/rs/zerolog"
|
2019-05-10 09:08:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type BadgeHandler struct {
|
2022-02-21 17:07:58 +00:00
|
|
|
log zerolog.Logger
|
2019-05-10 09:08:24 +00:00
|
|
|
ah *action.ActionHandler
|
|
|
|
}
|
|
|
|
|
2022-02-21 17:07:58 +00:00
|
|
|
func NewBadgeHandler(log zerolog.Logger, ah *action.ActionHandler) *BadgeHandler {
|
|
|
|
return &BadgeHandler{log: log, ah: ah}
|
2019-05-10 09:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *BadgeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
query := r.URL.Query()
|
|
|
|
|
|
|
|
projectRef, err := url.PathUnescape(vars["projectref"])
|
|
|
|
if err != nil {
|
2022-02-21 11:19:55 +00:00
|
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
2019-05-10 09:08:24 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
branch := query.Get("branch")
|
|
|
|
|
|
|
|
badge, err := h.ah.GetBadge(ctx, projectRef, branch)
|
2022-02-21 11:19:55 +00:00
|
|
|
if util.HTTPError(w, err) {
|
2022-02-21 17:07:58 +00:00
|
|
|
h.log.Err(err).Send()
|
2019-05-10 09:08:24 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(sgotti) return some caching headers
|
|
|
|
w.Header().Set("Content-Type", "image/svg+xml")
|
|
|
|
w.Header().Set("Cache-Control", "no-cache")
|
|
|
|
|
|
|
|
if _, err := w.Write([]byte(badge)); err != nil {
|
2022-02-21 17:07:58 +00:00
|
|
|
h.log.Err(err).Send()
|
2019-05-10 09:08:24 +00:00
|
|
|
}
|
|
|
|
}
|