Home

ugit @13a3d903d870fc099bf186483078e8b9532bb664 - refs - log -
-
https://git.jolheiser.com/ugit.git
The code powering this h*ckin' site
ugit / internal / http / git.go
- raw
 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
package http

import (
	"errors"
	"net/http"
	"path/filepath"

	"go.jolheiser.com/ugit/internal/git"
	"go.jolheiser.com/ugit/internal/http/httperr"

	"github.com/go-chi/chi/v5"
)

func (rh repoHandler) infoRefs(w http.ResponseWriter, r *http.Request) error {
	if r.URL.Query().Get("service") != "git-upload-pack" {
		return httperr.Status(errors.New("pushing isn't supported via HTTP(S), use SSH"), http.StatusBadRequest)
	}

	w.Header().Set("Content-Type", "application/x-git-upload-pack-advertisement")
	rp := filepath.Join(rh.s.RepoDir, chi.URLParam(r, "repo")+".git")
	repo, err := git.NewProtocol(rp)
	if err != nil {
		return httperr.Error(err)
	}
	if err := repo.HTTPInfoRefs(Session{
		w: w,
		r: r,
	}); err != nil {
		return httperr.Error(err)
	}

	return nil
}

func (rh repoHandler) uploadPack(w http.ResponseWriter, r *http.Request) error {
	w.Header().Set("content-type", "application/x-git-upload-pack-result")
	rp := filepath.Join(rh.s.RepoDir, chi.URLParam(r, "repo")+".git")
	repo, err := git.NewProtocol(rp)
	if err != nil {
		return httperr.Error(err)
	}
	if err := repo.HTTPUploadPack(Session{
		w: w,
		r: r,
	}); err != nil {
		return httperr.Error(err)
	}

	return nil
}