32 lines
980 B
Go
32 lines
980 B
Go
package view
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/cli/cli/v2/api"
|
|
"github.com/cli/cli/v2/internal/ghrepo"
|
|
"github.com/cli/cli/v2/pkg/cmd/ruleset/shared"
|
|
)
|
|
|
|
func viewRepoRuleset(httpClient *http.Client, repo ghrepo.Interface, databaseId string) (*shared.RulesetREST, error) {
|
|
path := fmt.Sprintf("repos/%s/%s/rulesets/%s", repo.RepoOwner(), repo.RepoName(), databaseId)
|
|
return viewRuleset(httpClient, repo.RepoHost(), path)
|
|
}
|
|
|
|
func viewOrgRuleset(httpClient *http.Client, orgLogin string, databaseId string, host string) (*shared.RulesetREST, error) {
|
|
path := fmt.Sprintf("orgs/%s/rulesets/%s", orgLogin, databaseId)
|
|
return viewRuleset(httpClient, host, path)
|
|
}
|
|
|
|
func viewRuleset(httpClient *http.Client, hostname string, path string) (*shared.RulesetREST, error) {
|
|
apiClient := api.NewClientFromHTTP(httpClient)
|
|
result := shared.RulesetREST{}
|
|
|
|
err := apiClient.REST(hostname, "GET", path, nil, &result)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &result, nil
|
|
}
|