2019-05-06 21:12:51 -04:00
|
|
|
// Copyright 2014 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 (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PromoteSiteAdmin promotes a user to a site administrator of a GitHub Enterprise instance.
|
|
|
|
//
|
|
|
|
// GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#promote-an-ordinary-user-to-a-site-administrator
|
|
|
|
func (s *UsersService) PromoteSiteAdmin(ctx context.Context, user string) (*Response, error) {
|
|
|
|
u := fmt.Sprintf("users/%v/site_admin", user)
|
|
|
|
|
|
|
|
req, err := s.client.NewRequest("PUT", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.client.Do(ctx, req, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DemoteSiteAdmin demotes a user from site administrator of a GitHub Enterprise instance.
|
|
|
|
//
|
|
|
|
// GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#demote-a-site-administrator-to-an-ordinary-user
|
|
|
|
func (s *UsersService) DemoteSiteAdmin(ctx context.Context, user string) (*Response, error) {
|
|
|
|
u := fmt.Sprintf("users/%v/site_admin", user)
|
|
|
|
|
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.client.Do(ctx, req, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserSuspendOptions represents the reason a user is being suspended.
|
|
|
|
type UserSuspendOptions struct {
|
|
|
|
Reason *string `json:"reason,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Suspend a user on a GitHub Enterprise instance.
|
|
|
|
//
|
|
|
|
// GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#suspend-a-user
|
2020-07-31 10:22:34 -04:00
|
|
|
func (s *UsersService) Suspend(ctx context.Context, user string, opts *UserSuspendOptions) (*Response, error) {
|
2019-05-06 21:12:51 -04:00
|
|
|
u := fmt.Sprintf("users/%v/suspended", user)
|
|
|
|
|
2020-07-31 10:22:34 -04:00
|
|
|
req, err := s.client.NewRequest("PUT", u, opts)
|
2019-05-06 21:12:51 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.client.Do(ctx, req, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unsuspend a user on a GitHub Enterprise instance.
|
|
|
|
//
|
|
|
|
// GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#unsuspend-a-user
|
|
|
|
func (s *UsersService) Unsuspend(ctx context.Context, user string) (*Response, error) {
|
|
|
|
u := fmt.Sprintf("users/%v/suspended", user)
|
|
|
|
|
|
|
|
req, err := s.client.NewRequest("DELETE", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.client.Do(ctx, req, nil)
|
|
|
|
}
|