mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:41:32 +01:00 
			
		
		
		
	* initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
		
			
				
	
	
		
			295 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			295 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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 (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/Unknwon/com"
 | |
| 	"github.com/go-xorm/core"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	"code.gitea.io/gitea/modules/auth"
 | |
| 	"code.gitea.io/gitea/modules/auth/ldap"
 | |
| 	"code.gitea.io/gitea/modules/base"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/log"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	tplAuths    base.TplName = "admin/auth/list"
 | |
| 	tplAuthNew  base.TplName = "admin/auth/new"
 | |
| 	tplAuthEdit base.TplName = "admin/auth/edit"
 | |
| )
 | |
| 
 | |
| // Authentications show authentication config page
 | |
| func Authentications(ctx *context.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()
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(500, "LoginSources", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Total"] = models.CountLoginSources()
 | |
| 	ctx.HTML(200, tplAuths)
 | |
| }
 | |
| 
 | |
| type dropdownItem struct {
 | |
| 	Name string
 | |
| 	Type interface{}
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	authSources = []dropdownItem{
 | |
| 		{models.LoginNames[models.LoginLDAP], models.LoginLDAP},
 | |
| 		{models.LoginNames[models.LoginDLDAP], models.LoginDLDAP},
 | |
| 		{models.LoginNames[models.LoginSMTP], models.LoginSMTP},
 | |
| 		{models.LoginNames[models.LoginPAM], models.LoginPAM},
 | |
| 		{models.LoginNames[models.LoginOAuth2], models.LoginOAuth2},
 | |
| 	}
 | |
| 	securityProtocols = []dropdownItem{
 | |
| 		{models.SecurityProtocolNames[ldap.SecurityProtocolUnencrypted], ldap.SecurityProtocolUnencrypted},
 | |
| 		{models.SecurityProtocolNames[ldap.SecurityProtocolLDAPS], ldap.SecurityProtocolLDAPS},
 | |
| 		{models.SecurityProtocolNames[ldap.SecurityProtocolStartTLS], ldap.SecurityProtocolStartTLS},
 | |
| 	}
 | |
| )
 | |
| 
 | |
| // NewAuthSource render adding a new auth source page
 | |
| func NewAuthSource(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("admin.auths.new")
 | |
| 	ctx.Data["PageIsAdmin"] = true
 | |
| 	ctx.Data["PageIsAdminAuthentications"] = true
 | |
| 
 | |
| 	ctx.Data["type"] = models.LoginLDAP
 | |
| 	ctx.Data["CurrentTypeName"] = models.LoginNames[models.LoginLDAP]
 | |
| 	ctx.Data["CurrentSecurityProtocol"] = models.SecurityProtocolNames[ldap.SecurityProtocolUnencrypted]
 | |
| 	ctx.Data["smtp_auth"] = "PLAIN"
 | |
| 	ctx.Data["is_active"] = true
 | |
| 	ctx.Data["AuthSources"] = authSources
 | |
| 	ctx.Data["SecurityProtocols"] = securityProtocols
 | |
| 	ctx.Data["SMTPAuths"] = models.SMTPAuths
 | |
| 	ctx.Data["OAuth2Providers"] = models.OAuth2Providers
 | |
| 
 | |
| 	// only the first as default
 | |
| 	for key := range models.OAuth2Providers {
 | |
| 		ctx.Data["oauth2_provider"] = key
 | |
| 		break
 | |
| 	}
 | |
| 
 | |
| 	ctx.HTML(200, tplAuthNew)
 | |
| }
 | |
| 
 | |
| func parseLDAPConfig(form auth.AuthenticationForm) *models.LDAPConfig {
 | |
| 	return &models.LDAPConfig{
 | |
| 		Source: &ldap.Source{
 | |
| 			Name:              form.Name,
 | |
| 			Host:              form.Host,
 | |
| 			Port:              form.Port,
 | |
| 			SecurityProtocol:  ldap.SecurityProtocol(form.SecurityProtocol),
 | |
| 			SkipVerify:        form.SkipVerify,
 | |
| 			BindDN:            form.BindDN,
 | |
| 			UserDN:            form.UserDN,
 | |
| 			BindPassword:      form.BindPassword,
 | |
| 			UserBase:          form.UserBase,
 | |
| 			AttributeUsername: form.AttributeUsername,
 | |
| 			AttributeName:     form.AttributeName,
 | |
| 			AttributeSurname:  form.AttributeSurname,
 | |
| 			AttributeMail:     form.AttributeMail,
 | |
| 			AttributesInBind:  form.AttributesInBind,
 | |
| 			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,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func parseOAuth2Config(form auth.AuthenticationForm) *models.OAuth2Config {
 | |
| 	return &models.OAuth2Config{
 | |
| 		Provider:     form.Oauth2Provider,
 | |
| 		ClientID:     form.Oauth2Key,
 | |
| 		ClientSecret: form.Oauth2Secret,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // NewAuthSourcePost response for adding an auth source
 | |
| func NewAuthSourcePost(ctx *context.Context, form auth.AuthenticationForm) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("admin.auths.new")
 | |
| 	ctx.Data["PageIsAdmin"] = true
 | |
| 	ctx.Data["PageIsAdminAuthentications"] = true
 | |
| 
 | |
| 	ctx.Data["CurrentTypeName"] = models.LoginNames[models.LoginType(form.Type)]
 | |
| 	ctx.Data["CurrentSecurityProtocol"] = models.SecurityProtocolNames[ldap.SecurityProtocol(form.SecurityProtocol)]
 | |
| 	ctx.Data["AuthSources"] = authSources
 | |
| 	ctx.Data["SecurityProtocols"] = securityProtocols
 | |
| 	ctx.Data["SMTPAuths"] = models.SMTPAuths
 | |
| 	ctx.Data["OAuth2Providers"] = models.OAuth2Providers
 | |
| 
 | |
| 	hasTLS := false
 | |
| 	var config core.Conversion
 | |
| 	switch models.LoginType(form.Type) {
 | |
| 	case models.LoginLDAP, models.LoginDLDAP:
 | |
| 		config = parseLDAPConfig(form)
 | |
| 		hasTLS = ldap.SecurityProtocol(form.SecurityProtocol) > ldap.SecurityProtocolUnencrypted
 | |
| 	case models.LoginSMTP:
 | |
| 		config = parseSMTPConfig(form)
 | |
| 		hasTLS = true
 | |
| 	case models.LoginPAM:
 | |
| 		config = &models.PAMConfig{
 | |
| 			ServiceName: form.PAMServiceName,
 | |
| 		}
 | |
| 	case models.LoginOAuth2:
 | |
| 		config = parseOAuth2Config(form)
 | |
| 	default:
 | |
| 		ctx.Error(400)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["HasTLS"] = hasTLS
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, tplAuthNew)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := models.CreateLoginSource(&models.LoginSource{
 | |
| 		Type:      models.LoginType(form.Type),
 | |
| 		Name:      form.Name,
 | |
| 		IsActived: form.IsActive,
 | |
| 		Cfg:       config,
 | |
| 	}); err != nil {
 | |
| 		if models.IsErrLoginSourceAlreadyExist(err) {
 | |
| 			ctx.Data["Err_Name"] = true
 | |
| 			ctx.RenderWithErr(ctx.Tr("admin.auths.login_source_exist", err.(models.ErrLoginSourceAlreadyExist).Name), tplAuthNew, form)
 | |
| 		} else {
 | |
| 			ctx.Handle(500, "CreateSource", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	log.Trace("Authentication created by admin(%s): %s", ctx.User.Name, form.Name)
 | |
| 
 | |
| 	ctx.Flash.Success(ctx.Tr("admin.auths.new_success", form.Name))
 | |
| 	ctx.Redirect(setting.AppSubURL + "/admin/auths")
 | |
| }
 | |
| 
 | |
| // EditAuthSource render editing auth source page
 | |
| func EditAuthSource(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
 | |
| 	ctx.Data["PageIsAdmin"] = true
 | |
| 	ctx.Data["PageIsAdminAuthentications"] = true
 | |
| 
 | |
| 	ctx.Data["SecurityProtocols"] = securityProtocols
 | |
| 	ctx.Data["SMTPAuths"] = models.SMTPAuths
 | |
| 	ctx.Data["OAuth2Providers"] = models.OAuth2Providers
 | |
| 
 | |
| 	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()
 | |
| 
 | |
| 	if source.IsOAuth2() {
 | |
| 		ctx.Data["CurrentOAuth2Provider"] = models.OAuth2Providers[source.OAuth2().Provider]
 | |
| 	}
 | |
| 	ctx.HTML(200, tplAuthEdit)
 | |
| }
 | |
| 
 | |
| // EditAuthSourcePost response for editing auth source
 | |
| func EditAuthSourcePost(ctx *context.Context, form auth.AuthenticationForm) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("admin.auths.edit")
 | |
| 	ctx.Data["PageIsAdmin"] = true
 | |
| 	ctx.Data["PageIsAdminAuthentications"] = true
 | |
| 
 | |
| 	ctx.Data["SMTPAuths"] = models.SMTPAuths
 | |
| 	ctx.Data["OAuth2Providers"] = models.OAuth2Providers
 | |
| 
 | |
| 	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()
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, tplAuthEdit)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	var config core.Conversion
 | |
| 	switch models.LoginType(form.Type) {
 | |
| 	case models.LoginLDAP, models.LoginDLDAP:
 | |
| 		config = parseLDAPConfig(form)
 | |
| 	case models.LoginSMTP:
 | |
| 		config = parseSMTPConfig(form)
 | |
| 	case models.LoginPAM:
 | |
| 		config = &models.PAMConfig{
 | |
| 			ServiceName: form.PAMServiceName,
 | |
| 		}
 | |
| 	case models.LoginOAuth2:
 | |
| 		config = parseOAuth2Config(form)
 | |
| 	default:
 | |
| 		ctx.Error(400)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	source.Name = form.Name
 | |
| 	source.IsActived = form.IsActive
 | |
| 	source.Cfg = config
 | |
| 	if err := models.UpdateSource(source); err != nil {
 | |
| 		ctx.Handle(500, "UpdateSource", err)
 | |
| 		return
 | |
| 	}
 | |
| 	log.Trace("Authentication changed by admin(%s): %d", ctx.User.Name, source.ID)
 | |
| 
 | |
| 	ctx.Flash.Success(ctx.Tr("admin.auths.update_success"))
 | |
| 	ctx.Redirect(setting.AppSubURL + "/admin/auths/" + com.ToStr(form.ID))
 | |
| }
 | |
| 
 | |
| // DeleteAuthSource response for deleting an auth source
 | |
| func DeleteAuthSource(ctx *context.Context) {
 | |
| 	source, err := models.GetLoginSourceByID(ctx.ParamsInt64(":authid"))
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(500, "GetLoginSourceByID", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err = models.DeleteSource(source); err != nil {
 | |
| 		if models.IsErrLoginSourceInUse(err) {
 | |
| 			ctx.Flash.Error(ctx.Tr("admin.auths.still_in_used"))
 | |
| 		} else {
 | |
| 			ctx.Flash.Error(fmt.Sprintf("DeleteSource: %v", err))
 | |
| 		}
 | |
| 		ctx.JSON(200, map[string]interface{}{
 | |
| 			"redirect": setting.AppSubURL + "/admin/auths/" + ctx.Params(":authid"),
 | |
| 		})
 | |
| 		return
 | |
| 	}
 | |
| 	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",
 | |
| 	})
 | |
| }
 |