1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-01 17:05:48 +00:00
gitea/routers/org/org.go

57 lines
1.5 KiB
Go
Raw Normal View History

2014-06-25 04:44:48 +00: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 05:27:24 +00:00
package org
import (
"github.com/gogits/gogs/models"
2014-06-25 04:44:48 +00:00
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
2016-03-11 16:56:52 +00:00
"github.com/gogits/gogs/modules/context"
2014-06-25 04:44:48 +00:00
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/setting"
2014-06-25 04:44:48 +00:00
)
const (
2014-08-14 06:12:21 +00:00
CREATE base.TplName = "org/create"
2014-06-07 05:27:24 +00:00
)
2016-03-11 16:56:52 +00:00
func Create(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("new_org")
ctx.HTML(200, CREATE)
2014-06-25 04:44:48 +00:00
}
2016-03-11 16:56:52 +00:00
func CreatePost(ctx *context.Context, form auth.CreateOrgForm) {
ctx.Data["Title"] = ctx.Tr("new_org")
2014-06-25 04:44:48 +00:00
if ctx.HasError() {
ctx.HTML(200, CREATE)
2014-06-25 04:44:48 +00:00
return
}
org := &models.User{
Name: form.OrgName,
IsActive: true,
2014-06-25 04:44:48 +00:00
Type: models.ORGANIZATION,
}
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"), CREATE, &form)
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 04:44:48 +00:00
default:
ctx.Handle(500, "CreateOrganization", err)
2014-06-25 04:44:48 +00:00
}
return
}
log.Trace("Organization created: %s", org.Name)
2014-06-25 04:44:48 +00:00
2014-09-20 00:11:34 +00:00
ctx.Redirect(setting.AppSubUrl + "/org/" + form.OrgName + "/dashboard")
2014-06-23 03:40:49 +00:00
}