| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- class NF_AJAX_Controllers_DeleteAllData extends NF_Abstracts_Controller
- {
- public function __construct()
- {
- add_action( 'wp_ajax_nf_delete_all_data', array( $this, 'delete_all_data' ) );
- }
- public function delete_all_data()
- {
- check_ajax_referer( 'ninja_forms_settings_nonce', 'security' );
- global $wpdb;
- $total_subs_deleted = 0;
- $post_result = 0;
- $max_cnt = 500;
- $form_id = $_POST[ 'form' ];
- // SQL for getting 250 subs at a time
- $sub_sql = "SELECT id FROM `" . $wpdb->prefix . "posts` AS p
- LEFT JOIN `" . $wpdb->prefix . "postmeta` AS m ON p.id = m.post_id
- WHERE p.post_type = 'nf_sub' AND m.meta_key = '_form_id'
- AND m.meta_value = %s LIMIT " . $max_cnt;
- while ($post_result <= $max_cnt ) {
- $subs = $wpdb->get_col( $wpdb->prepare( $sub_sql, $form_id ),0 );
- // if we are out of subs, then stop
- if( 0 === count( $subs ) ) break;
- // otherwise, let's delete the postmeta as well
- $delete_meta_query = "DELETE FROM `" . $wpdb->prefix . "postmeta` WHERE post_id IN ( [IN] )";
- $delete_meta_query = $this->prepare_in( $delete_meta_query, $subs );
- $meta_result = $wpdb->query( $delete_meta_query );
- if ( $meta_result > 0 ) {
- // now we actually delete the posts(nf_sub)
- $delete_post_query = "DELETE FROM `" . $wpdb->prefix . "posts` WHERE id IN ( [IN] )";
- $delete_post_query = $this->prepare_in( $delete_post_query, $subs );
- $post_result = $wpdb->query( $delete_post_query );
- $total_subs_deleted = $total_subs_deleted + $post_result;
- }
- }
- $this->_data[ 'form_id' ] = $_POST[ 'form' ];
- $this->_data[ 'delete_count' ] = $total_subs_deleted;
- $this->_data[ 'success' ] = true;
- if ( 1 == $_POST[ 'last_form' ] ) {
- //if we are on the last form, then deactivate and nuke db tables
- $migrations = new NF_Database_Migrations();
- $migrations->nuke(TRUE, TRUE);
- $migrations->nuke_settings(TRUE, TRUE);
- $migrations->nuke_deprecated(TRUE, TRUE);
- deactivate_plugins( 'ninja-forms/ninja-forms.php' );
- $this->_data[ 'plugin_url' ] = admin_url( 'plugins.php' );
- }
- $this->_respond();
- }
- private function prepare_in( $sql, $vals ) {
- global $wpdb;
- $not_in_count = substr_count( $sql, '[IN]' );
- if ( $not_in_count > 0 ) {
- $args = array( str_replace( '[IN]', implode( ', ', array_fill( 0, count( $vals ), '%d' ) ), str_replace( '%', '%%', $sql ) ) );
- // This will populate ALL the [IN]'s with the $vals, assuming you have more than one [IN] in the sql
- for ( $i=0; $i < substr_count( $sql, '[IN]' ); $i++ ) {
- $args = array_merge( $args, $vals );
- }
- $sql = call_user_func_array( array( $wpdb, 'prepare' ), array_merge( $args ) );
- }
- return $sql;
- }
- }
|