go-sdk/gitea/repo_key.go

45 lines
1.5 KiB
Go
Raw Normal View History

2015-11-19 07:39:58 +05:30
// 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
2015-11-19 07:39:58 +05:30
import (
"bytes"
"encoding/json"
"fmt"
"code.gitea.io/gitea/modules/structs"
2015-11-19 07:39:58 +05:30
)
// DeployKey is equal to structs.DeployKey
type DeployKey = structs.DeployKey
2015-11-19 07:39:58 +05:30
2016-11-10 15:14:00 +05:30
// ListDeployKeys list all the deploy keys of one repository
2015-11-19 07:39:58 +05:30
func (c *Client) ListDeployKeys(user, repo string) ([]*DeployKey, error) {
keys := make([]*DeployKey, 0, 10)
return keys, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/keys", user, repo), nil, nil, &keys)
}
2016-11-10 15:14:00 +05:30
// GetDeployKey get one deploy key with key id
2015-12-03 10:46:21 +05:30
func (c *Client) GetDeployKey(user, repo string, keyID int64) (*DeployKey, error) {
key := new(DeployKey)
return key, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/keys/%d", user, repo, keyID), nil, nil, &key)
}
2016-11-10 15:14:00 +05:30
// CreateDeployKey options when create one deploy key
func (c *Client) CreateDeployKey(user, repo string, opt structs.CreateKeyOption) (*DeployKey, error) {
2015-11-19 07:39:58 +05:30
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
key := new(DeployKey)
2016-07-17 06:16:54 +05:30
return key, c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/keys", user, repo), jsonHeader, bytes.NewReader(body), key)
2015-11-19 07:39:58 +05:30
}
2016-11-10 15:14:00 +05:30
// DeleteDeployKey delete deploy key with key id
2015-11-19 07:39:58 +05:30
func (c *Client) DeleteDeployKey(owner, repo string, keyID int64) error {
_, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/keys/%d", owner, repo, keyID), nil, nil)
return err
}