* 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)
		
			
				
	
	
		
			276 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			276 lines
		
	
	
		
			6.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 auth
 | 
						|
 | 
						|
import (
 | 
						|
	"reflect"
 | 
						|
	"strings"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/Unknwon/com"
 | 
						|
	"github.com/go-macaron/binding"
 | 
						|
	"github.com/go-macaron/session"
 | 
						|
	gouuid "github.com/satori/go.uuid"
 | 
						|
	"gopkg.in/macaron.v1"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models"
 | 
						|
	"code.gitea.io/gitea/modules/base"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
)
 | 
						|
 | 
						|
// IsAPIPath if URL is an api path
 | 
						|
func IsAPIPath(url string) bool {
 | 
						|
	return strings.HasPrefix(url, "/api/")
 | 
						|
}
 | 
						|
 | 
						|
// SignedInID returns the id of signed in user.
 | 
						|
func SignedInID(ctx *macaron.Context, sess session.Store) int64 {
 | 
						|
	if !models.HasEngine {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
 | 
						|
	// Check access token.
 | 
						|
	if IsAPIPath(ctx.Req.URL.Path) {
 | 
						|
		tokenSHA := ctx.Query("token")
 | 
						|
		if len(tokenSHA) <= 0 {
 | 
						|
			tokenSHA = ctx.Query("access_token")
 | 
						|
		}
 | 
						|
		if len(tokenSHA) == 0 {
 | 
						|
			// Well, check with header again.
 | 
						|
			auHead := ctx.Req.Header.Get("Authorization")
 | 
						|
			if len(auHead) > 0 {
 | 
						|
				auths := strings.Fields(auHead)
 | 
						|
				if len(auths) == 2 && auths[0] == "token" {
 | 
						|
					tokenSHA = auths[1]
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// Let's see if token is valid.
 | 
						|
		if len(tokenSHA) > 0 {
 | 
						|
			t, err := models.GetAccessTokenBySHA(tokenSHA)
 | 
						|
			if err != nil {
 | 
						|
				if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
 | 
						|
					log.Error(4, "GetAccessTokenBySHA: %v", err)
 | 
						|
				}
 | 
						|
				return 0
 | 
						|
			}
 | 
						|
			t.Updated = time.Now()
 | 
						|
			if err = models.UpdateAccessToken(t); err != nil {
 | 
						|
				log.Error(4, "UpdateAccessToken: %v", err)
 | 
						|
			}
 | 
						|
			return t.UID
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	uid := sess.Get("uid")
 | 
						|
	if uid == nil {
 | 
						|
		return 0
 | 
						|
	} else if id, ok := uid.(int64); ok {
 | 
						|
		return id
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
// SignedInUser returns the user object of signed user.
 | 
						|
// It returns a bool value to indicate whether user uses basic auth or not.
 | 
						|
func SignedInUser(ctx *macaron.Context, sess session.Store) (*models.User, bool) {
 | 
						|
	if !models.HasEngine {
 | 
						|
		return nil, false
 | 
						|
	}
 | 
						|
 | 
						|
	if uid := SignedInID(ctx, sess); uid > 0 {
 | 
						|
		user, err := models.GetUserByID(uid)
 | 
						|
		if err == nil {
 | 
						|
			return user, false
 | 
						|
		} else if !models.IsErrUserNotExist(err) {
 | 
						|
			log.Error(4, "GetUserById: %v", err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if setting.Service.EnableReverseProxyAuth {
 | 
						|
		webAuthUser := ctx.Req.Header.Get(setting.ReverseProxyAuthUser)
 | 
						|
		if len(webAuthUser) > 0 {
 | 
						|
			u, err := models.GetUserByName(webAuthUser)
 | 
						|
			if err != nil {
 | 
						|
				if !models.IsErrUserNotExist(err) {
 | 
						|
					log.Error(4, "GetUserByName: %v", err)
 | 
						|
					return nil, false
 | 
						|
				}
 | 
						|
 | 
						|
				// Check if enabled auto-registration.
 | 
						|
				if setting.Service.EnableReverseProxyAutoRegister {
 | 
						|
					u := &models.User{
 | 
						|
						Name:     webAuthUser,
 | 
						|
						Email:    gouuid.NewV4().String() + "@localhost",
 | 
						|
						Passwd:   webAuthUser,
 | 
						|
						IsActive: true,
 | 
						|
					}
 | 
						|
					if err = models.CreateUser(u); err != nil {
 | 
						|
						// FIXME: should I create a system notice?
 | 
						|
						log.Error(4, "CreateUser: %v", err)
 | 
						|
						return nil, false
 | 
						|
					}
 | 
						|
					return u, false
 | 
						|
				}
 | 
						|
			}
 | 
						|
			return u, false
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Check with basic auth.
 | 
						|
	baHead := ctx.Req.Header.Get("Authorization")
 | 
						|
	if len(baHead) > 0 {
 | 
						|
		auths := strings.Fields(baHead)
 | 
						|
		if len(auths) == 2 && auths[0] == "Basic" {
 | 
						|
			uname, passwd, _ := base.BasicAuthDecode(auths[1])
 | 
						|
 | 
						|
			u, err := models.UserSignIn(uname, passwd)
 | 
						|
			if err != nil {
 | 
						|
				if !models.IsErrUserNotExist(err) {
 | 
						|
					log.Error(4, "UserSignIn: %v", err)
 | 
						|
				}
 | 
						|
				return nil, false
 | 
						|
			}
 | 
						|
 | 
						|
			return u, true
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil, false
 | 
						|
}
 | 
						|
 | 
						|
// Form form binding interface
 | 
						|
type Form interface {
 | 
						|
	binding.Validator
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	binding.SetNameMapper(com.ToSnakeCase)
 | 
						|
}
 | 
						|
 | 
						|
// AssignForm assign form values back to the template data.
 | 
						|
func AssignForm(form interface{}, data map[string]interface{}) {
 | 
						|
	typ := reflect.TypeOf(form)
 | 
						|
	val := reflect.ValueOf(form)
 | 
						|
 | 
						|
	if typ.Kind() == reflect.Ptr {
 | 
						|
		typ = typ.Elem()
 | 
						|
		val = val.Elem()
 | 
						|
	}
 | 
						|
 | 
						|
	for i := 0; i < typ.NumField(); i++ {
 | 
						|
		field := typ.Field(i)
 | 
						|
 | 
						|
		fieldName := field.Tag.Get("form")
 | 
						|
		// Allow ignored fields in the struct
 | 
						|
		if fieldName == "-" {
 | 
						|
			continue
 | 
						|
		} else if len(fieldName) == 0 {
 | 
						|
			fieldName = com.ToSnakeCase(field.Name)
 | 
						|
		}
 | 
						|
 | 
						|
		data[fieldName] = val.Field(i).Interface()
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func getRuleBody(field reflect.StructField, prefix string) string {
 | 
						|
	for _, rule := range strings.Split(field.Tag.Get("binding"), ";") {
 | 
						|
		if strings.HasPrefix(rule, prefix) {
 | 
						|
			return rule[len(prefix): len(rule) - 1]
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
// GetSize get size int form tag
 | 
						|
func GetSize(field reflect.StructField) string {
 | 
						|
	return getRuleBody(field, "Size(")
 | 
						|
}
 | 
						|
 | 
						|
// GetMinSize get minimal size in form tag
 | 
						|
func GetMinSize(field reflect.StructField) string {
 | 
						|
	return getRuleBody(field, "MinSize(")
 | 
						|
}
 | 
						|
 | 
						|
// GetMaxSize get max size in form tag
 | 
						|
func GetMaxSize(field reflect.StructField) string {
 | 
						|
	return getRuleBody(field, "MaxSize(")
 | 
						|
}
 | 
						|
 | 
						|
// GetInclude get include in form tag
 | 
						|
func GetInclude(field reflect.StructField) string {
 | 
						|
	return getRuleBody(field, "Include(")
 | 
						|
}
 | 
						|
 | 
						|
// FIXME: struct contains a struct
 | 
						|
func validateStruct(obj interface{}) binding.Errors {
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func validate(errs binding.Errors, data map[string]interface{}, f Form, l macaron.Locale) binding.Errors {
 | 
						|
	if errs.Len() == 0 {
 | 
						|
		return errs
 | 
						|
	}
 | 
						|
 | 
						|
	data["HasError"] = true
 | 
						|
	AssignForm(f, data)
 | 
						|
 | 
						|
	typ := reflect.TypeOf(f)
 | 
						|
	val := reflect.ValueOf(f)
 | 
						|
 | 
						|
	if typ.Kind() == reflect.Ptr {
 | 
						|
		typ = typ.Elem()
 | 
						|
		val = val.Elem()
 | 
						|
	}
 | 
						|
 | 
						|
	for i := 0; i < typ.NumField(); i++ {
 | 
						|
		field := typ.Field(i)
 | 
						|
 | 
						|
		fieldName := field.Tag.Get("form")
 | 
						|
		// Allow ignored fields in the struct
 | 
						|
		if fieldName == "-" {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if errs[0].FieldNames[0] == field.Name {
 | 
						|
			data["Err_" + field.Name] = true
 | 
						|
 | 
						|
			trName := field.Tag.Get("locale")
 | 
						|
			if len(trName) == 0 {
 | 
						|
				trName = l.Tr("form." + field.Name)
 | 
						|
			} else {
 | 
						|
				trName = l.Tr(trName)
 | 
						|
			}
 | 
						|
 | 
						|
			switch errs[0].Classification {
 | 
						|
			case binding.ERR_REQUIRED:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.require_error")
 | 
						|
			case binding.ERR_ALPHA_DASH:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.alpha_dash_error")
 | 
						|
			case binding.ERR_ALPHA_DASH_DOT:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.alpha_dash_dot_error")
 | 
						|
			case binding.ERR_SIZE:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.size_error", GetSize(field))
 | 
						|
			case binding.ERR_MIN_SIZE:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.min_size_error", GetMinSize(field))
 | 
						|
			case binding.ERR_MAX_SIZE:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.max_size_error", GetMaxSize(field))
 | 
						|
			case binding.ERR_EMAIL:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.email_error")
 | 
						|
			case binding.ERR_URL:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.url_error")
 | 
						|
			case binding.ERR_INCLUDE:
 | 
						|
				data["ErrorMsg"] = trName + l.Tr("form.include_error", GetInclude(field))
 | 
						|
			default:
 | 
						|
				data["ErrorMsg"] = l.Tr("form.unknown_error") + " " + errs[0].Classification
 | 
						|
			}
 | 
						|
			return errs
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return errs
 | 
						|
}
 |