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

acme.go « handlers « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 258aaebe730e6d1b3a908ec9b894063d1757ad7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package handlers

import (
	"errors"
	"net/http"
	"net/url"

	"gitlab.com/gitlab-org/gitlab-pages/internal/acme"
	"gitlab.com/gitlab-org/gitlab-pages/internal/domain"
	"gitlab.com/gitlab-org/gitlab-pages/internal/httperrors"
	"gitlab.com/gitlab-org/gitlab-pages/internal/logging"
	"gitlab.com/gitlab-org/gitlab-pages/internal/request"
	"gitlab.com/gitlab-org/gitlab-pages/internal/source"
)

func AcmeMiddleware(handler http.Handler, s source.Source, gitlabURL string) http.Handler {
	if gitlabURL == "" {
		return handler
	}

	u, _ := url.Parse(gitlabURL)
	fn := serveFromDomain(s)

	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		if acme.ServeAcmeChallenges(w, r, fn, u) {
			return
		}

		handler.ServeHTTP(w, r)
	})
}

func serveFromDomain(s source.Source) acme.FallbackStrategy {
	return func(w http.ResponseWriter, r *http.Request) bool {
		d, err := s.GetDomain(r.Context(), request.GetHostWithoutPort(r))

		if err != nil && !errors.Is(err, domain.ErrDomainDoesNotExist) {
			logging.LogRequest(r).WithError(err).Error("could not fetch domain information from a source")

			httperrors.Serve502(w)
			return true
		}

		return d.ServeFileHTTP(w, r)
	}
}