|
|
|
@ -9,7 +9,6 @@ import ( |
|
|
|
"fmt" |
|
|
|
"net/url" |
|
|
|
"strconv" |
|
|
|
"time" |
|
|
|
) |
|
|
|
|
|
|
|
// RepositoriesService handles communication with the repository related
|
|
|
|
@ -199,117 +198,6 @@ func (s *RepositoriesService) Edit(owner, repo string, repository *Repository) ( |
|
|
|
return r, err |
|
|
|
} |
|
|
|
|
|
|
|
// RepositoryListForksOptions specifies the optional parameters to the
|
|
|
|
// RepositoriesService.ListForks method.
|
|
|
|
type RepositoryListForksOptions struct { |
|
|
|
// How to sort the forks list. Possible values are: newest, oldest,
|
|
|
|
// watchers. Default is "newest".
|
|
|
|
Sort string |
|
|
|
} |
|
|
|
|
|
|
|
// ListForks lists the forks of the specified repository.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/forks/#list-forks
|
|
|
|
func (s *RepositoriesService) ListForks(owner, repo string, opt *RepositoryListForksOptions) ([]Repository, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/forks", owner, repo) |
|
|
|
if opt != nil { |
|
|
|
params := url.Values{ |
|
|
|
"sort": []string{opt.Sort}, |
|
|
|
} |
|
|
|
u += "?" + params.Encode() |
|
|
|
} |
|
|
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
repos := new([]Repository) |
|
|
|
_, err = s.client.Do(req, repos) |
|
|
|
return *repos, err |
|
|
|
} |
|
|
|
|
|
|
|
// RepositoryCreateForkOptions specifies the optional parameters to the
|
|
|
|
// RepositoriesService.CreateFork method.
|
|
|
|
type RepositoryCreateForkOptions struct { |
|
|
|
// The organization to fork the repository into.
|
|
|
|
Organization string |
|
|
|
} |
|
|
|
|
|
|
|
// CreateFork creates a fork of the specified repository.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/forks/#list-forks
|
|
|
|
func (s *RepositoriesService) CreateFork(owner, repo string, opt *RepositoryCreateForkOptions) (*Repository, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/forks", owner, repo) |
|
|
|
if opt != nil { |
|
|
|
params := url.Values{ |
|
|
|
"organization": []string{opt.Organization}, |
|
|
|
} |
|
|
|
u += "?" + params.Encode() |
|
|
|
} |
|
|
|
|
|
|
|
req, err := s.client.NewRequest("POST", u, nil) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
fork := new(Repository) |
|
|
|
_, err = s.client.Do(req, fork) |
|
|
|
return fork, err |
|
|
|
} |
|
|
|
|
|
|
|
// RepoStatus represents the status of a repository at a particular reference.
|
|
|
|
type RepoStatus struct { |
|
|
|
ID int `json:"id,omitempty"` |
|
|
|
|
|
|
|
// State is the current state of the repository. Possible values are:
|
|
|
|
// pending, success, error, or failure.
|
|
|
|
State string `json:"state,omitempty"` |
|
|
|
|
|
|
|
// TargetURL is the URL of the page representing this status. It will be
|
|
|
|
// linked from the GitHub UI to allow users to see the source of the status.
|
|
|
|
TargetURL string `json:"target_url,omitempty"` |
|
|
|
|
|
|
|
// Description is a short high level summary of the status.
|
|
|
|
Description string `json:"description,omitempty"` |
|
|
|
|
|
|
|
Creator *User `json:"creator,omitempty"` |
|
|
|
CreatedAt *time.Time `json:"created_at,omitempty"` |
|
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"` |
|
|
|
} |
|
|
|
|
|
|
|
// ListStatuses lists the statuses of a repository at the specified
|
|
|
|
// reference. ref can be a SHA, a branch name, or a tag name.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
|
|
|
func (s *RepositoriesService) ListStatuses(owner, repo, ref string) ([]RepoStatus, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/statuses/%v", owner, repo, ref) |
|
|
|
req, err := s.client.NewRequest("GET", u, nil) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
statuses := new([]RepoStatus) |
|
|
|
_, err = s.client.Do(req, statuses) |
|
|
|
return *statuses, err |
|
|
|
} |
|
|
|
|
|
|
|
// CreateStatus creates a new status for a repository at the specified
|
|
|
|
// reference. Ref can be a SHA, a branch name, or a tag name.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/statuses/#create-a-status
|
|
|
|
func (s *RepositoriesService) CreateStatus(owner, repo, ref string, status *RepoStatus) (*RepoStatus, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/statuses/%v", owner, repo, ref) |
|
|
|
req, err := s.client.NewRequest("POST", u, status) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
statuses := new(RepoStatus) |
|
|
|
_, err = s.client.Do(req, statuses) |
|
|
|
return statuses, err |
|
|
|
} |
|
|
|
|
|
|
|
// ListLanguages lists languages for the specified repository. The returned map
|
|
|
|
// specifies the languages and the number of bytes of code written in that
|
|
|
|
// language. For example:
|
|
|
|
@ -331,106 +219,3 @@ func (s *RepositoriesService) ListLanguages(owner string, repository string) (ma |
|
|
|
_, err = s.client.Do(req, &languages) |
|
|
|
return languages, err |
|
|
|
} |
|
|
|
|
|
|
|
// Hook represents a GitHub (web and service) hook for a repository.
|
|
|
|
type Hook struct { |
|
|
|
CreatedAt *time.Time `json:"created_at,omitempty"` |
|
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"` |
|
|
|
Name string `json:"name,omitempty"` |
|
|
|
Events []string `json:"events,omitempty"` |
|
|
|
Active bool `json:"active,omitempty"` |
|
|
|
Config map[string]interface{} `json:"config,omitempty"` |
|
|
|
ID int `json:"id,omitempty"` |
|
|
|
} |
|
|
|
|
|
|
|
// CreateHook creates a Hook for the specified repository.
|
|
|
|
// Name and Config are required fields.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#create-a-hook
|
|
|
|
func (s *RepositoriesService) CreateHook(owner, repo string, hook *Hook) (*Hook, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks", owner, repo) |
|
|
|
req, err := s.client.NewRequest("POST", u, hook) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
h := new(Hook) |
|
|
|
_, err = s.client.Do(req, h) |
|
|
|
return h, err |
|
|
|
} |
|
|
|
|
|
|
|
// ListHooks lists all Hooks for the specified repository.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#list
|
|
|
|
func (s *RepositoriesService) ListHooks(owner, repo string, opt *ListOptions) ([]Hook, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks", owner, repo) |
|
|
|
|
|
|
|
if opt != nil { |
|
|
|
params := url.Values{ |
|
|
|
"page": []string{strconv.Itoa(opt.Page)}, |
|
|
|
} |
|
|
|
u += "?" + params.Encode() |
|
|
|
} |
|
|
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
hooks := new([]Hook) |
|
|
|
_, err = s.client.Do(req, hooks) |
|
|
|
return *hooks, err |
|
|
|
} |
|
|
|
|
|
|
|
// GetHook returns a single specified Hook.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#get-single-hook
|
|
|
|
func (s *RepositoriesService) GetHook(owner, repo string, id int) (*Hook, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks/%d", owner, repo, id) |
|
|
|
req, err := s.client.NewRequest("GET", u, nil) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
hook := new(Hook) |
|
|
|
_, err = s.client.Do(req, hook) |
|
|
|
return hook, err |
|
|
|
} |
|
|
|
|
|
|
|
// EditHook updates a specified Hook.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#edit-a-hook
|
|
|
|
func (s *RepositoriesService) EditHook(owner, repo string, id int, hook *Hook) (*Hook, error) { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks/%d", owner, repo, id) |
|
|
|
req, err := s.client.NewRequest("PATCH", u, hook) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
h := new(Hook) |
|
|
|
_, err = s.client.Do(req, h) |
|
|
|
return h, err |
|
|
|
} |
|
|
|
|
|
|
|
// DeleteHook deletes a specified Hook.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#delete-a-hook
|
|
|
|
func (s *RepositoriesService) DeleteHook(owner, repo string, id int) error { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks/%d", owner, repo, id) |
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil) |
|
|
|
if err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
_, err = s.client.Do(req, nil) |
|
|
|
return err |
|
|
|
} |
|
|
|
|
|
|
|
// TestHook triggers a test Hook by github.
|
|
|
|
//
|
|
|
|
// GitHub API docs: http://developer.github.com/v3/repos/hooks/#test-a-push-hook
|
|
|
|
func (s *RepositoriesService) TestHook(owner, repo string, id int) error { |
|
|
|
u := fmt.Sprintf("repos/%v/%v/hooks/%d/tests", owner, repo, id) |
|
|
|
req, err := s.client.NewRequest("POST", u, nil) |
|
|
|
if err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
_, err = s.client.Do(req, nil) |
|
|
|
return err |
|
|
|
} |