2014-11-18 17:07:16 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-07-07 03:54:30 +02:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-11-18 17:07:16 +01:00
|
|
|
// 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-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /users/{username}/tokens user userGetTokens
|
|
|
|
// ---
|
|
|
|
// summary: List the authenticated user's access tokens
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 16:59:22 +02:00
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/AccessTokenList"
|
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{
|
2018-07-07 03:54:30 +02:00
|
|
|
ID: tokens[i].ID,
|
2017-02-26 06:25:35 +01:00
|
|
|
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-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /users/{username}/tokens user userCreateToken
|
|
|
|
// ---
|
|
|
|
// summary: Create an access token
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 16:59:22 +02:00
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-10-21 05:40:42 +02:00
|
|
|
// - name: accessToken
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// type: object
|
|
|
|
// required:
|
|
|
|
// - name
|
|
|
|
// properties:
|
|
|
|
// name:
|
|
|
|
// type: string
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/AccessToken"
|
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,
|
2018-07-07 03:54:30 +02:00
|
|
|
ID: t.ID,
|
2017-02-26 06:25:35 +01:00
|
|
|
})
|
2014-11-18 17:07:16 +01:00
|
|
|
}
|
2018-07-07 03:54:30 +02:00
|
|
|
|
|
|
|
// DeleteAccessToken delete access tokens
|
|
|
|
func DeleteAccessToken(ctx *context.APIContext) {
|
|
|
|
// swagger:operation DELETE /users/{username}/tokens/{token} user userDeleteAccessToken
|
|
|
|
// ---
|
|
|
|
// summary: delete an access token
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: token
|
|
|
|
// in: path
|
|
|
|
// description: token to be deleted
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2018-07-07 03:54:30 +02:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
tokenID := ctx.ParamsInt64(":id")
|
|
|
|
if err := models.DeleteAccessTokenByID(tokenID, ctx.User.ID); err != nil {
|
|
|
|
if models.IsErrAccessTokenNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2018-07-07 03:54:30 +02:00
|
|
|
} else {
|
|
|
|
ctx.Error(500, "DeleteAccessTokenByID", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|