feat: gitea client

This commit is contained in:
2026-02-12 20:58:55 +01:00
parent 8583ab48ce
commit 9bd7d363ba
1693 changed files with 653995 additions and 49 deletions

76
vendor/code.gitea.io/sdk/gitea/user_block.go generated vendored Normal file
View File

@@ -0,0 +1,76 @@
// Copyright 2026 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"
"net/url"
)
// ListUserBlocksOptions options for listing user blocks
type ListUserBlocksOptions struct {
ListOptions
}
// ListMyBlocks lists users blocked by the authenticated user
func (c *Client) ListMyBlocks(opt ListUserBlocksOptions) ([]*User, *Response, error) {
opt.setDefaults()
link, _ := url.Parse("/user/blocks")
link.RawQuery = opt.getURLQuery().Encode()
users := make([]*User, 0, opt.PageSize)
resp, err := c.getParsedResponse("GET", link.String(), jsonHeader, nil, &users)
return users, resp, err
}
// CheckUserBlock checks if a user is blocked by the authenticated user
func (c *Client) CheckUserBlock(username string) (bool, *Response, error) {
if err := escapeValidatePathSegments(&username); err != nil {
return false, nil, err
}
status, resp, err := c.getStatusCode("GET",
fmt.Sprintf("/user/blocks/%s", username),
jsonHeader, nil)
if err != nil {
return false, resp, err
}
return status == http.StatusNoContent, resp, nil
}
// BlockUser blocks a user
func (c *Client) BlockUser(username string) (*Response, error) {
if err := escapeValidatePathSegments(&username); err != nil {
return nil, err
}
status, resp, err := c.getStatusCode("PUT",
fmt.Sprintf("/user/blocks/%s", username),
jsonHeader, nil)
if err != nil {
return resp, err
}
if status != http.StatusNoContent {
return resp, fmt.Errorf("unexpected status: %d", status)
}
return resp, nil
}
// UnblockUser unblocks a user
func (c *Client) UnblockUser(username string) (*Response, error) {
if err := escapeValidatePathSegments(&username); err != nil {
return nil, err
}
status, resp, err := c.getStatusCode("DELETE",
fmt.Sprintf("/user/blocks/%s", username),
jsonHeader, nil)
if err != nil {
return resp, err
}
if status != http.StatusNoContent {
return resp, fmt.Errorf("unexpected status: %d", status)
}
return resp, nil
}