mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-24 10:07:21 +02:00
353 lines
10 KiB
Go
353 lines
10 KiB
Go
// Copyright 2013 The go-github AUTHORS. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package github
|
|
|
|
import "fmt"
|
|
|
|
// Team represents a team within a GitHub organization. Teams are used to
|
|
// manage access to an organization's repositories.
|
|
type Team struct {
|
|
ID *int `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
URL *string `json:"url,omitempty"`
|
|
Slug *string `json:"slug,omitempty"`
|
|
Permission *string `json:"permission,omitempty"`
|
|
MembersCount *int `json:"members_count,omitempty"`
|
|
ReposCount *int `json:"repos_count,omitempty"`
|
|
Organization *Organization `json:"organization,omitempty"`
|
|
}
|
|
|
|
func (t Team) String() string {
|
|
return Stringify(t)
|
|
}
|
|
|
|
// ListTeams lists all of the teams for an organization.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#list-teams
|
|
func (s *OrganizationsService) ListTeams(org string, opt *ListOptions) ([]Team, *Response, error) {
|
|
u := fmt.Sprintf("orgs/%v/teams", org)
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
teams := new([]Team)
|
|
resp, err := s.client.Do(req, teams)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return *teams, resp, err
|
|
}
|
|
|
|
// GetTeam fetches a team by ID.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#get-team
|
|
func (s *OrganizationsService) GetTeam(team int) (*Team, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v", team)
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
t := new(Team)
|
|
resp, err := s.client.Do(req, t)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return t, resp, err
|
|
}
|
|
|
|
// CreateTeam creates a new team within an organization.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#create-team
|
|
func (s *OrganizationsService) CreateTeam(org string, team *Team) (*Team, *Response, error) {
|
|
u := fmt.Sprintf("orgs/%v/teams", org)
|
|
req, err := s.client.NewRequest("POST", u, team)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
t := new(Team)
|
|
resp, err := s.client.Do(req, t)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return t, resp, err
|
|
}
|
|
|
|
// EditTeam edits a team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#edit-team
|
|
func (s *OrganizationsService) EditTeam(id int, team *Team) (*Team, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v", id)
|
|
req, err := s.client.NewRequest("PATCH", u, team)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
t := new(Team)
|
|
resp, err := s.client.Do(req, t)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return t, resp, err
|
|
}
|
|
|
|
// DeleteTeam deletes a team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#delete-team
|
|
func (s *OrganizationsService) DeleteTeam(team int) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v", team)
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|
|
|
|
// ListTeamMembers lists all of the users who are members of the specified
|
|
// team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#list-team-members
|
|
func (s *OrganizationsService) ListTeamMembers(team int, opt *ListOptions) ([]User, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/members", team)
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
members := new([]User)
|
|
resp, err := s.client.Do(req, members)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return *members, resp, err
|
|
}
|
|
|
|
// IsTeamMember checks if a user is a member of the specified team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#get-team-member
|
|
func (s *OrganizationsService) IsTeamMember(team int, user string) (bool, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/members/%v", team, user)
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return false, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(req, nil)
|
|
member, err := parseBoolResponse(err)
|
|
return member, resp, err
|
|
}
|
|
|
|
// AddTeamMember adds a user to a team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#add-team-member
|
|
func (s *OrganizationsService) AddTeamMember(team int, user string) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v/members/%v", team, user)
|
|
req, err := s.client.NewRequest("PUT", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|
|
|
|
// RemoveTeamMember removes a user from a team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#remove-team-member
|
|
func (s *OrganizationsService) RemoveTeamMember(team int, user string) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v/members/%v", team, user)
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|
|
|
|
// ListTeamRepos lists the repositories that the specified team has access to.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#list-team-repos
|
|
func (s *OrganizationsService) ListTeamRepos(team int, opt *ListOptions) ([]Repository, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/repos", team)
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
repos := new([]Repository)
|
|
resp, err := s.client.Do(req, repos)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return *repos, resp, err
|
|
}
|
|
|
|
// IsTeamRepo checks if a team manages the specified repository.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#get-team-repo
|
|
func (s *OrganizationsService) IsTeamRepo(team int, owner string, repo string) (bool, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/repos/%v/%v", team, owner, repo)
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return false, nil, err
|
|
}
|
|
|
|
resp, err := s.client.Do(req, nil)
|
|
manages, err := parseBoolResponse(err)
|
|
return manages, resp, err
|
|
}
|
|
|
|
// AddTeamRepo adds a repository to be managed by the specified team. The
|
|
// specified repository must be owned by the organization to which the team
|
|
// belongs, or a direct fork of a repository owned by the organization.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#add-team-repo
|
|
func (s *OrganizationsService) AddTeamRepo(team int, owner string, repo string) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v/repos/%v/%v", team, owner, repo)
|
|
req, err := s.client.NewRequest("PUT", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|
|
|
|
// RemoveTeamRepo removes a repository from being managed by the specified
|
|
// team. Note that this does not delete the repository, it just removes it
|
|
// from the team.
|
|
//
|
|
// GitHub API docs: http://developer.github.com/v3/orgs/teams/#remove-team-repo
|
|
func (s *OrganizationsService) RemoveTeamRepo(team int, owner string, repo string) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v/repos/%v/%v", team, owner, repo)
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|
|
|
|
// ListUserTeams lists a user's teams
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-user-teams
|
|
func (s *OrganizationsService) ListUserTeams(opt *ListOptions) ([]Team, *Response, error) {
|
|
u := "user/teams"
|
|
u, err := addOptions(u, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
teams := new([]Team)
|
|
resp, err := s.client.Do(req, teams)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return *teams, resp, err
|
|
}
|
|
|
|
// GetTeamMembership returns the membership status for a user in a team.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#get-team-membership
|
|
func (s *OrganizationsService) GetTeamMembership(team int, user string) (*Membership, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept header when this API fully launches
|
|
req.Header.Set("Accept", mediaTypeMembershipPreview)
|
|
|
|
t := new(Membership)
|
|
resp, err := s.client.Do(req, t)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return t, resp, err
|
|
}
|
|
|
|
// AddTeamMembership adds or invites a user to a team.
|
|
//
|
|
// In order to add a membership between a user and a team, the authenticated
|
|
// user must have 'admin' permissions to the team or be an owner of the
|
|
// organization that the team is associated with.
|
|
//
|
|
// If the user is already a part of the team's organization (meaning they're on
|
|
// at least one other team in the organization), this endpoint will add the
|
|
// user to the team.
|
|
//
|
|
// If the user is completely unaffiliated with the team's organization (meaning
|
|
// they're on none of the organization's teams), this endpoint will send an
|
|
// invitation to the user via email. This newly-created membership will be in
|
|
// the "pending" state until the user accepts the invitation, at which point
|
|
// the membership will transition to the "active" state and the user will be
|
|
// added as a member of the team.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#add-team-membership
|
|
func (s *OrganizationsService) AddTeamMembership(team int, user string) (*Membership, *Response, error) {
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
req, err := s.client.NewRequest("PUT", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept header when this API fully launches
|
|
req.Header.Set("Accept", mediaTypeMembershipPreview)
|
|
|
|
t := new(Membership)
|
|
resp, err := s.client.Do(req, t)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return t, resp, err
|
|
}
|
|
|
|
// RemoveTeamMembership removes a user from a team.
|
|
//
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#remove-team-membership
|
|
func (s *OrganizationsService) RemoveTeamMembership(team int, user string) (*Response, error) {
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO: remove custom Accept header when this API fully launches
|
|
req.Header.Set("Accept", mediaTypeMembershipPreview)
|
|
|
|
return s.client.Do(req, nil)
|
|
}
|