blob: 8d5af2ffe4849b39d7750435fdd3948c01afb62c [file] [log] [blame]
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package frontend
import (
"fmt"
"net/http"
"net/url"
"strings"
)
type badgePage struct {
basePage
// SiteURL is hostname, including a https:// prefix.
SiteURL string
// LinkPath is the URL path of the badge will link to.
LinkPath string
// BadgePath is the URL path of the badge SVG.
BadgePath string
}
// badgeHandler serves a Go SVG badge image for requests to /badge/<path>
// and a badge generation tool page for requests to /badge/[?path=<path>].
func (s *Server) badgeHandler(w http.ResponseWriter, r *http.Request) {
path := strings.TrimPrefix(r.URL.Path, "/badge/")
if path != "" {
http.ServeFile(w, r, fmt.Sprintf("%s/img/badge.svg", s.staticPath))
return
}
// The user may input a fully qualified URL (https://pkg.go.dev/net/http)
// or just a pathname (net/http). Using url.Parse we handle both cases.
inputURL := r.URL.Query().Get("path")
parsedURL, _ := url.Parse(inputURL)
if parsedURL != nil {
path = strings.TrimPrefix(parsedURL.RequestURI(), "/")
}
page := badgePage{
basePage: s.newBasePage(r, "Badge generation tool"),
SiteURL: "https://" + r.Host,
LinkPath: path,
BadgePath: "badge/" + path + ".svg",
}
s.servePage(r.Context(), w, "badge.tmpl", page)
}