gitea/routers/api/v1/user/app.go

68 lines
1.5 KiB
Go
Raw Normal View History

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.
package user
2014-11-18 17:07:16 +01:00
import (
api "code.gitea.io/sdk/gitea"
2014-11-18 17:07:16 +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
func ListAccessTokens(ctx *context.APIContext) {
// swagger:route GET /users/{username}/tokens user 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 {
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
func CreateAccessToken(ctx *context.APIContext, form api.CreateAccessTokenOption) {
// swagger:route POST /users/{username} /tokens user 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 {
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
}