File: /home/www/torresncgolf/wp-content/plugins/ninja-forms/includes/AJAX/REST/BatchProcess.php
<?php if ( ! defined( 'ABSPATH' ) ) exit;
class NF_AJAX_REST_BatchProcess extends NF_AJAX_REST_Controller
{
protected $action = 'nf_batch_process';
public function __construct()
{
parent::__construct();
}
/**
* POST /forms/<id>/
* @param array $request_data [ int $clone_id ]
* @return array $data [ int $new_form_id ]
*/
public function post( $request_data )
{
$data = array();
// Does the current user have admin privileges
if (!current_user_can(apply_filters('ninja_forms_admin_all_forms_capabilities', 'manage_options'))) {
$data['error'] = esc_html__('Request forbidden.', 'ninja-forms');
return $data;
}
// If we don't have a nonce...
// OR if the nonce is invalid...
if ( ! isset( $request_data[ 'security' ] ) || ! wp_verify_nonce( $request_data[ 'security' ], 'ninja_forms_batch_nonce' ) ) {
// Kick the request out now.
$data[ 'error' ] = esc_html__( 'Request forbidden.', 'ninja-forms' );
return $data;
}
// If we have a batch type...
if ( isset( $request_data[ 'batch_type' ]) ){
$batch_type = $request_data[ 'batch_type' ];
$batch_processes = Ninja_Forms()->config( 'BatchProcesses' );
if ( isset ( $batch_processes[ $batch_type ][ 'class_name' ] ) ) {
$batch_class = $batch_processes[ $batch_type ][ 'class_name' ];
$batch = new $batch_class( $request_data );
} else {
$data[ 'error' ] = esc_html__( 'Invalid request.', 'ninja-forms' );
}
} // Otherwise... (We don't have a batch type.)
else {
// Kick the request out.
$data[ 'error' ] = esc_html__( 'Invalid request.', 'ninja-forms' );
}
return $data;
}
protected function get_request_data()
{
$request_data = array();
if (isset($_REQUEST['batch_type']) && $_REQUEST['batch_type']) {
$request_data['batch_type'] = WPN_Helper::sanitize_text_field($_REQUEST['batch_type']);
}
if (isset($_REQUEST['data']) && $_REQUEST['data']) {
// @TODO: Find a way to safely sanitize this later.
// sanitize_text_field overcorrects, breaking "actual" data.
$request_data['data'] = $_REQUEST['data'];
}
if (isset($_REQUEST['security']) && $_REQUEST['security']) {
$request_data['security'] = WPN_Helper::sanitize_text_field($_REQUEST['security']);
}
if (isset($_REQUEST['action']) && $_REQUEST['action']) {
$request_data['action'] = WPN_Helper::sanitize_text_field($_REQUEST['action']);
}
return $request_data;
}
}