mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
Set correct Content-Type headers on each endpoint rather than on the router. The router would, at times, send two Content-Type headers and other times just send the wrong one.
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package download
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/gomods/athens/pkg/download/mode"
|
|
"github.com/gomods/athens/pkg/errors"
|
|
"github.com/gomods/athens/pkg/log"
|
|
"github.com/gomods/athens/pkg/paths"
|
|
)
|
|
|
|
// PathLatest URL.
|
|
const PathLatest = "/{module:.+}/@latest"
|
|
|
|
// LatestHandler implements GET baseURL/module/@latest.
|
|
func LatestHandler(dp Protocol, lggr log.Entry, df *mode.DownloadFile) http.Handler {
|
|
const op errors.Op = "download.LatestHandler"
|
|
f := func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
|
mod, err := paths.GetModule(r)
|
|
if err != nil {
|
|
lggr.SystemErr(errors.E(op, err))
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
info, err := dp.Latest(r.Context(), mod)
|
|
if err != nil {
|
|
severityLevel := errors.Expect(err, errors.KindNotFound)
|
|
err = errors.E(op, err, severityLevel)
|
|
lggr.SystemErr(err)
|
|
w.WriteHeader(errors.Kind(err))
|
|
return
|
|
}
|
|
|
|
if err = json.NewEncoder(w).Encode(info); err != nil {
|
|
lggr.SystemErr(errors.E(op, err))
|
|
}
|
|
}
|
|
return http.HandlerFunc(f)
|
|
}
|