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