gitea/routers/admin/auths.go

232 lines
6.1 KiB
Go
Raw Normal View History

2014-05-05 11:32:47 +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-05-03 04:48:14 +02:00
package admin
import (
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/com"
2014-05-11 12:10:37 +02:00
"github.com/go-xorm/core"
2014-05-11 16:37:31 +02:00
2014-05-03 04:48:14 +02:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/auth/ldap"
2014-05-05 10:40:25 +02:00
"github.com/gogits/gogs/modules/base"
2014-05-05 11:32:47 +02:00
"github.com/gogits/gogs/modules/log"
2014-05-03 04:48:14 +02:00
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/modules/setting"
2014-05-03 04:48:14 +02:00
)
const (
2014-08-29 14:50:43 +02:00
AUTHS base.TplName = "admin/auth/list"
AUTH_NEW base.TplName = "admin/auth/new"
AUTH_EDIT base.TplName = "admin/auth/edit"
)
2014-08-29 14:50:43 +02:00
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.LoginSources()
2014-08-29 14:50:43 +02:00
if err != nil {
ctx.Handle(500, "LoginSources", err)
2014-08-29 14:50:43 +02:00
return
}
2015-09-10 21:45:03 +02:00
ctx.Data["Total"] = models.CountLoginSources()
2014-08-29 14:50:43 +02:00
ctx.HTML(200, AUTHS)
}
2015-09-10 23:11:41 +02:00
type AuthSource struct {
Name string
Type models.LoginType
}
var authSources = []AuthSource{
{models.LoginNames[models.LDAP], models.LDAP},
{models.LoginNames[models.DLDAP], models.DLDAP},
{models.LoginNames[models.SMTP], models.SMTP},
{models.LoginNames[models.PAM], models.PAM},
}
2014-05-03 04:48:14 +02:00
func NewAuthSource(ctx *middleware.Context) {
2014-08-29 14:50:43 +02:00
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-10 23:11:41 +02:00
ctx.Data["type"] = models.LDAP
ctx.Data["CurTypeName"] = models.LoginNames[models.LDAP]
ctx.Data["smtp_auth"] = "PLAIN"
ctx.Data["is_active"] = true
ctx.Data["AuthSources"] = authSources
2014-05-11 12:10:37 +02:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
ctx.HTML(200, AUTH_NEW)
2014-05-03 04:48:14 +02:00
}
2015-09-11 18:03:08 +02:00
func parseLDAPConfig(form auth.AuthenticationForm) *models.LDAPConfig {
return &models.LDAPConfig{
Ldapsource: ldap.Ldapsource{
Name: form.Name,
Host: form.Host,
Port: form.Port,
UseSSL: form.TLS,
BindDN: form.BindDN,
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,
},
}
}
func parseSMTPConfig(form auth.AuthenticationForm) *models.SMTPConfig {
return &models.SMTPConfig{
Auth: form.SMTPAuth,
Host: form.SMTPHost,
Port: form.SMTPPort,
AllowedDomains: form.AllowedDomains,
TLS: form.TLS,
SkipVerify: form.SkipVerify,
2015-09-11 18:03:08 +02:00
}
}
2014-05-03 04:48:14 +02:00
func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
2014-08-29 14:50:43 +02:00
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-10 23:11:41 +02:00
ctx.Data["CurTypeName"] = models.LoginNames[models.LoginType(form.Type)]
ctx.Data["AuthSources"] = authSources
2014-05-11 12:10:37 +02:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-03 04:48:14 +02:00
if ctx.HasError() {
ctx.HTML(200, AUTH_NEW)
2014-05-03 04:48:14 +02:00
return
}
2015-09-11 18:03:08 +02:00
var config core.Conversion
switch models.LoginType(form.Type) {
2015-09-10 23:11:41 +02:00
case models.LDAP, models.DLDAP:
2015-09-11 18:03:08 +02:00
config = parseLDAPConfig(form)
case models.SMTP:
2015-09-11 18:03:08 +02:00
config = parseSMTPConfig(form)
2015-04-23 13:58:57 +02:00
case models.PAM:
2015-09-11 18:03:08 +02:00
config = &models.PAMConfig{
2015-04-23 13:58:57 +02:00
ServiceName: form.PAMServiceName,
}
2014-05-11 13:43:57 +02:00
default:
ctx.Error(400)
return
2014-05-11 12:10:37 +02:00
}
2015-09-11 18:03:08 +02:00
if err := models.CreateSource(&models.LoginSource{
Type: models.LoginType(form.Type),
Name: form.Name,
IsActived: form.IsActive,
Cfg: config,
2015-09-11 18:03:08 +02:00
}); err != nil {
2014-08-29 14:50:43 +02:00
ctx.Handle(500, "CreateSource", err)
2014-05-03 04:48:14 +02:00
return
}
log.Trace("Authentication created by admin(%s): %s", ctx.User.Name, form.Name)
2015-09-11 18:03:08 +02:00
ctx.Flash.Success(ctx.Tr("admin.auths.new_success", form.Name))
2014-09-20 02:11:34 +02:00
ctx.Redirect(setting.AppSubUrl + "/admin/auths")
2014-05-03 04:48:14 +02:00
}
2014-07-26 06:24:27 +02:00
func EditAuthSource(ctx *middleware.Context) {
2014-08-29 14:50:43 +02:00
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 18:03:08 +02:00
2014-05-11 12:10:37 +02:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2015-09-11 18:03:08 +02:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
2014-05-05 10:40:25 +02:00
if err != nil {
2015-09-11 18:03:08 +02:00
ctx.Handle(500, "GetLoginSourceByID", err)
2014-05-05 10:40:25 +02:00
return
}
2015-09-11 18:03:08 +02:00
ctx.Data["Source"] = source
ctx.HTML(200, AUTH_EDIT)
2014-05-03 04:48:14 +02:00
}
2014-05-05 10:40:25 +02:00
func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
2014-08-29 14:50:43 +02:00
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 18:03:08 +02:00
2014-05-11 12:10:37 +02:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-05 10:40:25 +02:00
2015-09-11 18:03:08 +02:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
if err != nil {
ctx.Handle(500, "GetLoginSourceByID", err)
return
}
ctx.Data["Source"] = source
2014-05-05 10:40:25 +02:00
if ctx.HasError() {
ctx.HTML(200, AUTH_EDIT)
2014-05-05 10:40:25 +02:00
return
}
2014-05-11 12:10:37 +02:00
var config core.Conversion
switch models.LoginType(form.Type) {
2015-09-11 18:03:08 +02:00
case models.LDAP, models.DLDAP:
config = parseLDAPConfig(form)
case models.SMTP:
2015-09-11 18:03:08 +02:00
config = parseSMTPConfig(form)
2015-04-23 13:58:57 +02:00
case models.PAM:
config = &models.PAMConfig{
ServiceName: form.PAMServiceName,
}
2014-05-11 16:37:31 +02:00
default:
ctx.Error(400)
return
2014-05-11 12:10:37 +02:00
}
2015-09-11 18:03:08 +02:00
source.Name = form.Name
source.IsActived = form.IsActive
source.Cfg = config
if err := models.UpdateSource(source); err != nil {
2014-08-29 14:50:43 +02:00
ctx.Handle(500, "UpdateSource", err)
2014-05-05 10:40:25 +02:00
return
}
2015-09-11 18:03:08 +02:00
log.Trace("Authentication changed by admin(%s): %s", ctx.User.Name, source.ID)
2014-05-05 10:40:25 +02:00
2014-08-29 14:50:43 +02:00
ctx.Flash.Success(ctx.Tr("admin.auths.update_success"))
2015-09-11 18:03:08 +02:00
ctx.Redirect(setting.AppSubUrl + "/admin/auths/" + com.ToStr(form.ID))
2014-05-03 04:48:14 +02:00
}
2014-07-26 06:24:27 +02:00
func DeleteAuthSource(ctx *middleware.Context) {
2015-09-11 18:03:08 +02:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
2014-05-05 10:40:25 +02:00
if err != nil {
2015-09-11 18:03:08 +02:00
ctx.Handle(500, "GetLoginSourceByID", err)
2014-05-05 10:40:25 +02:00
return
}
2015-09-11 18:03:08 +02:00
if err = models.DeleteSource(source); err != nil {
2014-05-05 10:40:25 +02:00
switch err {
case models.ErrAuthenticationUserUsed:
2014-08-29 14:50:43 +02:00
ctx.Flash.Error("form.still_own_user")
2014-09-20 02:11:34 +02:00
ctx.Redirect(setting.AppSubUrl + "/admin/auths/" + ctx.Params(":authid"))
2014-05-05 10:40:25 +02:00
default:
2015-09-11 18:03:08 +02:00
ctx.Handle(500, "DeleteSource", err)
2014-05-05 10:40:25 +02:00
}
return
}
2015-09-11 18:03:08 +02:00
log.Trace("Authentication deleted by admin(%s): %d", ctx.User.Name, source.ID)
ctx.Flash.Success(ctx.Tr("admin.auths.deletion_success"))
ctx.JSON(200, map[string]interface{}{
"redirect": setting.AppSubUrl + "/admin/auths",
})
2014-05-03 04:48:14 +02:00
}