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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
package http
import (
"fmt"
"io"
"net/http"
"strings"
"gopkg.in/src-d/go-git.v4/clients/common"
"gopkg.in/src-d/go-git.v4/core"
"gopkg.in/src-d/go-git.v4/formats/pktline"
)
type GitUploadPackService struct {
client *http.Client
endpoint common.Endpoint
auth HTTPAuthMethod
}
func NewGitUploadPackService(endpoint common.Endpoint) common.GitUploadPackService {
return &GitUploadPackService{
client: http.DefaultClient,
endpoint: endpoint,
}
}
func (s *GitUploadPackService) Connect() error {
return nil
}
func (s *GitUploadPackService) ConnectWithAuth(auth common.AuthMethod) error {
httpAuth, ok := auth.(HTTPAuthMethod)
if !ok {
return common.ErrInvalidAuthMethod
}
s.auth = httpAuth
return nil
}
func (s *GitUploadPackService) Info() (*common.GitUploadPackInfo, error) {
url := fmt.Sprintf(
"%s/info/refs?service=%s",
s.endpoint.String(), common.GitUploadPackServiceName,
)
res, err := s.doRequest("GET", url, nil)
if err != nil {
return nil, err
}
defer res.Body.Close()
i := common.NewGitUploadPackInfo()
return i, i.Decode(pktline.NewDecoder(res.Body))
}
func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (io.ReadCloser, error) {
url := fmt.Sprintf(
"%s/%s",
s.endpoint.String(), common.GitUploadPackServiceName,
)
res, err := s.doRequest("POST", url, r.Reader())
if err != nil {
return nil, err
}
if err := s.discardResponseInfo(res.Body); err != nil {
return nil, err
}
return res.Body, nil
}
func (s *GitUploadPackService) discardResponseInfo(r io.Reader) error {
decoder := pktline.NewDecoder(r)
for {
line, err := decoder.ReadLine()
if err != nil {
break
}
if line == "NAK\n" {
break
}
}
return nil
}
func (s *GitUploadPackService) doRequest(method, url string, content *strings.Reader) (*http.Response, error) {
var body io.Reader
if content != nil {
body = content
}
req, err := http.NewRequest(method, url, body)
if err != nil {
return nil, core.NewPermanentError(err)
}
s.applyHeadersToRequest(req, content)
s.applyAuthToRequest(req)
res, err := s.client.Do(req)
if err != nil {
return nil, core.NewUnexpectedError(err)
}
if err := NewHTTPError(res); err != nil {
return nil, err
}
return res, nil
}
func (s *GitUploadPackService) applyHeadersToRequest(req *http.Request, content *strings.Reader) {
req.Header.Add("User-Agent", "git/1.0")
req.Header.Add("Host", "github.com")
if content == nil {
req.Header.Add("Accept", "*/*")
} else {
req.Header.Add("Accept", "application/x-git-upload-pack-result")
req.Header.Add("Content-Type", "application/x-git-upload-pack-request")
req.Header.Add("Content-Length", string(content.Len()))
}
}
func (s *GitUploadPackService) applyAuthToRequest(req *http.Request) {
if s.auth == nil {
return
}
s.auth.setAuth(req)
}
|