gitea/routers/org/org.go

77 lines
2.4 KiB
Go
Raw Normal View History

2014-06-25 06:44:48 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2018 The Gitea Authors. All rights reserved.
2014-06-25 06:44:48 +02:00
// 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 (
"errors"
"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 (
// tplCreateOrg template path for create organization
tplCreateOrg base.TplName = "org/create"
2014-06-07 07:27:24 +02:00
)
// Create render the page for create organization
2016-03-11 17:56:52 +01:00
func Create(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("new_org")
ctx.Data["DefaultOrgVisibilityMode"] = setting.Service.DefaultOrgVisibilityMode
if !ctx.User.CanCreateOrganization() {
ctx.ServerError("Not allowed", errors.New(ctx.Tr("org.form.create_org_not_allowed")))
return
}
ctx.HTML(200, tplCreateOrg)
2014-06-25 06:44:48 +02:00
}
// CreatePost response for create organization
2016-03-11 17:56:52 +01:00
func CreatePost(ctx *context.Context, form auth.CreateOrgForm) {
ctx.Data["Title"] = ctx.Tr("new_org")
if !ctx.User.CanCreateOrganization() {
ctx.ServerError("Not allowed", errors.New(ctx.Tr("org.form.create_org_not_allowed")))
return
}
2014-06-25 06:44:48 +02:00
if ctx.HasError() {
ctx.HTML(200, tplCreateOrg)
2014-06-25 06:44:48 +02:00
return
}
org := &models.User{
Name: form.OrgName,
IsActive: true,
Type: models.UserTypeOrganization,
Visibility: form.Visibility,
RepoAdminChangeTeamAccess: form.RepoAdminChangeTeamAccess,
2014-06-25 06:44:48 +02:00
}
if err := models.CreateOrganization(org, ctx.User); err != nil {
ctx.Data["Err_OrgName"] = true
switch {
case models.IsErrUserAlreadyExist(err):
ctx.RenderWithErr(ctx.Tr("form.org_name_been_taken"), tplCreateOrg, &form)
case models.IsErrNameReserved(err):
ctx.RenderWithErr(ctx.Tr("org.form.name_reserved", err.(models.ErrNameReserved).Name), tplCreateOrg, &form)
case models.IsErrNamePatternNotAllowed(err):
ctx.RenderWithErr(ctx.Tr("org.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tplCreateOrg, &form)
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:
ctx.ServerError("CreateOrganization", err)
2014-06-25 06:44:48 +02:00
}
return
}
log.Trace("Organization created: %s", org.Name)
2014-06-25 06:44:48 +02:00
ctx.Redirect(setting.AppSubURL + "/org/" + form.OrgName + "/dashboard")
2014-06-23 05:40:49 +02:00
}