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

request.go « serving « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 694d0df4fda4f7ff198244780c5a2b0302c45e8b (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
package serving

import "net/http"

// Request is a type that aggregates a serving itself, project lookup path and
// a request subpath based on an incoming request to serve page.
type Request struct {
	Serving    Serving     // Serving chosen to serve this request
	LookupPath *LookupPath // LookupPath contains pages project details
	SubPath    string      // Subpath is a URL path subcomponent for this request
}

// ServeFileHTTP forwards serving request handler to the serving itself
func (s *Request) ServeFileHTTP(w http.ResponseWriter, r *http.Request) bool {
	handler := Handler{
		Writer:     w,
		Request:    r,
		LookupPath: s.LookupPath,
		SubPath:    s.SubPath,
	}

	return s.Serving.ServeFileHTTP(handler)
}

// ServeNotFoundHTTP forwards serving request handler to the serving itself
func (s *Request) ServeNotFoundHTTP(w http.ResponseWriter, r *http.Request) {
	handler := Handler{
		Writer:     w,
		Request:    r,
		LookupPath: s.LookupPath,
		SubPath:    s.SubPath,
	}

	s.Serving.ServeNotFoundHTTP(handler)
}