code.gitea.io/sdk/gitea v0.14.0 -> v0.15.1 (#18186)
parent
8760af752a
commit
ec6cc38c6c
@ -0,0 +1,65 @@ |
|||||||
|
// Copyright 2021 The Gitea 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 ( |
||||||
|
"fmt" |
||||||
|
"net/http" |
||||||
|
) |
||||||
|
|
||||||
|
// GetRepoTeams return teams from a repository
|
||||||
|
func (c *Client) GetRepoTeams(user, repo string) ([]*Team, *Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
if err := escapeValidatePathSegments(&user, &repo); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
teams := make([]*Team, 0, 5) |
||||||
|
resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/teams", user, repo), nil, nil, &teams) |
||||||
|
return teams, resp, err |
||||||
|
} |
||||||
|
|
||||||
|
// AddRepoTeam add a team to a repository
|
||||||
|
func (c *Client) AddRepoTeam(user, repo, team string) (*Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, err |
||||||
|
} |
||||||
|
if err := escapeValidatePathSegments(&user, &repo, &team); err != nil { |
||||||
|
return nil, err |
||||||
|
} |
||||||
|
_, resp, err := c.getResponse("PUT", fmt.Sprintf("/repos/%s/%s/teams/%s", user, repo, team), nil, nil) |
||||||
|
return resp, err |
||||||
|
} |
||||||
|
|
||||||
|
// RemoveRepoTeam delete a team from a repository
|
||||||
|
func (c *Client) RemoveRepoTeam(user, repo, team string) (*Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, err |
||||||
|
} |
||||||
|
if err := escapeValidatePathSegments(&user, &repo, &team); err != nil { |
||||||
|
return nil, err |
||||||
|
} |
||||||
|
_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/teams/%s", user, repo, team), nil, nil) |
||||||
|
return resp, err |
||||||
|
} |
||||||
|
|
||||||
|
// CheckRepoTeam check if team is assigned to repo by name and return it.
|
||||||
|
// If not assigned, it will return nil.
|
||||||
|
func (c *Client) CheckRepoTeam(user, repo, team string) (*Team, *Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
if err := escapeValidatePathSegments(&user, &repo, &team); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
t := new(Team) |
||||||
|
resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/teams/%s", user, repo, team), nil, nil, &t) |
||||||
|
if resp != nil && resp.StatusCode == http.StatusNotFound { |
||||||
|
// if not found it's not an error, it indicates it's not assigned
|
||||||
|
return nil, resp, nil |
||||||
|
} |
||||||
|
return t, resp, err |
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
// Copyright 2021 The Gitea 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" |
||||||
|
) |
||||||
|
|
||||||
|
// CreateRepoFromTemplateOption options when creating repository using a template
|
||||||
|
type CreateRepoFromTemplateOption struct { |
||||||
|
// Owner is the organization or person who will own the new repository
|
||||||
|
Owner string `json:"owner"` |
||||||
|
// Name of the repository to create
|
||||||
|
Name string `json:"name"` |
||||||
|
// Description of the repository to create
|
||||||
|
Description string `json:"description"` |
||||||
|
// Private is whether the repository is private
|
||||||
|
Private bool `json:"private"` |
||||||
|
// GitContent include git content of default branch in template repo
|
||||||
|
GitContent bool `json:"git_content"` |
||||||
|
// Topics include topics of template repo
|
||||||
|
Topics bool `json:"topics"` |
||||||
|
// GitHooks include git hooks of template repo
|
||||||
|
GitHooks bool `json:"git_hooks"` |
||||||
|
// Webhooks include webhooks of template repo
|
||||||
|
Webhooks bool `json:"webhooks"` |
||||||
|
// Avatar include avatar of the template repo
|
||||||
|
Avatar bool `json:"avatar"` |
||||||
|
// Labels include labels of template repo
|
||||||
|
Labels bool `json:"labels"` |
||||||
|
} |
||||||
|
|
||||||
|
// Validate validates CreateRepoFromTemplateOption
|
||||||
|
func (opt CreateRepoFromTemplateOption) Validate() error { |
||||||
|
if len(opt.Owner) == 0 { |
||||||
|
return fmt.Errorf("field Owner is required") |
||||||
|
} |
||||||
|
if len(opt.Name) == 0 { |
||||||
|
return fmt.Errorf("field Name is required") |
||||||
|
} |
||||||
|
return nil |
||||||
|
} |
||||||
|
|
||||||
|
// CreateRepoFromTemplate create a repository using a template
|
||||||
|
func (c *Client) CreateRepoFromTemplate(templateOwner, templateRepo string, opt CreateRepoFromTemplateOption) (*Repository, *Response, error) { |
||||||
|
if err := escapeValidatePathSegments(&templateOwner, &templateRepo); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
|
||||||
|
if err := opt.Validate(); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
body, err := json.Marshal(&opt) |
||||||
|
if err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
|
||||||
|
repo := new(Repository) |
||||||
|
resp, err := c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/generate", templateOwner, templateRepo), jsonHeader, bytes.NewReader(body), &repo) |
||||||
|
return repo, resp, err |
||||||
|
} |
@ -0,0 +1,62 @@ |
|||||||
|
// Copyright 2021 The Gitea 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" |
||||||
|
) |
||||||
|
|
||||||
|
// UserSettings represents user settings
|
||||||
|
type UserSettings struct { |
||||||
|
FullName string `json:"full_name"` |
||||||
|
Website string `json:"website"` |
||||||
|
Description string `json:"description"` |
||||||
|
Location string `json:"location"` |
||||||
|
Language string `json:"language"` |
||||||
|
Theme string `json:"theme"` |
||||||
|
DiffViewStyle string `json:"diff_view_style"` |
||||||
|
// Privacy
|
||||||
|
HideEmail bool `json:"hide_email"` |
||||||
|
HideActivity bool `json:"hide_activity"` |
||||||
|
} |
||||||
|
|
||||||
|
// UserSettingsOptions represents options to change user settings
|
||||||
|
type UserSettingsOptions struct { |
||||||
|
FullName *string `json:"full_name,omitempty"` |
||||||
|
Website *string `json:"website,omitempty"` |
||||||
|
Description *string `json:"description,omitempty"` |
||||||
|
Location *string `json:"location,omitempty"` |
||||||
|
Language *string `json:"language,omitempty"` |
||||||
|
Theme *string `json:"theme,omitempty"` |
||||||
|
DiffViewStyle *string `json:"diff_view_style,omitempty"` |
||||||
|
// Privacy
|
||||||
|
HideEmail *bool `json:"hide_email,omitempty"` |
||||||
|
HideActivity *bool `json:"hide_activity,omitempty"` |
||||||
|
} |
||||||
|
|
||||||
|
// GetUserSettings returns user settings
|
||||||
|
func (c *Client) GetUserSettings() (*UserSettings, *Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
userConfig := new(UserSettings) |
||||||
|
resp, err := c.getParsedResponse("GET", "/user/settings", nil, nil, userConfig) |
||||||
|
return userConfig, resp, err |
||||||
|
} |
||||||
|
|
||||||
|
// UpdateUserSettings returns user settings
|
||||||
|
func (c *Client) UpdateUserSettings(opt UserSettingsOptions) (*UserSettings, *Response, error) { |
||||||
|
if err := c.checkServerVersionGreaterThanOrEqual(version1_15_0); err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
body, err := json.Marshal(&opt) |
||||||
|
if err != nil { |
||||||
|
return nil, nil, err |
||||||
|
} |
||||||
|
userConfig := new(UserSettings) |
||||||
|
resp, err := c.getParsedResponse("PATCH", "/user/settings", jsonHeader, bytes.NewReader(body), userConfig) |
||||||
|
return userConfig, resp, err |
||||||
|
} |
Loading…
Reference in new issue