gogs/routers/admin/auths.go

262 lines
7.4 KiB
Go
Raw Normal View History

2014-05-05 13:32:47 +04: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 06:48:14 +04:00
package admin
import (
"fmt"
2014-07-26 08:24:27 +04:00
"github.com/Unknwon/com"
2014-05-11 14:10:37 +04:00
"github.com/go-xorm/core"
2017-02-10 03:29:59 +03:00
log "gopkg.in/clog.v1"
2014-05-11 18:37:31 +04:00
2014-05-03 06:48:14 +04:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/pkg/auth/ldap"
"github.com/gogits/gogs/pkg/base"
"github.com/gogits/gogs/pkg/context"
"github.com/gogits/gogs/pkg/form"
"github.com/gogits/gogs/pkg/setting"
2014-05-03 06:48:14 +04:00
)
const (
2014-08-29 16:50:43 +04:00
AUTHS base.TplName = "admin/auth/list"
AUTH_NEW base.TplName = "admin/auth/new"
AUTH_EDIT base.TplName = "admin/auth/edit"
)
2016-03-11 19:56:52 +03:00
func Authentications(ctx *context.Context) {
2014-08-29 16:50:43 +04:00
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 16:50:43 +04:00
if err != nil {
ctx.Handle(500, "LoginSources", err)
2014-08-29 16:50:43 +04:00
return
}
2015-09-10 22:45:03 +03:00
ctx.Data["Total"] = models.CountLoginSources()
2014-08-29 16:50:43 +04:00
ctx.HTML(200, AUTHS)
}
type dropdownItem struct {
2015-09-11 00:11:41 +03:00
Name string
Type interface{}
2015-09-11 00:11:41 +03:00
}
var (
authSources = []dropdownItem{
{models.LoginNames[models.LOGIN_LDAP], models.LOGIN_LDAP},
{models.LoginNames[models.LOGIN_DLDAP], models.LOGIN_DLDAP},
{models.LoginNames[models.LOGIN_SMTP], models.LOGIN_SMTP},
{models.LoginNames[models.LOGIN_PAM], models.LOGIN_PAM},
}
securityProtocols = []dropdownItem{
{models.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_UNENCRYPTED], ldap.SECURITY_PROTOCOL_UNENCRYPTED},
{models.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_LDAPS], ldap.SECURITY_PROTOCOL_LDAPS},
{models.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_START_TLS], ldap.SECURITY_PROTOCOL_START_TLS},
}
)
2015-09-11 00:11:41 +03:00
2016-03-11 19:56:52 +03:00
func NewAuthSource(ctx *context.Context) {
2014-08-29 16:50:43 +04:00
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 00:11:41 +03:00
ctx.Data["type"] = models.LOGIN_LDAP
ctx.Data["CurrentTypeName"] = models.LoginNames[models.LOGIN_LDAP]
ctx.Data["CurrentSecurityProtocol"] = models.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_UNENCRYPTED]
2015-09-11 00:11:41 +03:00
ctx.Data["smtp_auth"] = "PLAIN"
ctx.Data["is_active"] = true
ctx.Data["AuthSources"] = authSources
ctx.Data["SecurityProtocols"] = securityProtocols
2014-05-11 14:10:37 +04:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
ctx.HTML(200, AUTH_NEW)
2014-05-03 06:48:14 +04:00
}
func parseLDAPConfig(f form.Authentication) *models.LDAPConfig {
2015-09-11 19:03:08 +03:00
return &models.LDAPConfig{
2015-09-14 22:48:51 +03:00
Source: &ldap.Source{
Name: f.Name,
Host: f.Host,
Port: f.Port,
SecurityProtocol: ldap.SecurityProtocol(f.SecurityProtocol),
SkipVerify: f.SkipVerify,
BindDN: f.BindDN,
UserDN: f.UserDN,
BindPassword: f.BindPassword,
UserBase: f.UserBase,
AttributeUsername: f.AttributeUsername,
AttributeName: f.AttributeName,
AttributeSurname: f.AttributeSurname,
AttributeMail: f.AttributeMail,
AttributesInBind: f.AttributesInBind,
Filter: f.Filter,
AdminFilter: f.AdminFilter,
Enabled: true,
2015-09-11 19:03:08 +03:00
},
}
}
func parseSMTPConfig(f form.Authentication) *models.SMTPConfig {
2015-09-11 19:03:08 +03:00
return &models.SMTPConfig{
Auth: f.SMTPAuth,
Host: f.SMTPHost,
Port: f.SMTPPort,
AllowedDomains: f.AllowedDomains,
TLS: f.TLS,
SkipVerify: f.SkipVerify,
2015-09-11 19:03:08 +03:00
}
}
func NewAuthSourcePost(ctx *context.Context, f form.Authentication) {
2014-08-29 16:50:43 +04:00
ctx.Data["Title"] = ctx.Tr("admin.auths.new")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 00:11:41 +03:00
ctx.Data["CurrentTypeName"] = models.LoginNames[models.LoginType(f.Type)]
ctx.Data["CurrentSecurityProtocol"] = models.SecurityProtocolNames[ldap.SecurityProtocol(f.SecurityProtocol)]
2015-09-11 00:11:41 +03:00
ctx.Data["AuthSources"] = authSources
ctx.Data["SecurityProtocols"] = securityProtocols
2014-05-11 14:10:37 +04:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-03 06:48:14 +04:00
hasTLS := false
2015-09-11 19:03:08 +03:00
var config core.Conversion
switch models.LoginType(f.Type) {
case models.LOGIN_LDAP, models.LOGIN_DLDAP:
config = parseLDAPConfig(f)
hasTLS = ldap.SecurityProtocol(f.SecurityProtocol) > ldap.SECURITY_PROTOCOL_UNENCRYPTED
case models.LOGIN_SMTP:
config = parseSMTPConfig(f)
hasTLS = true
case models.LOGIN_PAM:
2015-09-11 19:03:08 +03:00
config = &models.PAMConfig{
ServiceName: f.PAMServiceName,
2015-04-23 14:58:57 +03:00
}
2014-05-11 15:43:57 +04:00
default:
ctx.Error(400)
return
2014-05-11 14:10:37 +04:00
}
ctx.Data["HasTLS"] = hasTLS
if ctx.HasError() {
ctx.HTML(200, AUTH_NEW)
return
}
2014-05-11 14:10:37 +04:00
if err := models.CreateLoginSource(&models.LoginSource{
Type: models.LoginType(f.Type),
Name: f.Name,
IsActived: f.IsActive,
Cfg: config,
2015-09-11 19:03:08 +03:00
}); err != nil {
if models.IsErrLoginSourceAlreadyExist(err) {
ctx.Data["Err_Name"] = true
ctx.RenderWithErr(ctx.Tr("admin.auths.login_source_exist", err.(models.ErrLoginSourceAlreadyExist).Name), AUTH_NEW, f)
} else {
ctx.Handle(500, "CreateSource", err)
}
2014-05-03 06:48:14 +04:00
return
}
log.Trace("Authentication created by admin(%s): %s", ctx.User.Name, f.Name)
2015-09-11 19:03:08 +03:00
ctx.Flash.Success(ctx.Tr("admin.auths.new_success", f.Name))
2014-09-20 04:11:34 +04:00
ctx.Redirect(setting.AppSubUrl + "/admin/auths")
2014-05-03 06:48:14 +04:00
}
2016-03-11 19:56:52 +03:00
func EditAuthSource(ctx *context.Context) {
2014-08-29 16:50:43 +04:00
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 19:03:08 +03:00
ctx.Data["SecurityProtocols"] = securityProtocols
2014-05-11 14:10:37 +04:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2015-09-11 19:03:08 +03:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
2014-05-05 12:40:25 +04:00
if err != nil {
2015-09-11 19:03:08 +03:00
ctx.Handle(500, "GetLoginSourceByID", err)
2014-05-05 12:40:25 +04:00
return
}
2015-09-11 19:03:08 +03:00
ctx.Data["Source"] = source
ctx.Data["HasTLS"] = source.HasTLS()
ctx.HTML(200, AUTH_EDIT)
2014-05-03 06:48:14 +04:00
}
func EditAuthSourcePost(ctx *context.Context, f form.Authentication) {
2014-08-29 16:50:43 +04:00
ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminAuthentications"] = true
2015-09-11 19:03:08 +03:00
2014-05-11 14:10:37 +04:00
ctx.Data["SMTPAuths"] = models.SMTPAuths
2014-05-05 12:40:25 +04:00
2015-09-11 19:03:08 +03:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
if err != nil {
ctx.Handle(500, "GetLoginSourceByID", err)
return
}
ctx.Data["Source"] = source
ctx.Data["HasTLS"] = source.HasTLS()
2015-09-11 19:03:08 +03:00
2014-05-05 12:40:25 +04:00
if ctx.HasError() {
ctx.HTML(200, AUTH_EDIT)
2014-05-05 12:40:25 +04:00
return
}
2014-05-11 14:10:37 +04:00
var config core.Conversion
switch models.LoginType(f.Type) {
case models.LOGIN_LDAP, models.LOGIN_DLDAP:
config = parseLDAPConfig(f)
case models.LOGIN_SMTP:
config = parseSMTPConfig(f)
case models.LOGIN_PAM:
2015-04-23 14:58:57 +03:00
config = &models.PAMConfig{
ServiceName: f.PAMServiceName,
2015-04-23 14:58:57 +03:00
}
2014-05-11 18:37:31 +04:00
default:
ctx.Error(400)
return
2014-05-11 14:10:37 +04:00
}
source.Name = f.Name
source.IsActived = f.IsActive
2015-09-11 19:03:08 +03:00
source.Cfg = config
if err := models.UpdateSource(source); err != nil {
2014-08-29 16:50:43 +04:00
ctx.Handle(500, "UpdateSource", err)
2014-05-05 12:40:25 +04:00
return
}
2016-12-21 10:09:43 +03:00
log.Trace("Authentication changed by admin(%s): %d", ctx.User.Name, source.ID)
2014-05-05 12:40:25 +04:00
2014-08-29 16:50:43 +04:00
ctx.Flash.Success(ctx.Tr("admin.auths.update_success"))
ctx.Redirect(setting.AppSubUrl + "/admin/auths/" + com.ToStr(f.ID))
2014-05-03 06:48:14 +04:00
}
2016-03-11 19:56:52 +03:00
func DeleteAuthSource(ctx *context.Context) {
2015-09-11 19:03:08 +03:00
source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
2014-05-05 12:40:25 +04:00
if err != nil {
2015-09-11 19:03:08 +03:00
ctx.Handle(500, "GetLoginSourceByID", err)
2014-05-05 12:40:25 +04:00
return
}
2015-09-11 19:03:08 +03:00
if err = models.DeleteSource(source); err != nil {
2016-08-31 11:22:41 +03:00
if models.IsErrLoginSourceInUse(err) {
ctx.Flash.Error(ctx.Tr("admin.auths.still_in_used"))
2016-08-31 11:22:41 +03:00
} else {
ctx.Flash.Error(fmt.Sprintf("DeleteSource: %v", err))
2014-05-05 12:40:25 +04:00
}
ctx.JSON(200, map[string]interface{}{
"redirect": setting.AppSubUrl + "/admin/auths/" + ctx.Params(":authid"),
})
2014-05-05 12:40:25 +04:00
return
}
2015-09-11 19:03:08 +03: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 06:48:14 +04:00
}