mirror of
https://github.com/go-gitea/gitea.git
synced 2024-05-11 05:55:29 +00:00
72636fd664
* Initial work on hCaptcha Signed-off-by: jolheiser <[email protected]> * Use module Signed-off-by: jolheiser <[email protected]> * Format Signed-off-by: jolheiser <[email protected]> * At least return and debug log a captcha error Signed-off-by: jolheiser <[email protected]> * Pass context to hCaptcha Signed-off-by: jolheiser <[email protected]> * Add context to recaptcha Signed-off-by: jolheiser <[email protected]> * fix lint Signed-off-by: Andrew Thornton <[email protected]> * Finish hcaptcha Signed-off-by: jolheiser <[email protected]> * Update example config Signed-off-by: jolheiser <[email protected]> * Apply error fix for recaptcha Signed-off-by: jolheiser <[email protected]> * Change recaptcha ChallengeTS to string Signed-off-by: jolheiser <[email protected]> Co-authored-by: Andrew Thornton <[email protected]>
35 lines
779 B
Go
35 lines
779 B
Go
// Copyright 2020 The Gitea 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 hcaptcha
|
|
|
|
import (
|
|
"context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"go.jolheiser.com/hcaptcha"
|
|
)
|
|
|
|
// Verify calls hCaptcha API to verify token
|
|
func Verify(ctx context.Context, response string) (bool, error) {
|
|
client, err := hcaptcha.New(setting.Service.HcaptchaSecret, hcaptcha.WithContext(ctx))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
resp, err := client.Verify(response, hcaptcha.PostOptions{
|
|
Sitekey: setting.Service.HcaptchaSitekey,
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
var respErr error
|
|
if len(resp.ErrorCodes) > 0 {
|
|
respErr = resp.ErrorCodes[0]
|
|
}
|
|
return resp.Success, respErr
|
|
}
|