configs->get_value('aiowps_enable_registration_page_captcha') == '1'){ add_filter('registration_errors', array(&$this, 'aiowps_validate_registration_with_captcha'), 10, 3); add_filter('woocommerce_process_registration_errors', array(&$this, 'aiowps_validate_woo_registration_with_captcha'), 10, 4); } } /* * This function will add a special meta string in the users table * Meta field name: 'aiowps_account_status' * Meta field value: 'pending' */ function aiowps_user_registration_action_handler($user_id) { global $wpdb, $aio_wp_security; //Check if auto pending new account status feature is enabled if ($aio_wp_security->configs->get_value('aiowps_enable_manual_registration_approval') == '1') { if ( isset($_REQUEST['action']) && 'createuser' == $_REQUEST['action'] ) { return; //if the user has been added from admin side don't put in pending state } $res = add_user_meta($user_id, 'aiowps_account_status', 'pending'); if (!$res){ $aio_wp_security->debug_logger->log_debug("aiowps_user_registration_action_handler: Error adding user meta data: aiowps_account_status",4); } $user_ip_address = AIOWPSecurity_Utility_IP::get_user_ip_address(); $res = add_user_meta($user_id, 'aiowps_registrant_ip', $user_ip_address); if (!$res){ $aio_wp_security->debug_logger->log_debug("aiowps_user_registration_action_handler: Error adding user meta data: aiowps_registrant_ip",4); } } } /* * This function will set the special meta string in the usermeta table so that the account becomes active * Meta field name: 'aiowps_account_status' * Meta field values: 'active', 'pending', etc */ function aiowps_set_user_account_status($user_id, $status) { global $wpdb, $aio_wp_security; $res = update_user_meta($user_id, 'aiowps_account_status', $status); if (!$res){ $aio_wp_security->debug_logger->log_debug("aiowps_set_user_account_status: Error updating user meta data: aiowps_account_status",4); } } function aiowps_validate_registration_with_captcha($errors, $sanitized_user_login, $user_email) { global $aio_wp_security; $locked = $aio_wp_security->user_login_obj->check_locked_user(); if($locked == null){ //user is not locked continue }else{ $errors->add('authentication_failed', __('ERROR: You are not allowed to register because your IP address is currently locked!', 'all-in-one-wp-security-and-firewall')); return $errors; } $verify_captcha = $aio_wp_security->captcha_obj->verify_captcha_submit(); if($verify_captcha === false) { // wrong answer was entered $errors->add('authentication_failed', __('ERROR: Your answer was incorrect - please try again.', 'all-in-one-wp-security-and-firewall')); return $errors; } return $errors; } function aiowps_validate_woo_registration_with_captcha($errors, $username, $password, $email) { global $aio_wp_security; $locked = $aio_wp_security->user_login_obj->check_locked_user(); if($locked == null){ //user is not locked continue }else{ $errors->add('authentication_failed', __('ERROR: You are not allowed to register because your IP address is currently locked!', 'all-in-one-wp-security-and-firewall')); } $verify_captcha = $aio_wp_security->captcha_obj->verify_captcha_submit(); if($verify_captcha === false) { // wrong answer was entered $errors->add('authentication_failed', __('ERROR: Your answer was incorrect - please try again.', 'all-in-one-wp-security-and-firewall')); } return $errors; } }