Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-admin
/
wp-content
/
plugins
/
formidable
/
classes
/
models
/
fields
:
FrmFieldCaptcha.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } /** * @since 3.0 */ class FrmFieldCaptcha extends FrmFieldType { /** * @var string * @since 3.0 */ protected $type = 'captcha'; /** * @return string */ protected function include_form_builder_file() { return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-captcha.php'; } /** * @return array */ protected function field_settings_for_type() { return array( 'required' => false, 'invalid' => true, 'captcha_size' => true, 'default' => false, ); } /** * @return array */ protected function new_field_settings() { $frm_settings = FrmAppHelper::get_settings(); return array( 'invalid' => $frm_settings->re_msg, ); } /** * @return array */ protected function extra_field_opts() { return array( 'label' => 'none', 'captcha_size' => 'normal', 'captcha_theme' => 'light', ); } /** * Remove the "for" attribute for captcha * * @param array $args * @param string $html * * @return string */ protected function before_replace_html_shortcodes( $args, $html ) { return str_replace( ' for="field_[key]"', ' for="g-recaptcha-response"', $html ); } public function front_field_input( $args, $shortcode_atts ) { $frm_settings = FrmAppHelper::get_settings(); if ( empty( $frm_settings->pubkey ) ) { return ''; } $class_prefix = $this->class_prefix(); $captcha_size = $this->captcha_size(); $allow_mutiple = $frm_settings->re_multi; $html = '<div id="' . esc_attr( $args['html_id'] ) . '" class="' . esc_attr( $class_prefix ) . 'g-recaptcha" data-sitekey="' . esc_attr( $frm_settings->pubkey ) . '" data-size="' . esc_attr( $captcha_size ) . '" data-theme="' . esc_attr( $this->field['captcha_theme'] ) . '"'; if ( $captcha_size == 'invisible' && ! $allow_mutiple ) { $html .= ' data-callback="frmAfterRecaptcha"'; } $html .= '></div>'; return $html; } protected function load_field_scripts( $args ) { $api_js_url = $this->api_url(); wp_register_script( 'recaptcha-api', $api_js_url, array( 'formidable' ), '3', true ); wp_enqueue_script( 'recaptcha-api' ); } protected function api_url() { $api_js_url = 'https://www.google.com/recaptcha/api.js?'; $frm_settings = FrmAppHelper::get_settings(); $allow_mutiple = $frm_settings->re_multi; if ( $allow_mutiple ) { $api_js_url .= '&onload=frmRecaptcha&render=explicit'; } $lang = apply_filters( 'frm_recaptcha_lang', $frm_settings->re_lang, $this->field ); if ( ! empty( $lang ) ) { $api_js_url .= '&hl=' . $lang; } return apply_filters( 'frm_recaptcha_js_url', $api_js_url ); } protected function class_prefix() { if ( $this->allow_multiple() ) { $class_prefix = 'frm-'; } else { $class_prefix = ''; } return $class_prefix; } protected function allow_multiple() { $frm_settings = FrmAppHelper::get_settings(); return $frm_settings->re_multi; } /** * @return string */ protected function captcha_size() { $frm_settings = FrmAppHelper::get_settings(); if ( in_array( $frm_settings->re_type, array( 'invisible', 'v3' ), true ) ) { return 'invisible'; } // for reverse compatibility return $this->field['captcha_size'] === 'default' ? 'normal' : $this->field['captcha_size']; } /** * @since 4.07 * @param array $args * @return array */ protected function validate_against_api( $args ) { $errors = array(); $frm_settings = FrmAppHelper::get_settings(); $resp = $this->send_api_check( $frm_settings ); $response = json_decode( wp_remote_retrieve_body( $resp ), true ); if ( is_wp_error( $resp ) ) { $error_string = $resp->get_error_message(); $errors[ 'field' . $args['id'] ] = __( 'There was a problem verifying your recaptcha', 'formidable' ); $errors[ 'field' . $args['id'] ] .= ' ' . $error_string; return $errors; } if ( ! is_array( $response ) ) { return $errors; } if ( 'v3' === $frm_settings->re_type && array_key_exists( 'score', $response ) ) { $threshold = floatval( $frm_settings->re_threshold ); $score = floatval( $response['score'] ); $this->set_score( $score ); if ( $score < $threshold ) { $response['success'] = false; } } if ( isset( $response['success'] ) && ! $response['success'] ) { // What happens when the CAPTCHA was entered incorrectly $invalid_message = FrmField::get_option( $this->field, 'invalid' ); $errors[ 'field' . $args['id'] ] = ( $invalid_message == '' ? $frm_settings->re_msg : $invalid_message ); } return $errors; } /** * @param float $score * @return void */ private function set_score( $score ) { global $frm_vars; if ( ! isset( $frm_vars['captcha_scores'] ) ) { $frm_vars['captcha_scores'] = array(); } $form_id = is_object( $this->field ) ? $this->field->form_id : $this->field['form_id']; if ( ! isset( $frm_vars['captcha_scores'][ $form_id ] ) ) { $frm_vars['captcha_scores'][ $form_id ] = $score; } } /** * @param array $args * @return array */ public function validate( $args ) { if ( ! $this->should_validate() ) { return array(); } // phpcs:ignore WordPress.Security.NonceVerification.Missing if ( ! isset( $_POST['g-recaptcha-response'] ) ) { // There was no captcha submitted. return array( 'field' . $args['id'] => __( 'The captcha is missing from this form', 'formidable' ) ); } return $this->validate_against_api( $args ); } /** * @since 4.07 * @return bool */ private function should_show_captcha() { $frm_settings = FrmAppHelper::get_settings(); return ! empty( $frm_settings->pubkey ); } protected function should_validate() { $is_hidden_field = apply_filters( 'frm_is_field_hidden', false, $this->field, wp_unslash( $_POST ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing if ( FrmAppHelper::is_admin() || $is_hidden_field ) { return false; } // don't require the captcha if it shouldn't be shown return $this->should_show_captcha(); } protected function send_api_check( $frm_settings ) { $arg_array = array( 'body' => array( 'secret' => $frm_settings->privkey, 'response' => FrmAppHelper::get_param( 'g-recaptcha-response', '', 'post', 'sanitize_text_field' ), 'remoteip' => FrmAppHelper::get_ip_address(), ), ); return wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', $arg_array ); } }