forked from cli/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp.go
More file actions
42 lines (37 loc) · 1.08 KB
/
http.go
File metadata and controls
42 lines (37 loc) · 1.08 KB
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
package sync
import (
"bytes"
"encoding/json"
"fmt"
"github.com/cli/cli/api"
"github.com/cli/cli/internal/ghrepo"
)
type commit struct {
Ref string `json:"ref"`
NodeID string `json:"node_id"`
URL string `json:"url"`
Object struct {
Type string `json:"type"`
SHA string `json:"sha"`
URL string `json:"url"`
} `json:"object"`
}
func latestCommit(client *api.Client, repo ghrepo.Interface, branch string) (commit, error) {
var response commit
path := fmt.Sprintf("repos/%s/%s/git/refs/heads/%s", repo.RepoOwner(), repo.RepoName(), branch)
err := client.REST(repo.RepoHost(), "GET", path, nil, &response)
return response, err
}
func syncFork(client *api.Client, repo ghrepo.Interface, branch, SHA string, force bool) error {
path := fmt.Sprintf("repos/%s/%s/git/refs/heads/%s", repo.RepoOwner(), repo.RepoName(), branch)
body := map[string]interface{}{
"sha": SHA,
"force": force,
}
requestByte, err := json.Marshal(body)
if err != nil {
return err
}
requestBody := bytes.NewReader(requestByte)
return client.REST(repo.RepoHost(), "PATCH", path, requestBody, nil)
}