mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Backport #31015 by @denyskon Do not try to create a new authorization grant when one exists already, thus preventing a DB-related authorization issue. Fix https://github.com/go-gitea/gitea/pull/30790#issuecomment-2118812426 Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -556,7 +556,13 @@ func GrantApplicationOAuth(ctx *context.Context) {
 | 
			
		||||
		ctx.ServerError("GetOAuth2ApplicationByClientID", err)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	grant, err := app.CreateGrant(ctx, ctx.Doer.ID, form.Scope)
 | 
			
		||||
	grant, err := app.GetGrantByUserID(ctx, ctx.Doer.ID)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		handleServerError(ctx, form.State, form.RedirectURI)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	if grant == nil {
 | 
			
		||||
		grant, err = app.CreateGrant(ctx, ctx.Doer.ID, form.Scope)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			handleAuthorizeError(ctx, AuthorizeError{
 | 
			
		||||
				State:            form.State,
 | 
			
		||||
@@ -565,6 +571,15 @@ func GrantApplicationOAuth(ctx *context.Context) {
 | 
			
		||||
			}, form.RedirectURI)
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
	} else if grant.Scope != form.Scope {
 | 
			
		||||
		handleAuthorizeError(ctx, AuthorizeError{
 | 
			
		||||
			State:            form.State,
 | 
			
		||||
			ErrorDescription: "a grant exists with different scope",
 | 
			
		||||
			ErrorCode:        ErrorCodeServerError,
 | 
			
		||||
		}, form.RedirectURI)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if len(form.Nonce) > 0 {
 | 
			
		||||
		err := grant.SetNonce(ctx, form.Nonce)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user