summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/internal/vcweb/git.go
blob: d1e0563bede03378562ca3105c5472b97107ef2f (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package vcweb

import (
	"log"
	"net/http"
	"net/http/cgi"
	"os/exec"
	"runtime"
	"slices"
	"sync"
)

type gitHandler struct {
	once       sync.Once
	gitPath    string
	gitPathErr error
}

func (h *gitHandler) Available() bool {
	if runtime.GOOS == "plan9" {
		// The Git command is usually not the real Git on Plan 9.
		// See https://golang.org/issues/29640.
		return false
	}
	h.once.Do(func() {
		h.gitPath, h.gitPathErr = exec.LookPath("git")
	})
	return h.gitPathErr == nil
}

func (h *gitHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
	if !h.Available() {
		return nil, ServerNotInstalledError{name: "git"}
	}

	baseEnv := append(slices.Clip(env),
		"GIT_PROJECT_ROOT="+dir,
		"GIT_HTTP_EXPORT_ALL=1",
	)

	handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
		// The Git client sends the requested Git protocol version as a
		// "Git-Protocol" HTTP request header, which the CGI host then converts
		// to an environment variable (HTTP_GIT_PROTOCOL).
		//
		// However, versions of Git older that 2.34.0 don't recognize the
		// HTTP_GIT_PROTOCOL variable, and instead need that value to be set in the
		// GIT_PROTOCOL variable. We do so here so that vcweb can work reliably
		// with older Git releases. (As of the time of writing, the Go project's
		// builders were on Git version 2.30.2.)
		env := slices.Clip(baseEnv)
		if p := req.Header.Get("Git-Protocol"); p != "" {
			env = append(env, "GIT_PROTOCOL="+p)
		}

		h := &cgi.Handler{
			Path:   h.gitPath,
			Logger: logger,
			Args:   []string{"http-backend"},
			Dir:    dir,
			Env:    env,
		}
		h.ServeHTTP(w, req)
	})

	return handler, nil
}