2014-06-25 10:14:48 +05:30
|
|
|
// 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 10:57:24 +05:30
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2016-11-10 21:54:48 +05:30
|
|
|
"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 10:14:48 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-18 08:33:03 +05:30
|
|
|
// tplCreateOrg template path for create organization
|
|
|
|
tplCreateOrg base.TplName = "org/create"
|
2014-06-07 10:57:24 +05:30
|
|
|
)
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Create render the page for create organization
|
2016-03-11 22:26:52 +05:30
|
|
|
func Create(ctx *context.Context) {
|
2014-07-27 09:23:16 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_org")
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplCreateOrg)
|
2014-06-25 10:14:48 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// CreatePost response for create organization
|
2016-03-11 22:26:52 +05:30
|
|
|
func CreatePost(ctx *context.Context, form auth.CreateOrgForm) {
|
2014-07-27 09:23:16 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_org")
|
2014-06-25 10:14:48 +05:30
|
|
|
|
|
|
|
if ctx.HasError() {
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplCreateOrg)
|
2014-06-25 10:14:48 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := &models.User{
|
|
|
|
Name: form.OrgName,
|
2014-07-27 09:23:16 +05:30
|
|
|
IsActive: true,
|
2016-11-07 22:23:22 +05:30
|
|
|
Type: models.UserTypeOrganization,
|
2014-06-25 10:14:48 +05:30
|
|
|
}
|
|
|
|
|
2015-09-06 19:38:14 +05:30
|
|
|
if err := models.CreateOrganization(org, ctx.User); err != nil {
|
|
|
|
ctx.Data["Err_OrgName"] = true
|
2015-03-27 02:41:47 +05:30
|
|
|
switch {
|
|
|
|
case models.IsErrUserAlreadyExist(err):
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.org_name_been_taken"), tplCreateOrg, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNameReserved(err):
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_reserved", err.(models.ErrNameReserved).Name), tplCreateOrg, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tplCreateOrg, &form)
|
2014-06-25 10:14:48 +05:30
|
|
|
default:
|
2015-03-27 02:41:47 +05:30
|
|
|
ctx.Handle(500, "CreateOrganization", err)
|
2014-06-25 10:14:48 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2014-07-27 09:23:16 +05:30
|
|
|
log.Trace("Organization created: %s", org.Name)
|
2014-06-25 10:14:48 +05:30
|
|
|
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/org/" + form.OrgName + "/dashboard")
|
2014-06-23 09:10:49 +05:30
|
|
|
}
|