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