2015-12-17 12:58:47 +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-17 12:58:47 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2015-12-17 12:58:47 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateOrg api for create organization
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateOrg(ctx *context.APIContext, form api.CreateOrgOption) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation POST /admin/users/{username}/orgs admin adminCreateOrg
|
|
|
|
// ---
|
|
|
|
// summary: Create an organization
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user that will own the created organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Organization"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2015-12-17 12:58:47 +05:30
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := &models.User{
|
|
|
|
Name: form.UserName,
|
|
|
|
FullName: form.FullName,
|
|
|
|
Description: form.Description,
|
|
|
|
Website: form.Website,
|
|
|
|
Location: form.Location,
|
|
|
|
IsActive: true,
|
2016-11-07 22:23:22 +05:30
|
|
|
Type: models.UserTypeOrganization,
|
2015-12-17 12:58:47 +05:30
|
|
|
}
|
|
|
|
if err := models.CreateOrganization(org, u); err != nil {
|
|
|
|
if models.IsErrUserAlreadyExist(err) ||
|
|
|
|
models.IsErrNameReserved(err) ||
|
|
|
|
models.IsErrNamePatternNotAllowed(err) {
|
2016-03-21 22:23:04 +05:30
|
|
|
ctx.Error(422, "", err)
|
2015-12-17 12:58:47 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "CreateOrganization", err)
|
2015-12-17 12:58:47 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(201, convert.ToOrganization(org))
|
2015-12-17 12:58:47 +05:30
|
|
|
}
|