2015-12-18 09:27:41 +05:30
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-18 09:27:41 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/repo"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2015-12-18 09:27:41 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateRepo api for creating a repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateRepo(ctx *context.APIContext, form api.CreateRepoOption) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation POST /admin/users/{username}/repos admin adminCreateRepo
|
|
|
|
// ---
|
|
|
|
// summary: Create a repository on behalf a user
|
|
|
|
// 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
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2015-12-18 09:27:41 +05:30
|
|
|
owner := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.CreateUserRepo(ctx, owner, form)
|
|
|
|
}
|