19 lines
563 B
Python
19 lines
563 B
Python
from ctferror import *
|
|
from flask import request
|
|
from . import misc
|
|
|
|
import config
|
|
import requests
|
|
|
|
def verify_captcha():
|
|
if "g-recaptcha-response" not in request.form:
|
|
return CAPTCHA_NOT_COMPLETED
|
|
|
|
captcha_response = request.form["g-recaptcha-response"]
|
|
verify_data = dict(secret=config.secret.recaptcha_secret, response=captcha_response, remoteip=misc.get_ip())
|
|
result = requests.post("https://www.google.com/recaptcha/api/siteverify", verify_data).json()["success"]
|
|
if not result:
|
|
return CAPTCHA_INVALID
|
|
|
|
return SUCCESS
|