75 lines
1.8 KiB
Go
75 lines
1.8 KiB
Go
package view
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/cli/cli/api"
|
|
"github.com/cli/cli/internal/ghrepo"
|
|
)
|
|
|
|
var NotFoundError = errors.New("not found")
|
|
|
|
func fetchRepository(apiClient *api.Client, repo ghrepo.Interface, fields []string) (*api.Repository, error) {
|
|
query := fmt.Sprintf(`query RepositoryInfo($owner: String!, $name: String!) {
|
|
repository(owner: $owner, name: $name) {%s}
|
|
}`, api.RepositoryGraphQL(fields))
|
|
|
|
variables := map[string]interface{}{
|
|
"owner": repo.RepoOwner(),
|
|
"name": repo.RepoName(),
|
|
}
|
|
|
|
var result struct {
|
|
Repository api.Repository
|
|
}
|
|
if err := apiClient.GraphQL(repo.RepoHost(), query, variables, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return api.InitRepoHostname(&result.Repository, repo.RepoHost()), nil
|
|
}
|
|
|
|
type RepoReadme struct {
|
|
Filename string
|
|
Content string
|
|
BaseURL string
|
|
}
|
|
|
|
func RepositoryReadme(client *http.Client, repo ghrepo.Interface, branch string) (*RepoReadme, error) {
|
|
apiClient := api.NewClientFromHTTP(client)
|
|
var response struct {
|
|
Name string
|
|
Content string
|
|
HTMLURL string `json:"html_url"`
|
|
}
|
|
|
|
err := apiClient.REST(repo.RepoHost(), "GET", getReadmePath(repo, branch), nil, &response)
|
|
if err != nil {
|
|
var httpError api.HTTPError
|
|
if errors.As(err, &httpError) && httpError.StatusCode == 404 {
|
|
return nil, NotFoundError
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
decoded, err := base64.StdEncoding.DecodeString(response.Content)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to decode readme: %w", err)
|
|
}
|
|
|
|
return &RepoReadme{
|
|
Filename: response.Name,
|
|
Content: string(decoded),
|
|
BaseURL: response.HTMLURL,
|
|
}, nil
|
|
}
|
|
|
|
func getReadmePath(repo ghrepo.Interface, branch string) string {
|
|
path := fmt.Sprintf("repos/%s/readme", ghrepo.FullName(repo))
|
|
if branch != "" {
|
|
path = fmt.Sprintf("%s?ref=%s", path, branch)
|
|
}
|
|
return path
|
|
}
|