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