bench-forgejo/routers/admin/auths.go

237 lines
6.2 KiB
Go
Raw Normal View History

2014-05-05 15:02:47 +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-05-03 08:18:14 +05:30
package admin
import (
2014-07-26 09:54:27 +05:30
"github.com/Unknwon/com"
2014-05-11 15:40:37 +05:30
"github.com/go-xorm/core"
2014-05-11 20:07:31 +05:30
2014-05-03 08:18:14 +05:30
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/auth/ldap"
2014-05-05 14:10:25 +05:30
"github.com/gogits/gogs/modules/base"
2014-05-05 15:02:47 +05:30
"github.com/gogits/gogs/modules/log"
2014-05-03 08:18:14 +05:30
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/modules/setting"
2014-05-03 08:18:14 +05:30
)
const (
2014-08-29 18:20:43 +05:30
AUTHS base.TplName = "admin/auth/list"
AUTH_NEW base.TplName = "admin/auth/new"
AUTH_EDIT base.TplName = "admin/auth/edit"
)
2014-08-29 18:20:43 +05:30
func Authentications(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("admin.authentication")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
var err error
ctx.Data["Sources"], err = models.GetAuths()
if err != nil {
ctx.Handle(500, "GetAuths", err)
return
}
ctx.HTML(200, AUTHS)
}
2014-05-03 08:18:14 +05:30
func NewAuthSource(ctx *middleware.Context) {
2014-08-29 18:20:43 +05:30
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2014-05-05 14:10:25 +05:30
ctx.Data["LoginTypes"] = models.LoginTypes
2014-05-11 15:40:37 +05:30
ctx.Data["SMTPAuths"] = models.SMTPAuths
ctx.HTML(200, AUTH_NEW)
2014-05-03 08:18:14 +05:30
}
func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
2014-08-29 18:20:43 +05:30
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2014-05-11 15:40:37 +05:30
ctx.Data["LoginTypes"] = models.LoginTypes
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-03 08:18:14 +05:30
if ctx.HasError() {
ctx.HTML(200, AUTH_NEW)
2014-05-03 08:18:14 +05:30
return
}
2014-05-11 15:40:37 +05:30
var u core.Conversion
switch models.LoginType(form.Type) {
case models.LDAP:
2015-09-05 09:09:23 +05:30
fallthrough
case models.DLDAP:
2014-05-11 15:40:37 +05:30
u = &models.LDAPConfig{
Ldapsource: ldap.Ldapsource{
Name: form.Name,
Host: form.Host,
Port: form.Port,
UseSSL: form.UseSSL,
BindDN: form.BindDN,
2015-09-05 09:09:23 +05:30
UserDN: form.UserDN,
BindPassword: form.BindPassword,
UserBase: form.UserBase,
AttributeName: form.AttributeName,
AttributeSurname: form.AttributeSurname,
AttributeMail: form.AttributeMail,
2015-09-05 09:09:23 +05:30
Filter: form.Filter,
AdminFilter: form.AdminFilter,
Enabled: true,
2014-05-11 15:40:37 +05:30
},
}
case models.SMTP:
2014-05-11 15:40:37 +05:30
u = &models.SMTPConfig{
Auth: form.SMTPAuth,
Host: form.SMTPHost,
Port: form.SMTPPort,
TLS: form.TLS,
SkipVerify: form.SkipVerify,
2014-05-11 15:40:37 +05:30
}
2015-04-23 17:28:57 +05:30
case models.PAM:
u = &models.PAMConfig{
ServiceName: form.PAMServiceName,
}
2014-05-11 17:13:57 +05:30
default:
ctx.Error(400)
return
2014-05-11 15:40:37 +05:30
}
var source = &models.LoginSource{
Type: models.LoginType(form.Type),
Name: form.Name,
2014-05-11 15:40:37 +05:30
IsActived: true,
2014-05-11 17:48:57 +05:30
AllowAutoRegister: form.AllowAutoRegister,
2014-05-11 15:40:37 +05:30
Cfg: u,
2014-05-03 08:18:14 +05:30
}
if err := models.CreateSource(source); err != nil {
2014-08-29 18:20:43 +05:30
ctx.Handle(500, "CreateSource", err)
2014-05-03 08:18:14 +05:30
return
}
log.Trace("Authentication created by admin(%s): %s", ctx.User.Name, form.Name)
2014-09-20 05:41:34 +05:30
ctx.Redirect(setting.AppSubUrl + "/admin/auths")
2014-05-03 08:18:14 +05:30
}
2014-07-26 09:54:27 +05:30
func EditAuthSource(ctx *middleware.Context) {
2014-08-29 18:20:43 +05:30
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2014-05-11 15:40:37 +05:30
ctx.Data["LoginTypes"] = models.LoginTypes
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-08-29 18:20:43 +05:30
id := com.StrTo(ctx.Params(":authid")).MustInt64()
if id == 0 {
ctx.Handle(404, "EditAuthSource", nil)
2014-05-05 14:10:25 +05:30
return
}
u, err := models.GetLoginSourceByID(id)
2014-05-05 14:10:25 +05:30
if err != nil {
2014-08-29 18:20:43 +05:30
ctx.Handle(500, "GetLoginSourceById", err)
2014-05-05 14:10:25 +05:30
return
}
ctx.Data["Source"] = u
ctx.HTML(200, AUTH_EDIT)
2014-05-03 08:18:14 +05:30
}
2014-05-05 14:10:25 +05:30
func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
2014-08-29 18:20:43 +05:30
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2014-05-05 14:10:25 +05:30
ctx.Data["PageIsAuths"] = true
2014-05-11 15:40:37 +05:30
ctx.Data["LoginTypes"] = models.LoginTypes
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-05 14:10:25 +05:30
if ctx.HasError() {
ctx.HTML(200, AUTH_EDIT)
2014-05-05 14:10:25 +05:30
return
}
2014-05-11 15:40:37 +05:30
var config core.Conversion
switch models.LoginType(form.Type) {
case models.LDAP:
2015-09-05 09:09:23 +05:30
fallthrough
case models.DLDAP:
2014-05-11 15:40:37 +05:30
config = &models.LDAPConfig{
2014-05-05 14:10:25 +05:30
Ldapsource: ldap.Ldapsource{
Name: form.Name,
Host: form.Host,
Port: form.Port,
UseSSL: form.UseSSL,
BindDN: form.BindDN,
2015-09-05 09:09:23 +05:30
UserDN: form.UserDN,
BindPassword: form.BindPassword,
UserBase: form.UserBase,
AttributeName: form.AttributeName,
AttributeSurname: form.AttributeSurname,
AttributeMail: form.AttributeMail,
Filter: form.Filter,
AdminFilter: form.AdminFilter,
Enabled: true,
2014-05-05 14:10:25 +05:30
},
2014-05-11 15:40:37 +05:30
}
case models.SMTP:
2014-05-11 15:40:37 +05:30
config = &models.SMTPConfig{
Auth: form.SMTPAuth,
Host: form.SMTPHost,
Port: form.SMTPPort,
TLS: form.TLS,
SkipVerify: form.SkipVerify,
2014-05-11 15:40:37 +05:30
}
2015-04-23 17:28:57 +05:30
case models.PAM:
config = &models.PAMConfig{
ServiceName: form.PAMServiceName,
}
2014-05-11 20:07:31 +05:30
default:
ctx.Error(400)
return
2014-05-11 15:40:37 +05:30
}
u := models.LoginSource{
ID: form.ID,
Name: form.Name,
2014-05-11 15:40:37 +05:30
IsActived: form.IsActived,
Type: models.LoginType(form.Type),
2014-05-11 17:48:57 +05:30
AllowAutoRegister: form.AllowAutoRegister,
2014-05-11 15:40:37 +05:30
Cfg: config,
2014-05-05 14:10:25 +05:30
}
2014-05-11 15:40:37 +05:30
if err := models.UpdateSource(&u); err != nil {
2014-08-29 18:20:43 +05:30
ctx.Handle(500, "UpdateSource", err)
2014-05-05 14:10:25 +05:30
return
}
log.Trace("Authentication changed by admin(%s): %s", ctx.User.Name, form.Name)
2014-08-29 18:20:43 +05:30
ctx.Flash.Success(ctx.Tr("admin.auths.update_success"))
2014-09-20 05:41:34 +05:30
ctx.Redirect(setting.AppSubUrl + "/admin/auths/" + ctx.Params(":authid"))
2014-05-03 08:18:14 +05:30
}
2014-07-26 09:54:27 +05:30
func DeleteAuthSource(ctx *middleware.Context) {
2014-08-29 18:20:43 +05:30
id := com.StrTo(ctx.Params(":authid")).MustInt64()
if id == 0 {
ctx.Handle(404, "DeleteAuthSource", nil)
2014-05-05 14:10:25 +05:30
return
}
a, err := models.GetLoginSourceByID(id)
2014-05-05 14:10:25 +05:30
if err != nil {
2014-08-29 18:20:43 +05:30
ctx.Handle(500, "GetLoginSourceById", err)
2014-05-05 14:10:25 +05:30
return
}
if err = models.DelLoginSource(a); err != nil {
switch err {
case models.ErrAuthenticationUserUsed:
2014-08-29 18:20:43 +05:30
ctx.Flash.Error("form.still_own_user")
2014-09-20 05:41:34 +05:30
ctx.Redirect(setting.AppSubUrl + "/admin/auths/" + ctx.Params(":authid"))
2014-05-05 14:10:25 +05:30
default:
2014-08-29 18:20:43 +05:30
ctx.Handle(500, "DelLoginSource", err)
2014-05-05 14:10:25 +05:30
}
return
}
2014-08-29 18:20:43 +05:30
log.Trace("Authentication deleted by admin(%s): %s", ctx.User.Name, a.Name)
2014-09-20 05:41:34 +05:30
ctx.Redirect(setting.AppSubUrl + "/admin/auths")
2014-05-03 08:18:14 +05:30
}