2015-12-18 11:57:41 +08:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-18 11:57:41 +08:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2016-11-11 00:24:48 +08:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-08-24 00:40:30 +08:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 23:36:53 +08:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-11-11 00:24:48 +08:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/repo"
|
2015-12-18 11:57:41 +08:00
|
|
|
)
|
|
|
|
|
2016-11-24 15:04:31 +08:00
|
|
|
// CreateRepo api for creating a repository
|
2021-01-26 23:36:53 +08:00
|
|
|
func CreateRepo(ctx *context.APIContext) {
|
2017-11-13 15:02:25 +08:00
|
|
|
// swagger:operation POST /admin/users/{username}/repos admin adminCreateRepo
|
|
|
|
// ---
|
2020-01-29 02:45:39 +08:00
|
|
|
// summary: Create a repository on behalf of a user
|
2017-11-13 15:02:25 +08:00
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user. This user will own the created repository
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-10-21 11:40:42 +08:00
|
|
|
// - name: repository
|
|
|
|
// in: body
|
|
|
|
// required: true
|
|
|
|
// schema: { "$ref": "#/definitions/CreateRepoOption" }
|
2017-11-13 15:02:25 +08:00
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2023-03-14 05:55:30 +08:00
|
|
|
// "400":
|
|
|
|
// "$ref": "#/responses/error"
|
2017-11-13 15:02:25 +08:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2019-12-21 01:07:12 +08:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
// "409":
|
|
|
|
// "$ref": "#/responses/error"
|
2017-11-13 15:02:25 +08:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2022-03-26 17:04:22 +08:00
|
|
|
|
2021-01-26 23:36:53 +08:00
|
|
|
form := web.GetForm(ctx).(*api.CreateRepoOption)
|
2015-12-18 11:57:41 +08:00
|
|
|
|
2022-03-26 17:04:22 +08:00
|
|
|
repo.CreateUserRepo(ctx, ctx.ContextUser, *form)
|
2015-12-18 11:57:41 +08:00
|
|
|
}
|