2017-02-07 21:33:23 +00:00
|
|
|
|
// 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
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// Team represents a team within a GitHub organization. Teams are used to
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// manage access to an organization's repositories.
|
|
|
|
|
type Team struct {
|
|
|
|
|
ID *int `json:"id,omitempty"`
|
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
|
Description *string `json:"description,omitempty"`
|
|
|
|
|
URL *string `json:"url,omitempty"`
|
|
|
|
|
Slug *string `json:"slug,omitempty"`
|
|
|
|
|
|
|
|
|
|
// Permission is deprecated when creating or editing a team in an org
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// using the new GitHub permission model. It no longer identifies the
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// permission a team has on its repos, but only specifies the default
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// permission a repo is initially added with. Avoid confusion by
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// specifying a permission value when calling AddTeamRepo.
|
|
|
|
|
Permission *string `json:"permission,omitempty"`
|
|
|
|
|
|
|
|
|
|
// Privacy identifies the level of privacy this team should have.
|
|
|
|
|
// Possible values are:
|
|
|
|
|
// secret - only visible to organization owners and members of this team
|
|
|
|
|
// closed - visible to all members of this organization
|
|
|
|
|
// Default is "secret".
|
|
|
|
|
Privacy *string `json:"privacy,omitempty"`
|
|
|
|
|
|
|
|
|
|
MembersCount *int `json:"members_count,omitempty"`
|
|
|
|
|
ReposCount *int `json:"repos_count,omitempty"`
|
|
|
|
|
Organization *Organization `json:"organization,omitempty"`
|
|
|
|
|
MembersURL *string `json:"members_url,omitempty"`
|
|
|
|
|
RepositoriesURL *string `json:"repositories_url,omitempty"`
|
2017-04-11 15:10:46 +00:00
|
|
|
|
|
|
|
|
|
// LDAPDN is only available in GitHub Enterprise and when the team
|
|
|
|
|
// membership is synchronized with LDAP.
|
|
|
|
|
LDAPDN *string `json:"ldap_dn,omitempty"`
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (t Team) String() string {
|
|
|
|
|
return Stringify(t)
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// Invitation represents a team member's invitation status.
|
|
|
|
|
type Invitation struct {
|
|
|
|
|
ID *int `json:"id,omitempty"`
|
|
|
|
|
Login *string `json:"login,omitempty"`
|
|
|
|
|
Email *string `json:"email,omitempty"`
|
|
|
|
|
// Role can be one of the values - 'direct_member', 'admin', 'billing_manager', 'hiring_manager', or 'reinstate'.
|
|
|
|
|
Role *string `json:"role,omitempty"`
|
|
|
|
|
CreatedAt *time.Time `json:"created_at,omitempty"`
|
|
|
|
|
Inviter *User `json:"inviter,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (i Invitation) String() string {
|
|
|
|
|
return Stringify(i)
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// ListTeams lists all of the teams for an organization.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-teams
|
|
|
|
|
func (s *OrganizationsService) ListTeams(ctx context.Context, org string, opt *ListOptions) ([]*Team, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
var teams []*Team
|
|
|
|
|
resp, err := s.client.Do(ctx, req, &teams)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return teams, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetTeam fetches a team by ID.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#get-team
|
|
|
|
|
func (s *OrganizationsService) GetTeam(ctx context.Context, team int) (*Team, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v", team)
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t := new(Team)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, t)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return t, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CreateTeam creates a new team within an organization.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#create-team
|
|
|
|
|
func (s *OrganizationsService) CreateTeam(ctx context.Context, org string, team *Team) (*Team, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, t)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return t, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// EditTeam edits a team.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#edit-team
|
|
|
|
|
func (s *OrganizationsService) EditTeam(ctx context.Context, id int, team *Team) (*Team, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v", id)
|
|
|
|
|
req, err := s.client.NewRequest("PATCH", u, team)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t := new(Team)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, t)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return t, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeleteTeam deletes a team.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#delete-team
|
|
|
|
|
func (s *OrganizationsService) DeleteTeam(ctx context.Context, team int) (*Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v", team)
|
|
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return s.client.Do(ctx, req, nil)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OrganizationListTeamMembersOptions specifies the optional parameters to the
|
|
|
|
|
// OrganizationsService.ListTeamMembers method.
|
|
|
|
|
type OrganizationListTeamMembersOptions struct {
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// Role filters members returned by their role in the team. Possible
|
|
|
|
|
// values are "all", "member", "maintainer". Default is "all".
|
2017-02-07 21:33:23 +00:00
|
|
|
|
Role string `url:"role,omitempty"`
|
|
|
|
|
|
|
|
|
|
ListOptions
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListTeamMembers lists all of the users who are members of the specified
|
|
|
|
|
// team.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-team-members
|
|
|
|
|
func (s *OrganizationsService) ListTeamMembers(ctx context.Context, team int, opt *OrganizationListTeamMembersOptions) ([]*User, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
var members []*User
|
|
|
|
|
resp, err := s.client.Do(ctx, req, &members)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return members, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IsTeamMember checks if a user is a member of the specified team.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#get-team-member
|
|
|
|
|
func (s *OrganizationsService) IsTeamMember(ctx context.Context, team int, user string) (bool, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/members/%v", team, user)
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, nil)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
member, err := parseBoolResponse(err)
|
|
|
|
|
return member, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListTeamRepos lists the repositories that the specified team has access to.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-team-repos
|
|
|
|
|
func (s *OrganizationsService) ListTeamRepos(ctx context.Context, team int, opt *ListOptions) ([]*Repository, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
var repos []*Repository
|
|
|
|
|
resp, err := s.client.Do(ctx, req, &repos)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return repos, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// IsTeamRepo checks if a team manages the specified repository. If the
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// repository is managed by team, a Repository is returned which includes the
|
|
|
|
|
// permissions team has for that repo.
|
|
|
|
|
//
|
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#check-if-a-team-manages-a-repository
|
2017-04-11 15:10:46 +00:00
|
|
|
|
func (s *OrganizationsService) IsTeamRepo(ctx context.Context, team int, owner string, repo string) (*Repository, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/repos/%v/%v", team, owner, repo)
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req.Header.Set("Accept", mediaTypeOrgPermissionRepo)
|
|
|
|
|
|
|
|
|
|
repository := new(Repository)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, repository)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return repository, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OrganizationAddTeamRepoOptions specifies the optional parameters to the
|
|
|
|
|
// OrganizationsService.AddTeamRepo method.
|
|
|
|
|
type OrganizationAddTeamRepoOptions struct {
|
|
|
|
|
// Permission specifies the permission to grant the team on this repository.
|
|
|
|
|
// Possible values are:
|
|
|
|
|
// pull - team members can pull, but not push to or administer this repository
|
|
|
|
|
// push - team members can pull and push, but not administer this repository
|
|
|
|
|
// admin - team members can pull, push and administer this repository
|
|
|
|
|
//
|
|
|
|
|
// If not specified, the team's permission attribute will be used.
|
|
|
|
|
Permission string `json:"permission,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// AddTeamRepo adds a repository to be managed by the specified team. The
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// specified repository must be owned by the organization to which the team
|
|
|
|
|
// belongs, or a direct fork of a repository owned by the organization.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#add-team-repo
|
|
|
|
|
func (s *OrganizationsService) AddTeamRepo(ctx context.Context, team int, owner string, repo string, opt *OrganizationAddTeamRepoOptions) (*Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/repos/%v/%v", team, owner, repo)
|
|
|
|
|
req, err := s.client.NewRequest("PUT", u, opt)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return s.client.Do(ctx, req, nil)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveTeamRepo removes a repository from being managed by the specified
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// team. Note that this does not delete the repository, it just removes it
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// from the team.
|
|
|
|
|
//
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#remove-team-repo
|
|
|
|
|
func (s *OrganizationsService) RemoveTeamRepo(ctx context.Context, team int, owner string, repo string) (*Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return s.client.Do(ctx, req, nil)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListUserTeams lists a user's teams
|
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-user-teams
|
2017-04-11 15:10:46 +00:00
|
|
|
|
func (s *OrganizationsService) ListUserTeams(ctx context.Context, opt *ListOptions) ([]*Team, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
var teams []*Team
|
|
|
|
|
resp, err := s.client.Do(ctx, req, &teams)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return teams, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetTeamMembership returns the membership status for a user in a team.
|
|
|
|
|
//
|
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#get-team-membership
|
2017-04-11 15:10:46 +00:00
|
|
|
|
func (s *OrganizationsService) GetTeamMembership(ctx context.Context, team int, user string) (*Membership, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t := new(Membership)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, t)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return t, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OrganizationAddTeamMembershipOptions does stuff specifies the optional
|
|
|
|
|
// parameters to the OrganizationsService.AddTeamMembership method.
|
|
|
|
|
type OrganizationAddTeamMembershipOptions struct {
|
2017-04-11 15:10:46 +00:00
|
|
|
|
// Role specifies the role the user should have in the team. Possible
|
2017-02-07 21:33:23 +00:00
|
|
|
|
// values are:
|
|
|
|
|
// member - a normal member of the team
|
|
|
|
|
// maintainer - a team maintainer. Able to add/remove other team
|
|
|
|
|
// members, promote other team members to team
|
|
|
|
|
// maintainer, and edit the team’s name and description
|
|
|
|
|
//
|
|
|
|
|
// Default value is "member".
|
|
|
|
|
Role string `json:"role,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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
|
2017-04-11 15:10:46 +00:00
|
|
|
|
func (s *OrganizationsService) AddTeamMembership(ctx context.Context, team int, user string, opt *OrganizationAddTeamMembershipOptions) (*Membership, *Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
|
|
|
req, err := s.client.NewRequest("PUT", u, opt)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t := new(Membership)
|
2017-04-11 15:10:46 +00:00
|
|
|
|
resp, err := s.client.Do(ctx, req, t)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return t, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveTeamMembership removes a user from a team.
|
|
|
|
|
//
|
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#remove-team-membership
|
2017-04-11 15:10:46 +00:00
|
|
|
|
func (s *OrganizationsService) RemoveTeamMembership(ctx context.Context, team int, user string) (*Response, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
|
u := fmt.Sprintf("teams/%v/memberships/%v", team, user)
|
|
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
|
return s.client.Do(ctx, req, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListPendingTeamInvitations get pending invitaion list in team.
|
|
|
|
|
// Warning: The API may change without advance notice during the preview period.
|
|
|
|
|
// Preview features are not supported for production use.
|
|
|
|
|
//
|
|
|
|
|
// GitHub API docs: https://developer.github.com/v3/orgs/teams/#list-pending-team-invitations
|
|
|
|
|
func (s *OrganizationsService) ListPendingTeamInvitations(ctx context.Context, team int, opt *ListOptions) ([]*Invitation, *Response, error) {
|
|
|
|
|
u := fmt.Sprintf("teams/%v/invitations", 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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var pendingInvitations []*Invitation
|
|
|
|
|
resp, err := s.client.Do(ctx, req, &pendingInvitations)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, resp, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pendingInvitations, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
|
}
|