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 (
|
2014-07-26 08:28:04 +02:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-06-25 06:44:48 +02:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2016-03-11 17:56:52 +01:00
|
|
|
"github.com/gogits/gogs/modules/context"
|
2014-06-25 06:44:48 +02:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-09-14 19:35:22 +02:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-06-25 06:44:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-08-14 08:12:21 +02:00
|
|
|
CREATE base.TplName = "org/create"
|
2014-06-07 07:27:24 +02:00
|
|
|
)
|
|
|
|
|
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")
|
|
|
|
ctx.HTML(200, CREATE)
|
2014-06-25 06:44:48 +02:00
|
|
|
}
|
|
|
|
|
2016-03-11 17:56:52 +01:00
|
|
|
func CreatePost(ctx *context.Context, form auth.CreateOrgForm) {
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_org")
|
2014-06-25 06:44:48 +02:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.HTML(200, CREATE)
|
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-03-11 21:33:12 +01:00
|
|
|
Type: models.USER_TYPE_ORGANIZATION,
|
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):
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.org_name_been_taken"), CREATE, &form)
|
2015-03-26 22:11:47 +01:00
|
|
|
case models.IsErrNameReserved(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_reserved", err.(models.ErrNameReserved).Name), CREATE, &form)
|
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("org.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), CREATE, &form)
|
2014-06-25 06:44:48 +02:00
|
|
|
default:
|
2015-03-26 22:11:47 +01:00
|
|
|
ctx.Handle(500, "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
|
|
|
|
2014-09-20 02:11:34 +02:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/org/" + form.OrgName + "/dashboard")
|
2014-06-23 05:40:49 +02:00
|
|
|
}
|