mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	This PR just consumes the [hcaptcha](https://gitea.com/jolheiser/hcaptcha) and [haveibeenpwned](https://gitea.com/jolheiser/pwn) modules directly into Gitea. Also let this serve as a notice that I'm fine with transferring my license (which was already MIT) from my own name to "The Gitea Authors". Signed-off-by: jolheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			751 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			751 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package password
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/password/pwn"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
)
 | 
						|
 | 
						|
// IsPwned checks whether a password has been pwned
 | 
						|
// NOTE: This func returns true if it encounters an error under the assumption that you ALWAYS want to check against
 | 
						|
// HIBP, so not getting a response should block a password until it can be verified.
 | 
						|
func IsPwned(ctx context.Context, password string) (bool, error) {
 | 
						|
	if !setting.PasswordCheckPwn {
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
 | 
						|
	client := pwn.New(pwn.WithContext(ctx))
 | 
						|
	count, err := client.CheckPassword(password, true)
 | 
						|
	if err != nil {
 | 
						|
		return true, err
 | 
						|
	}
 | 
						|
 | 
						|
	return count > 0, nil
 | 
						|
}
 |