mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
201 lines
5.0 KiB
201 lines
5.0 KiB
// 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. |
|
|
|
package admin |
|
|
|
import ( |
|
"strings" |
|
|
|
"github.com/Unknwon/com" |
|
"github.com/go-xorm/core" |
|
|
|
"github.com/gogits/gogs/models" |
|
"github.com/gogits/gogs/modules/auth" |
|
"github.com/gogits/gogs/modules/auth/ldap" |
|
"github.com/gogits/gogs/modules/base" |
|
"github.com/gogits/gogs/modules/log" |
|
"github.com/gogits/gogs/modules/middleware" |
|
) |
|
|
|
const ( |
|
AUTH_NEW base.TplName = "admin/auth/new" |
|
AUTH_EDIT base.TplName = "admin/auth/edit" |
|
) |
|
|
|
func NewAuthSource(ctx *middleware.Context) { |
|
ctx.Data["Title"] = "New Authentication" |
|
ctx.Data["PageIsAuths"] = true |
|
ctx.Data["LoginTypes"] = models.LoginTypes |
|
ctx.Data["SMTPAuths"] = models.SMTPAuths |
|
ctx.HTML(200, AUTH_NEW) |
|
} |
|
|
|
func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { |
|
ctx.Data["Title"] = "New Authentication" |
|
ctx.Data["PageIsAuths"] = true |
|
ctx.Data["LoginTypes"] = models.LoginTypes |
|
ctx.Data["SMTPAuths"] = models.SMTPAuths |
|
|
|
if ctx.HasError() { |
|
ctx.HTML(200, AUTH_NEW) |
|
return |
|
} |
|
|
|
var u core.Conversion |
|
switch models.LoginType(form.Type) { |
|
case models.LDAP: |
|
u = &models.LDAPConfig{ |
|
Ldapsource: ldap.Ldapsource{ |
|
Host: form.Host, |
|
Port: form.Port, |
|
UseSSL: form.UseSSL, |
|
BaseDN: form.BaseDN, |
|
Attributes: form.Attributes, |
|
Filter: form.Filter, |
|
MsAdSAFormat: form.MsAdSA, |
|
Enabled: true, |
|
Name: form.AuthName, |
|
}, |
|
} |
|
case models.SMTP: |
|
u = &models.SMTPConfig{ |
|
Auth: form.SmtpAuth, |
|
Host: form.SmtpHost, |
|
Port: form.SmtpPort, |
|
TLS: form.Tls, |
|
} |
|
default: |
|
ctx.Error(400) |
|
return |
|
} |
|
|
|
var source = &models.LoginSource{ |
|
Type: models.LoginType(form.Type), |
|
Name: form.AuthName, |
|
IsActived: true, |
|
AllowAutoRegister: form.AllowAutoRegister, |
|
Cfg: u, |
|
} |
|
|
|
if err := models.CreateSource(source); err != nil { |
|
ctx.Handle(500, "admin.auths.NewAuth(CreateSource)", err) |
|
return |
|
} |
|
|
|
log.Trace("%s Authentication created by admin(%s): %s", ctx.Req.RequestURI, |
|
ctx.User.LowerName, strings.ToLower(form.AuthName)) |
|
|
|
ctx.Redirect("/admin/auths") |
|
} |
|
|
|
func EditAuthSource(ctx *middleware.Context) { |
|
ctx.Data["Title"] = "Edit Authentication" |
|
ctx.Data["PageIsAuths"] = true |
|
ctx.Data["LoginTypes"] = models.LoginTypes |
|
ctx.Data["SMTPAuths"] = models.SMTPAuths |
|
|
|
id, err := com.StrTo(ctx.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(GetLoginSourceById)", err) |
|
return |
|
} |
|
ctx.Data["Source"] = u |
|
ctx.HTML(200, AUTH_EDIT) |
|
} |
|
|
|
func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { |
|
ctx.Data["Title"] = "Edit Authentication" |
|
ctx.Data["PageIsAuths"] = true |
|
ctx.Data["LoginTypes"] = models.LoginTypes |
|
ctx.Data["SMTPAuths"] = models.SMTPAuths |
|
|
|
if ctx.HasError() { |
|
ctx.HTML(200, AUTH_EDIT) |
|
return |
|
} |
|
|
|
var config core.Conversion |
|
switch models.LoginType(form.Type) { |
|
case models.LDAP: |
|
config = &models.LDAPConfig{ |
|
Ldapsource: ldap.Ldapsource{ |
|
Host: form.Host, |
|
Port: form.Port, |
|
UseSSL: form.UseSSL, |
|
BaseDN: form.BaseDN, |
|
Attributes: form.Attributes, |
|
Filter: form.Filter, |
|
MsAdSAFormat: form.MsAdSA, |
|
Enabled: true, |
|
Name: form.AuthName, |
|
}, |
|
} |
|
case models.SMTP: |
|
config = &models.SMTPConfig{ |
|
Auth: form.SmtpAuth, |
|
Host: form.SmtpHost, |
|
Port: form.SmtpPort, |
|
TLS: form.Tls, |
|
} |
|
default: |
|
ctx.Error(400) |
|
return |
|
} |
|
|
|
u := models.LoginSource{ |
|
Id: form.Id, |
|
Name: form.AuthName, |
|
IsActived: form.IsActived, |
|
Type: models.LoginType(form.Type), |
|
AllowAutoRegister: form.AllowAutoRegister, |
|
Cfg: config, |
|
} |
|
|
|
if err := models.UpdateSource(&u); err != nil { |
|
ctx.Handle(500, "admin.auths.EditAuth(UpdateSource)", err) |
|
return |
|
} |
|
|
|
log.Trace("%s Authentication changed by admin(%s): %s", ctx.Req.RequestURI, |
|
ctx.User.LowerName, form.AuthName) |
|
|
|
ctx.Redirect("/admin/auths") |
|
} |
|
|
|
func DeleteAuthSource(ctx *middleware.Context) { |
|
ctx.Data["Title"] = "Delete Authentication" |
|
ctx.Data["PageIsAuths"] = true |
|
|
|
id, err := com.StrTo(ctx.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(GetLoginSourceById)", 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/" + ctx.Params(":authid")) |
|
default: |
|
ctx.Handle(500, "admin.auths.DeleteAuth(DelLoginSource)", err) |
|
} |
|
return |
|
} |
|
log.Trace("%s Authentication deleted by admin(%s): %s", ctx.Req.RequestURI, |
|
ctx.User.LowerName, ctx.User.LowerName) |
|
|
|
ctx.Redirect("/admin/auths") |
|
}
|
|
|