From 38db545ba808c69dd911a6bf45c2a340d3ae3487 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 6 Jun 2020 22:13:59 -0400 Subject: Redirect to git.burwell.io --- repo_host.go | 92 ------------------------------------------------------------ 1 file changed, 92 deletions(-) delete mode 100644 repo_host.go (limited to 'repo_host.go') diff --git a/repo_host.go b/repo_host.go deleted file mode 100644 index 2fdd4cc..0000000 --- a/repo_host.go +++ /dev/null @@ -1,92 +0,0 @@ -package main - -import ( - "context" - "encoding/json" - "fmt" - "io/ioutil" - "net/http" -) - -// A RepoHost hosts repositories, and can be queried as to whether it hosts a -// repository with a specific name. -type RepoHost interface { - HostsRepo(ctx context.Context, name string) (string, bool, error) -} - -// Sourcehut is a RepoHost -// -// https://git.sr.ht -type Sourcehut struct { - Token string // a personal access token - Username string // the username -} - -// HostsRepo implements RepoHost -func (s Sourcehut) HostsRepo(ctx context.Context, name string) (string, bool, error) { - endpoint := "https://git.sr.ht/api/~" + s.Username + "/repos/" + name - type response struct { - Name string `json:"name"` - Visibility string `json:"visibility"` - } - var repo response - if err := makeRequest(ctx, &repo, endpoint, "token "+s.Token); err != nil { - return "", false, err - } - if repo.Visibility != "public" || repo.Name == "" { - return "", false, nil - } - return "https://git.sr.ht/~" + s.Username + "/" + repo.Name, true, nil -} - -// Github is a RepoHost -// -// https://github.com -type Github struct { - Username string - Token string -} - -// HostsRepo implements RepoHost -func (g Github) HostsRepo(ctx context.Context, name string) (string, bool, error) { - endpoint := "https://api.github.com/repos/" + g.Username + "/" + name - type response struct { - URL string `json:"html_url"` - Private bool `json:"private"` - } - var repo response - if err := makeRequest(ctx, &repo, endpoint, "token "+g.Token); err != nil { - return "", false, err - } - if repo.Private || repo.URL == "" { - return "", false, nil - } - return repo.URL, true, nil -} - -func makeRequest(ctx context.Context, out interface{}, url string, auth string) error { - req, err := http.NewRequestWithContext(ctx, "GET", url, nil) - if err != nil { - return err - } - req.Header.Set("Authorization", auth) - resp, err := http.DefaultClient.Do(req) - if err != nil { - return err - } - if resp.StatusCode == http.StatusNotFound { - return nil - } - if resp.StatusCode != http.StatusOK { - return fmt.Errorf("get %s: %s", url, resp.Status) - } - defer resp.Body.Close() - body, err := ioutil.ReadAll(resp.Body) - if err != nil { - return err - } - if err := json.Unmarshal(body, out); err != nil { - return err - } - return nil -} -- cgit v1.2.3