2014-05-05 09:32:47 +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-05-03 02:48:14 +00:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2014-05-05 08:40:25 +00:00
|
|
|
"github.com/go-martini/martini"
|
2014-05-11 10:10:37 +00:00
|
|
|
"github.com/go-xorm/core"
|
2014-05-11 14:37:31 +00:00
|
|
|
|
2014-05-03 02:48:14 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/auth/ldap"
|
2014-05-05 08:40:25 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-05-05 09:32:47 +00:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-03 02:48:14 +00:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewAuthSource(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = "New Authentication"
|
|
|
|
ctx.Data["PageIsAuths"] = true
|
2014-05-05 08:40:25 +00:00
|
|
|
ctx.Data["LoginTypes"] = models.LoginTypes
|
2014-05-11 10:10:37 +00:00
|
|
|
ctx.Data["SMTPAuths"] = models.SMTPAuths
|
2014-05-03 02:48:14 +00:00
|
|
|
ctx.HTML(200, "admin/auths/new")
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
|
|
|
|
ctx.Data["Title"] = "New Authentication"
|
|
|
|
ctx.Data["PageIsAuths"] = true
|
2014-05-11 10:10:37 +00:00
|
|
|
ctx.Data["LoginTypes"] = models.LoginTypes
|
|
|
|
ctx.Data["SMTPAuths"] = models.SMTPAuths
|
2014-05-03 02:48:14 +00:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "admin/auths/new")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-11 10:10:37 +00:00
|
|
|
var u core.Conversion
|
2014-06-08 21:53:53 +00:00
|
|
|
switch models.LoginType(form.Type) {
|
|
|
|
case models.LDAP:
|
2014-05-11 10:10:37 +00:00
|
|
|
u = &models.LDAPConfig{
|
|
|
|
Ldapsource: ldap.Ldapsource{
|
|
|
|
Host: form.Host,
|
|
|
|
Port: form.Port,
|
2014-05-15 12:21:27 +00:00
|
|
|
UseSSL: form.UseSSL,
|
2014-05-11 10:10:37 +00:00
|
|
|
BaseDN: form.BaseDN,
|
|
|
|
Attributes: form.Attributes,
|
|
|
|
Filter: form.Filter,
|
|
|
|
MsAdSAFormat: form.MsAdSA,
|
|
|
|
Enabled: true,
|
|
|
|
Name: form.AuthName,
|
|
|
|
},
|
|
|
|
}
|
2014-06-08 21:53:53 +00:00
|
|
|
case models.SMTP:
|
2014-05-11 10:10:37 +00:00
|
|
|
u = &models.SMTPConfig{
|
|
|
|
Auth: form.SmtpAuth,
|
2014-05-12 15:02:36 +00:00
|
|
|
Host: form.SmtpHost,
|
|
|
|
Port: form.SmtpPort,
|
2014-05-11 11:43:57 +00:00
|
|
|
TLS: form.Tls,
|
2014-05-11 10:10:37 +00:00
|
|
|
}
|
2014-05-11 11:43:57 +00:00
|
|
|
default:
|
|
|
|
ctx.Error(400)
|
|
|
|
return
|
2014-05-11 10:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var source = &models.LoginSource{
|
2014-06-08 21:53:53 +00:00
|
|
|
Type: models.LoginType(form.Type),
|
2014-05-11 10:10:37 +00:00
|
|
|
Name: form.AuthName,
|
|
|
|
IsActived: true,
|
2014-05-11 12:18:57 +00:00
|
|
|
AllowAutoRegister: form.AllowAutoRegister,
|
2014-05-11 10:10:37 +00:00
|
|
|
Cfg: u,
|
2014-05-03 02:48:14 +00:00
|
|
|
}
|
|
|
|
|
2014-06-08 21:53:53 +00:00
|
|
|
if err := models.CreateSource(source); err != nil {
|
2014-05-11 11:43:57 +00:00
|
|
|
ctx.Handle(500, "admin.auths.NewAuth", err)
|
2014-05-03 02:48:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("%s Authentication created by admin(%s): %s", ctx.Req.RequestURI,
|
2014-05-05 09:32:47 +00:00
|
|
|
ctx.User.LowerName, strings.ToLower(form.AuthName))
|
2014-05-03 02:48:14 +00:00
|
|
|
|
|
|
|
ctx.Redirect("/admin/auths")
|
|
|
|
}
|
|
|
|
|
2014-05-05 08:40:25 +00:00
|
|
|
func EditAuthSource(ctx *middleware.Context, params martini.Params) {
|
|
|
|
ctx.Data["Title"] = "Edit Authentication"
|
|
|
|
ctx.Data["PageIsAuths"] = true
|
2014-05-11 10:10:37 +00:00
|
|
|
ctx.Data["LoginTypes"] = models.LoginTypes
|
|
|
|
ctx.Data["SMTPAuths"] = models.SMTPAuths
|
|
|
|
|
2014-05-05 08:40:25 +00:00
|
|
|
id, err := base.StrTo(params["authid"]).Int64()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "admin.auths.EditAuthSource", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
u, err := models.GetLoginSourceById(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "admin.user.EditUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Source"] = u
|
|
|
|
ctx.HTML(200, "admin/auths/edit")
|
2014-05-03 02:48:14 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 08:40:25 +00:00
|
|
|
func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) {
|
|
|
|
ctx.Data["Title"] = "Edit Authentication"
|
|
|
|
ctx.Data["PageIsAuths"] = true
|
2014-05-11 10:10:37 +00:00
|
|
|
ctx.Data["LoginTypes"] = models.LoginTypes
|
|
|
|
ctx.Data["SMTPAuths"] = models.SMTPAuths
|
2014-05-05 08:40:25 +00:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "admin/auths/edit")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-11 10:10:37 +00:00
|
|
|
var config core.Conversion
|
2014-06-08 21:53:53 +00:00
|
|
|
switch models.LoginType(form.Type) {
|
|
|
|
case models.LDAP:
|
2014-05-11 10:10:37 +00:00
|
|
|
config = &models.LDAPConfig{
|
2014-05-05 08:40:25 +00:00
|
|
|
Ldapsource: ldap.Ldapsource{
|
|
|
|
Host: form.Host,
|
|
|
|
Port: form.Port,
|
2014-05-15 12:21:27 +00:00
|
|
|
UseSSL: form.UseSSL,
|
2014-05-05 08:40:25 +00:00
|
|
|
BaseDN: form.BaseDN,
|
|
|
|
Attributes: form.Attributes,
|
|
|
|
Filter: form.Filter,
|
|
|
|
MsAdSAFormat: form.MsAdSA,
|
|
|
|
Enabled: true,
|
2014-05-05 09:32:47 +00:00
|
|
|
Name: form.AuthName,
|
2014-05-05 08:40:25 +00:00
|
|
|
},
|
2014-05-11 10:10:37 +00:00
|
|
|
}
|
2014-06-08 21:53:53 +00:00
|
|
|
case models.SMTP:
|
2014-05-11 10:10:37 +00:00
|
|
|
config = &models.SMTPConfig{
|
|
|
|
Auth: form.SmtpAuth,
|
2014-05-12 15:02:36 +00:00
|
|
|
Host: form.SmtpHost,
|
|
|
|
Port: form.SmtpPort,
|
2014-05-11 11:43:57 +00:00
|
|
|
TLS: form.Tls,
|
2014-05-11 10:10:37 +00:00
|
|
|
}
|
2014-05-11 14:37:31 +00:00
|
|
|
default:
|
|
|
|
ctx.Error(400)
|
|
|
|
return
|
2014-05-11 10:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u := models.LoginSource{
|
2014-05-15 14:34:36 +00:00
|
|
|
Id: form.Id,
|
2014-05-11 10:10:37 +00:00
|
|
|
Name: form.AuthName,
|
|
|
|
IsActived: form.IsActived,
|
2014-06-08 21:53:53 +00:00
|
|
|
Type: models.LoginType(form.Type),
|
2014-05-11 12:18:57 +00:00
|
|
|
AllowAutoRegister: form.AllowAutoRegister,
|
2014-05-11 10:10:37 +00:00
|
|
|
Cfg: config,
|
2014-05-05 08:40:25 +00:00
|
|
|
}
|
|
|
|
|
2014-05-11 10:10:37 +00:00
|
|
|
if err := models.UpdateSource(&u); err != nil {
|
2014-05-11 14:37:31 +00:00
|
|
|
ctx.Handle(500, "admin.auths.EditAuth", err)
|
2014-05-05 08:40:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("%s Authentication changed by admin(%s): %s", ctx.Req.RequestURI,
|
2014-05-15 18:46:04 +00:00
|
|
|
ctx.User.LowerName, form.AuthName)
|
2014-05-05 08:40:25 +00:00
|
|
|
|
|
|
|
ctx.Redirect("/admin/auths")
|
2014-05-03 02:48:14 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 08:40:25 +00:00
|
|
|
func DeleteAuthSource(ctx *middleware.Context, params martini.Params) {
|
|
|
|
ctx.Data["Title"] = "Delete Authentication"
|
|
|
|
ctx.Data["PageIsAuths"] = true
|
|
|
|
|
|
|
|
id, err := base.StrTo(params["authid"]).Int64()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "admin.auths.DeleteAuth", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
a, err := models.GetLoginSourceById(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "admin.auths.DeleteAuth", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.DelLoginSource(a); err != nil {
|
|
|
|
switch err {
|
|
|
|
case models.ErrAuthenticationUserUsed:
|
|
|
|
ctx.Flash.Error("This authentication still has used by some users, you should move them and then delete again.")
|
|
|
|
ctx.Redirect("/admin/auths/" + params["authid"])
|
|
|
|
default:
|
|
|
|
ctx.Handle(500, "admin.auths.DeleteAuth", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Authentication deleted by admin(%s): %s", ctx.Req.RequestURI,
|
|
|
|
ctx.User.LowerName, ctx.User.LowerName)
|
|
|
|
|
|
|
|
ctx.Redirect("/admin/auths")
|
2014-05-03 02:48:14 +00:00
|
|
|
}
|