diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-10-02 22:37:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 23:37:53 -0400 |
commit | 72636fd6642fcae6e7447dd499cb097c5c65ab32 (patch) | |
tree | 2138dde0d4e1fc4d0d90943b34d50f40942fada3 /modules/auth | |
parent | 5460bf89031a77ac9e0cde685c1bff00c29ee883 (diff) | |
download | gitea-72636fd6642fcae6e7447dd499cb097c5c65ab32.tar.gz gitea-72636fd6642fcae6e7447dd499cb097c5c65ab32.zip |
hCaptcha Support (#12594)
* Initial work on hCaptcha
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Use module
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Format
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* At least return and debug log a captcha error
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Pass context to hCaptcha
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Add context to recaptcha
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* fix lint
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Finish hcaptcha
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Update example config
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Apply error fix for recaptcha
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Change recaptcha ChallengeTS to string
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/user_form.go | 1 | ||||
-rw-r--r-- | modules/auth/user_form_auth_openid.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/auth/user_form.go b/modules/auth/user_form.go index 999d4cd74d..e657f78e6d 100644 --- a/modules/auth/user_form.go +++ b/modules/auth/user_form.go @@ -83,6 +83,7 @@ type RegisterForm struct { Password string `binding:"MaxSize(255)"` Retype string GRecaptchaResponse string `form:"g-recaptcha-response"` + HcaptchaResponse string `form:"h-captcha-response"` } // Validate validates the fields diff --git a/modules/auth/user_form_auth_openid.go b/modules/auth/user_form_auth_openid.go index c1d19b9bb4..841dbd840a 100644 --- a/modules/auth/user_form_auth_openid.go +++ b/modules/auth/user_form_auth_openid.go @@ -25,6 +25,7 @@ type SignUpOpenIDForm struct { UserName string `binding:"Required;AlphaDashDot;MaxSize(40)"` Email string `binding:"Required;Email;MaxSize(254)"` GRecaptchaResponse string `form:"g-recaptcha-response"` + HcaptchaResponse string `form:"h-captcha-response"` } // Validate validates the fields |