49b1948cb1
* first draft
* update gitea sdk to 9e280adb4da
* adapt feat of updated sdk
* releases now works
* break the Reactions loop
* use convertGiteaLabel
* fix endless loop because paggination is not supported there !!!
* rename gitea local uploader files
* pagination can bite you in the ass
* Version Checks
* lint
* docs
* rename gitea sdk import to miss future conficts
* go-swagger: dont scan the sdk structs
* make sure gitea can shutdown gracefully
* make GetPullRequests and GetIssues similar
* rm useles
* Add Test: started ...
* ... add tests ...
* Add tests and Fixing things
* Workaround missing SHA
* Adapt: Ensure that all migration requests are cancellable
(714ab71ddc
)
* LINT: fix misspells in test set
* adapt ListMergeRequestAwardEmoji
* update sdk
* Return error when creating giteadownloader failed
* update sdk
* adapt new sdk
* adopt new features
* check version before err
* adapt: 'migrate service type switch page'
* optimize
* Fix DefaultBranch
* impruve
* handle subPath
* fix test
* Fix ReviewCommentPosition
* test GetReviews
* add DefaultBranch int test set
* rm unused
* Update SDK to v0.13.0
* addopt sdk changes
* found better link
* format template
* Update Docs
* Update Gitea SDK (v0.13.1)
98 lines
3.0 KiB
Go
Vendored
98 lines
3.0 KiB
Go
Vendored
// Copyright 2016 The Gogs Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gitea
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// ListCollaboratorsOptions options for listing a repository's collaborators
|
|
type ListCollaboratorsOptions struct {
|
|
ListOptions
|
|
}
|
|
|
|
// ListCollaborators list a repository's collaborators
|
|
func (c *Client) ListCollaborators(user, repo string, opt ListCollaboratorsOptions) ([]*User, *Response, error) {
|
|
opt.setDefaults()
|
|
collaborators := make([]*User, 0, opt.PageSize)
|
|
resp, err := c.getParsedResponse("GET",
|
|
fmt.Sprintf("/repos/%s/%s/collaborators?%s", user, repo, opt.getURLQuery().Encode()),
|
|
nil, nil, &collaborators)
|
|
return collaborators, resp, err
|
|
}
|
|
|
|
// IsCollaborator check if a user is a collaborator of a repository
|
|
func (c *Client) IsCollaborator(user, repo, collaborator string) (bool, *Response, error) {
|
|
status, resp, err := c.getStatusCode("GET", fmt.Sprintf("/repos/%s/%s/collaborators/%s", user, repo, collaborator), nil, nil)
|
|
if err != nil {
|
|
return false, resp, err
|
|
}
|
|
if status == 204 {
|
|
return true, resp, nil
|
|
}
|
|
return false, resp, nil
|
|
}
|
|
|
|
// AddCollaboratorOption options when adding a user as a collaborator of a repository
|
|
type AddCollaboratorOption struct {
|
|
Permission *AccessMode `json:"permission"`
|
|
}
|
|
|
|
// AccessMode represent the grade of access you have to something
|
|
type AccessMode string
|
|
|
|
const (
|
|
// AccessModeNone no access
|
|
AccessModeNone AccessMode = "none"
|
|
// AccessModeRead read access
|
|
AccessModeRead AccessMode = "read"
|
|
// AccessModeWrite write access
|
|
AccessModeWrite AccessMode = "write"
|
|
// AccessModeAdmin admin access
|
|
AccessModeAdmin AccessMode = "admin"
|
|
// AccessModeOwner owner
|
|
AccessModeOwner AccessMode = "owner"
|
|
)
|
|
|
|
// Validate the AddCollaboratorOption struct
|
|
func (opt AddCollaboratorOption) Validate() error {
|
|
if opt.Permission != nil {
|
|
if *opt.Permission == AccessModeOwner {
|
|
*opt.Permission = AccessModeAdmin
|
|
return nil
|
|
}
|
|
if *opt.Permission == AccessModeNone {
|
|
opt.Permission = nil
|
|
return nil
|
|
}
|
|
if *opt.Permission != AccessModeRead && *opt.Permission != AccessModeWrite && *opt.Permission != AccessModeAdmin {
|
|
return fmt.Errorf("permission mode invalid")
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// AddCollaborator add some user as a collaborator of a repository
|
|
func (c *Client) AddCollaborator(user, repo, collaborator string, opt AddCollaboratorOption) (*Response, error) {
|
|
if err := opt.Validate(); err != nil {
|
|
return nil, err
|
|
}
|
|
body, err := json.Marshal(&opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
_, resp, err := c.getResponse("PUT", fmt.Sprintf("/repos/%s/%s/collaborators/%s", user, repo, collaborator), jsonHeader, bytes.NewReader(body))
|
|
return resp, err
|
|
}
|
|
|
|
// DeleteCollaborator remove a collaborator from a repository
|
|
func (c *Client) DeleteCollaborator(user, repo, collaborator string) (*Response, error) {
|
|
_, resp, err := c.getResponse("DELETE",
|
|
fmt.Sprintf("/repos/%s/%s/collaborators/%s", user, repo, collaborator), nil, nil)
|
|
return resp, err
|
|
}
|