mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* feat: add golangci-lint linting * chore: fix linter issues * feat: add linting into the workflow * docs: update lint docs * fix: cr suggestions * fix: remove old formatting and vetting scripts * fix: add docker make target * fix: action go caching * fix: depreciated actions checkout version * fix: cr suggestion * fix: cr suggestions --------- Co-authored-by: Manu Gupta <manugupt1@gmail.com>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package download
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gomods/athens/pkg/download/mode"
|
|
"github.com/gomods/athens/pkg/errors"
|
|
"github.com/gomods/athens/pkg/log"
|
|
)
|
|
|
|
// PathVersionInfo URL.
|
|
const PathVersionInfo = "/{module:.+}/@v/{version}.info"
|
|
|
|
// InfoHandler implements GET baseURL/module/@v/version.info.
|
|
func InfoHandler(dp Protocol, lggr log.Entry, df *mode.DownloadFile) http.Handler {
|
|
const op errors.Op = "download.InfoHandler"
|
|
f := func(w http.ResponseWriter, r *http.Request) {
|
|
mod, ver, err := getModuleParams(r, op)
|
|
if err != nil {
|
|
lggr.SystemErr(err)
|
|
w.WriteHeader(errors.Kind(err))
|
|
return
|
|
}
|
|
info, err := dp.Info(r.Context(), mod, ver)
|
|
if err != nil {
|
|
severityLevel := errors.Expect(err, errors.KindNotFound, errors.KindRedirect)
|
|
lggr.SystemErr(errors.E(op, err, errors.M(mod), errors.V(ver), severityLevel))
|
|
if errors.Kind(err) == errors.KindRedirect {
|
|
url, err := getRedirectURL(df.URL(mod), r.URL.Path)
|
|
if err != nil {
|
|
lggr.SystemErr(err)
|
|
w.WriteHeader(errors.Kind(err))
|
|
return
|
|
}
|
|
http.Redirect(w, r, url, errors.KindRedirect)
|
|
return
|
|
}
|
|
w.WriteHeader(errors.Kind(err))
|
|
}
|
|
|
|
_, _ = w.Write(info)
|
|
}
|
|
return http.HandlerFunc(f)
|
|
}
|