Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-05-04 00:30:34 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-05-05 13:57:09 +0300
commit5da5ac23e2757995661e3ac71c7a1011689e0ace (patch)
treeb94c3c93c6ea653cbccc003f80f35b9514593629 /app.go
parent40528a5463f155f70d33dac3573199c0ba3e599d (diff)
Abstract artifact handling to a separate middleware
Diffstat (limited to 'app.go')
-rw-r--r--app.go10
1 files changed, 3 insertions, 7 deletions
diff --git a/app.go b/app.go
index 31212460..2fa100fe 100644
--- a/app.go
+++ b/app.go
@@ -113,11 +113,7 @@ func (a *theApp) checkAuthAndServeNotFound(domain *domain.Domain, w http.Respons
domain.ServeNotFoundAuthFailed(w, r)
}
-func (a *theApp) tryAuxiliaryHandlers(w http.ResponseWriter, r *http.Request, https bool, host string, domain *domain.Domain) bool {
- if a.Handlers.HandleArtifactRequest(host, w, r) {
- return true
- }
-
+func (a *theApp) tryAuxiliaryHandlers(w http.ResponseWriter, r *http.Request, https bool, domain *domain.Domain) bool {
if _, err := domain.GetLookupPath(r); err != nil {
if errors.Is(err, gitlab.ErrDiskDisabled) {
errortracking.CaptureErrWithReqAndStackTrace(err, r)
@@ -142,11 +138,10 @@ func (a *theApp) tryAuxiliaryHandlers(w http.ResponseWriter, r *http.Request, ht
// not static-content responses
func (a *theApp) auxiliaryMiddleware(handler http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- host := domain.GetHost(r)
domain := domain.FromRequest(r)
https := request.IsHTTPS(r)
- if a.tryAuxiliaryHandlers(w, r, https, host, domain) {
+ if a.tryAuxiliaryHandlers(w, r, https, domain) {
return
}
@@ -208,6 +203,7 @@ func (a *theApp) buildHandlerPipeline() (http.Handler, error) {
}
handler = a.Auth.AuthorizationMiddleware(handler)
handler = a.auxiliaryMiddleware(handler)
+ handler = handlers.ArtifactMiddleware(handler, a.Handlers)
handler = a.Auth.AuthenticationMiddleware(handler, a.source)
handler = a.AcmeMiddleware.AcmeMiddleware(handler)