2014-11-18 17:07:16 +01:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
package user
|
2014-11-18 17:07:16 +01:00
|
|
|
|
|
|
|
import (
|
2016-11-11 10:39:44 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2014-11-18 17:07:16 +01:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2014-11-18 17:07:16 +01:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListAccessTokens list all the access tokens
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListAccessTokens(ctx *context.APIContext) {
|
2017-05-02 15:35:59 +02:00
|
|
|
// swagger:route GET /users/{username}/tokens userGetTokens
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: AccessTokenList
|
|
|
|
// 500: error
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
tokens, err := models.ListAccessTokens(ctx.User.ID)
|
2014-11-18 17:07:16 +01:00
|
|
|
if err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "ListAccessTokens", err)
|
2014-11-18 17:07:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiTokens := make([]*api.AccessToken, len(tokens))
|
|
|
|
for i := range tokens {
|
2017-02-26 06:25:35 +01:00
|
|
|
apiTokens[i] = &api.AccessToken{
|
|
|
|
Name: tokens[i].Name,
|
|
|
|
Sha1: tokens[i].Sha1,
|
|
|
|
}
|
2014-11-18 17:07:16 +01:00
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiTokens)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// CreateAccessToken create access tokens
|
2016-03-13 23:49:16 +01:00
|
|
|
func CreateAccessToken(ctx *context.APIContext, form api.CreateAccessTokenOption) {
|
2017-05-02 15:35:59 +02:00
|
|
|
// swagger:route POST /users/{username} /tokens userCreateToken
|
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: AccessToken
|
|
|
|
// 500: error
|
|
|
|
|
2014-11-18 17:07:16 +01:00
|
|
|
t := &models.AccessToken{
|
2016-07-23 19:08:22 +02:00
|
|
|
UID: ctx.User.ID,
|
2014-11-18 17:07:16 +01:00
|
|
|
Name: form.Name,
|
|
|
|
}
|
|
|
|
if err := models.NewAccessToken(t); err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "NewAccessToken", err)
|
2014-11-18 17:07:16 +01:00
|
|
|
return
|
|
|
|
}
|
2017-02-26 06:25:35 +01:00
|
|
|
ctx.JSON(201, &api.AccessToken{
|
|
|
|
Name: t.Name,
|
|
|
|
Sha1: t.Sha1,
|
|
|
|
})
|
2014-11-18 17:07:16 +01:00
|
|
|
}
|