2014-06-25 06:44:48 +02:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2014-06-07 07:27:24 +02:00
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2016-12-31 03:33:30 +01:00
|
|
|
"errors"
|
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-06-25 06:44:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-18 04:03:03 +01:00
|
|
|
// tplCreateOrg template path for create organization
|
|
|
|
tplCreateOrg base.TplName = "org/create"
|
2014-06-07 07:27:24 +02:00
|
|
|
)
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
// Create render the page for create organization
|
2016-03-11 17:56:52 +01:00
|
|
|
func Create(ctx *context.Context) {
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_org")
|
2016-12-31 03:33:30 +01:00
|
|
|
if !ctx.User.CanCreateOrganization() {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("Not allowed", errors.New(ctx.Tr("org.form.create_org_not_allowed")))
|
2016-12-31 03:33:30 +01:00
|
|
|
return
|
|
|
|
}
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.HTML(200, tplCreateOrg)
|
2014-06-25 06:44:48 +02:00
|
|
|
}
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
// CreatePost response for create organization
|
2016-03-11 17:56:52 +01:00
|
|
|
func CreatePost(ctx *context.Context, form auth.CreateOrgForm) {
|
2018-01-12 15:37:30 +01:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_org")
|
|
|
|
|
2018-01-10 22:34:17 +01:00
|
|
|
if !ctx.User.CanCreateOrganization() {
|
2018-01-12 15:37:30 +01:00
|
|
|
ctx.ServerError("Not allowed", errors.New(ctx.Tr("org.form.create_org_not_allowed")))
|
|
|
|
return
|
2018-01-10 22:34:17 +01:00
|
|
|
}
|
|
|
|
|
2014-06-25 06:44:48 +02:00
|
|
|
if ctx.HasError() {
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.HTML(200, tplCreateOrg)
|
2014-06-25 06:44:48 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := &models.User{
|
|
|
|
Name: form.OrgName,
|
2014-07-27 05:53:16 +02:00
|
|
|
IsActive: true,
|
2016-11-07 17:53:22 +01:00
|
|
|
Type: models.UserTypeOrganization,
|
2014-06-25 06:44:48 +02:00
|
|
|
}
|
|
|
|
|
2015-09-06 16:08:14 +02:00
|
|
|
if err := models.CreateOrganization(org, ctx.User); err != nil {
|
|
|
|
ctx.Data["Err_OrgName"] = true
|
2015-03-26 22:11:47 +01:00
|
|
|
switch {
|
|
|
|
case models.IsErrUserAlreadyExist(err):
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.org_name_been_taken"), tplCreateOrg, &form)
|
2015-03-26 22:11:47 +01:00
|
|
|
case models.IsErrNameReserved(err):
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_reserved", err.(models.ErrNameReserved).Name), tplCreateOrg, &form)
|
2015-03-26 22:11:47 +01:00
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tplCreateOrg, &form)
|
2016-12-31 03:33:30 +01:00
|
|
|
case models.IsErrUserNotAllowedCreateOrg(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.create_org_not_allowed"), tplCreateOrg, &form)
|
2014-06-25 06:44:48 +02:00
|
|
|
default:
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("CreateOrganization", err)
|
2014-06-25 06:44:48 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2014-07-27 05:53:16 +02:00
|
|
|
log.Trace("Organization created: %s", org.Name)
|
2014-06-25 06:44:48 +02:00
|
|
|
|
2016-11-27 11:14:25 +01:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/org/" + form.OrgName + "/dashboard")
|
2014-06-23 05:40:49 +02:00
|
|
|
}
|