mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
/* global grecaptcha */
|
|
|
|
/* eslint-disable
|
|
no-return-assign,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
*/
|
|
import App from '../base'
|
|
|
|
export default App.factory('validateCaptcha', function () {
|
|
let _recaptchaCallbacks = []
|
|
const onRecaptchaSubmit = function (token) {
|
|
for (let cb of _recaptchaCallbacks) {
|
|
cb(token)
|
|
}
|
|
_recaptchaCallbacks = []
|
|
}
|
|
|
|
let recaptchaId = null
|
|
const validateCaptcha = (callback, captchaDisabled) => {
|
|
if (callback == null) {
|
|
callback = function (response) {}
|
|
}
|
|
if (
|
|
typeof grecaptcha === 'undefined' ||
|
|
grecaptcha === null ||
|
|
captchaDisabled
|
|
) {
|
|
return callback()
|
|
}
|
|
const reset = () => grecaptcha.reset()
|
|
_recaptchaCallbacks.push(callback)
|
|
_recaptchaCallbacks.push(reset)
|
|
if (recaptchaId == null) {
|
|
const el = $('#recaptcha')[0]
|
|
recaptchaId = grecaptcha.render(el, { callback: onRecaptchaSubmit })
|
|
}
|
|
return grecaptcha.execute(recaptchaId)
|
|
}
|
|
|
|
return validateCaptcha
|
|
})
|