mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	* 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)
		
	
			
		
			
				
	
	
		
			80 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			80 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| // Copyright 2015 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"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // PublicKey publickey is a user key to push code to repository
 | |
| type PublicKey struct {
 | |
| 	ID          int64     `json:"id"`
 | |
| 	Key         string    `json:"key"`
 | |
| 	URL         string    `json:"url,omitempty"`
 | |
| 	Title       string    `json:"title,omitempty"`
 | |
| 	Fingerprint string    `json:"fingerprint,omitempty"`
 | |
| 	Created     time.Time `json:"created_at,omitempty"`
 | |
| 	Owner       *User     `json:"user,omitempty"`
 | |
| 	ReadOnly    bool      `json:"read_only,omitempty"`
 | |
| 	KeyType     string    `json:"key_type,omitempty"`
 | |
| }
 | |
| 
 | |
| // ListPublicKeysOptions options for listing a user's PublicKeys
 | |
| type ListPublicKeysOptions struct {
 | |
| 	ListOptions
 | |
| }
 | |
| 
 | |
| // ListPublicKeys list all the public keys of the user
 | |
| func (c *Client) ListPublicKeys(user string, opt ListPublicKeysOptions) ([]*PublicKey, *Response, error) {
 | |
| 	opt.setDefaults()
 | |
| 	keys := make([]*PublicKey, 0, opt.PageSize)
 | |
| 	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/users/%s/keys?%s", user, opt.getURLQuery().Encode()), nil, nil, &keys)
 | |
| 	return keys, resp, err
 | |
| }
 | |
| 
 | |
| // ListMyPublicKeys list all the public keys of current user
 | |
| func (c *Client) ListMyPublicKeys(opt ListPublicKeysOptions) ([]*PublicKey, *Response, error) {
 | |
| 	opt.setDefaults()
 | |
| 	keys := make([]*PublicKey, 0, opt.PageSize)
 | |
| 	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/user/keys?%s", opt.getURLQuery().Encode()), nil, nil, &keys)
 | |
| 	return keys, resp, err
 | |
| }
 | |
| 
 | |
| // GetPublicKey get current user's public key by key id
 | |
| func (c *Client) GetPublicKey(keyID int64) (*PublicKey, *Response, error) {
 | |
| 	key := new(PublicKey)
 | |
| 	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/user/keys/%d", keyID), nil, nil, &key)
 | |
| 	return key, resp, err
 | |
| }
 | |
| 
 | |
| // CreateKeyOption options when creating a key
 | |
| type CreateKeyOption struct {
 | |
| 	// Title of the key to add
 | |
| 	Title string `json:"title"`
 | |
| 	// An armored SSH key to add
 | |
| 	Key string `json:"key"`
 | |
| 	// Describe if the key has only read access or read/write
 | |
| 	ReadOnly bool `json:"read_only"`
 | |
| }
 | |
| 
 | |
| // CreatePublicKey create public key with options
 | |
| func (c *Client) CreatePublicKey(opt CreateKeyOption) (*PublicKey, *Response, error) {
 | |
| 	body, err := json.Marshal(&opt)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 	key := new(PublicKey)
 | |
| 	resp, err := c.getParsedResponse("POST", "/user/keys", jsonHeader, bytes.NewReader(body), key)
 | |
| 	return key, resp, err
 | |
| }
 | |
| 
 | |
| // DeletePublicKey delete public key with key id
 | |
| func (c *Client) DeletePublicKey(keyID int64) (*Response, error) {
 | |
| 	_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/user/keys/%d", keyID), nil, nil)
 | |
| 	return resp, err
 | |
| }
 |