2016-11-07 19:23:13 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-05-04 21:15:34 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-11-07 19:23:13 +05:30
|
|
|
// 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/base64"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// BasicAuthEncode generate base64 of basic auth head
|
2016-11-07 19:23:13 +05:30
|
|
|
func BasicAuthEncode(user, pass string) string {
|
|
|
|
return base64.StdEncoding.EncodeToString([]byte(user + ":" + pass))
|
|
|
|
}
|
|
|
|
|
2019-05-04 21:15:34 +05:30
|
|
|
// AccessToken represents an API access token.
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:response AccessToken
|
2016-11-07 19:23:13 +05:30
|
|
|
type AccessToken struct {
|
2019-05-04 21:15:34 +05:30
|
|
|
ID int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Token string `json:"token"`
|
|
|
|
HashedToken string `json:"hashed_token"`
|
|
|
|
TokenLastEight string `json:"token_last_eight"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2017-05-02 19:05:59 +05:30
|
|
|
// AccessTokenList represents a list of API access token.
|
|
|
|
// swagger:response AccessTokenList
|
2017-08-21 16:43:47 +05:30
|
|
|
type AccessTokenList []*AccessToken
|
2017-05-02 19:05:59 +05:30
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// ListAccessTokens lista all the access tokens of user
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) ListAccessTokens(user, pass string) ([]*AccessToken, error) {
|
|
|
|
tokens := make([]*AccessToken, 0, 10)
|
|
|
|
return tokens, c.getParsedResponse("GET", fmt.Sprintf("/users/%s/tokens", user),
|
|
|
|
http.Header{"Authorization": []string{"Basic " + BasicAuthEncode(user, pass)}}, nil, &tokens)
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// CreateAccessTokenOption options when create access token
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:parameters userCreateToken
|
2016-11-07 19:23:13 +05:30
|
|
|
type CreateAccessTokenOption struct {
|
|
|
|
Name string `json:"name" binding:"Required"`
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// CreateAccessToken create one access token with options
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) CreateAccessToken(user, pass string, opt CreateAccessTokenOption) (*AccessToken, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
t := new(AccessToken)
|
|
|
|
return t, c.getParsedResponse("POST", fmt.Sprintf("/users/%s/tokens", user),
|
|
|
|
http.Header{
|
|
|
|
"content-type": []string{"application/json"},
|
|
|
|
"Authorization": []string{"Basic " + BasicAuthEncode(user, pass)}},
|
|
|
|
bytes.NewReader(body), t)
|
|
|
|
}
|
2018-07-07 07:24:30 +05:30
|
|
|
|
|
|
|
// DeleteAccessToken delete token with key id
|
|
|
|
func (c *Client) DeleteAccessToken(user string, keyID int64) error {
|
|
|
|
_, err := c.getResponse("DELETE", fmt.Sprintf("/user/%s/tokens/%d", user, keyID), nil, nil)
|
|
|
|
return err
|
|
|
|
}
|