add wp-rocket
This commit is contained in:
@@ -0,0 +1,172 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Admin\Database;
|
||||
|
||||
use WP_Rocket_WP_Background_Process;
|
||||
|
||||
/**
|
||||
* Extends the background process class for the database optimization background process.
|
||||
*
|
||||
* @since 2.11
|
||||
*
|
||||
* @see WP_Background_Process
|
||||
*/
|
||||
class Optimization_Process extends WP_Rocket_WP_Background_Process {
|
||||
/**
|
||||
* Prefix
|
||||
*
|
||||
* @var string
|
||||
* @access protected
|
||||
*/
|
||||
protected $prefix = 'rocket';
|
||||
|
||||
/**
|
||||
* Specific action identifier for sitemap preload.
|
||||
*
|
||||
* @access protected
|
||||
* @var string Action identifier
|
||||
*/
|
||||
protected $action = 'database_optimization';
|
||||
|
||||
/**
|
||||
* Count the number of optimized items.
|
||||
*
|
||||
* @access protected
|
||||
* @var array $count An array of indexed number of optimized items.
|
||||
*/
|
||||
protected $count = [];
|
||||
|
||||
/**
|
||||
* Dispatch
|
||||
*
|
||||
* @access public
|
||||
* @return array|WP_Error
|
||||
*/
|
||||
public function dispatch() {
|
||||
set_transient( 'rocket_database_optimization_process', 'running', HOUR_IN_SECONDS );
|
||||
|
||||
// Perform remote post.
|
||||
return parent::dispatch();
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform the optimization corresponding to $item
|
||||
*
|
||||
* @param mixed $item Queue item to iterate over.
|
||||
*
|
||||
* @return bool false
|
||||
*/
|
||||
protected function task( $item ) {
|
||||
global $wpdb;
|
||||
|
||||
switch ( $item ) {
|
||||
case 'database_revisions':
|
||||
$query = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type = 'revision'" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $id ) {
|
||||
$number += wp_delete_post_revision( intval( $id ) ) instanceof \WP_Post ? 1 : 0;
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_auto_drafts':
|
||||
$query = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'auto-draft'" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $id ) {
|
||||
$number += wp_delete_post( intval( $id ), true ) instanceof \WP_Post ? 1 : 0;
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_trashed_posts':
|
||||
$query = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'trash'" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $id ) {
|
||||
$number += wp_delete_post( $id, true ) instanceof \WP_Post ? 1 : 0;
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_spam_comments':
|
||||
$query = $wpdb->get_col( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = 'spam'" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $id ) {
|
||||
$number += (int) wp_delete_comment( intval( $id ), true );
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_trashed_comments':
|
||||
$query = $wpdb->get_col( "SELECT comment_ID FROM $wpdb->comments WHERE (comment_approved = 'trash' OR comment_approved = 'post-trashed')" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $id ) {
|
||||
$number += (int) wp_delete_comment( intval( $id ), true );
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_expired_transients':
|
||||
$time = isset( $_SERVER['REQUEST_TIME'] ) ? (int) $_SERVER['REQUEST_TIME'] : time();
|
||||
$query = $wpdb->get_col( $wpdb->prepare( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s AND option_value < %d", $wpdb->esc_like( '_transient_timeout' ) . '%', $time ) );
|
||||
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $transient ) {
|
||||
$key = str_replace( '_transient_timeout_', '', $transient );
|
||||
$number += (int) delete_transient( $key );
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_all_transients':
|
||||
$query = $wpdb->get_col( $wpdb->prepare( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s OR option_name LIKE %s", $wpdb->esc_like( '_transient_' ) . '%', $wpdb->esc_like( '_site_transient_' ) . '%' ) );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $transient ) {
|
||||
if ( strpos( $transient, '_site_transient_' ) !== false ) {
|
||||
$number += (int) delete_site_transient( str_replace( '_site_transient_', '', $transient ) );
|
||||
} else {
|
||||
$number += (int) delete_transient( str_replace( '_transient_', '', $transient ) );
|
||||
}
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
case 'database_optimize_tables':
|
||||
$query = $wpdb->get_results( "SELECT table_name, data_free FROM information_schema.tables WHERE table_schema = '" . DB_NAME . "' and Engine <> 'InnoDB' and data_free > 0" );
|
||||
if ( $query ) {
|
||||
$number = 0;
|
||||
foreach ( $query as $table ) {
|
||||
$number += (int) $wpdb->query( "OPTIMIZE TABLE $table->table_name" );
|
||||
}
|
||||
|
||||
$this->count[ $item ] = $number;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Complete
|
||||
*/
|
||||
protected function complete() {
|
||||
delete_transient( 'rocket_database_optimization_process' );
|
||||
set_transient( 'rocket_database_optimization_process_complete', $this->count );
|
||||
|
||||
parent::complete();
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Admin\Database;
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Handles the database optimization process.
|
||||
*
|
||||
* @since 2.11
|
||||
* @author Remy Perona
|
||||
*/
|
||||
class Optimization {
|
||||
/**
|
||||
* Background process instance
|
||||
*
|
||||
* @since 2.11
|
||||
* @var Optimization_Process $process Background Process instance.
|
||||
* @access protected
|
||||
*/
|
||||
protected $process;
|
||||
|
||||
/**
|
||||
* Array of option name/label pairs.
|
||||
*
|
||||
* @var array
|
||||
* @access private
|
||||
*/
|
||||
private $options;
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*
|
||||
* @since 2.11
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @param Optimization_Process $process Background process instance.
|
||||
*/
|
||||
public function __construct( Optimization_Process $process ) {
|
||||
$this->process = $process;
|
||||
$this->options = [
|
||||
'database_revisions' => __( 'Revisions', 'rocket' ),
|
||||
'database_auto_drafts' => __( 'Auto Drafts', 'rocket' ),
|
||||
'database_trashed_posts' => __( 'Trashed Posts', 'rocket' ),
|
||||
'database_spam_comments' => __( 'Spam Comments', 'rocket' ),
|
||||
'database_trashed_comments' => __( 'Trashed Comments', 'rocket' ),
|
||||
'database_expired_transients' => __( 'Expired transients', 'rocket' ),
|
||||
'database_all_transients' => __( 'Transients', 'rocket' ),
|
||||
'database_optimize_tables' => __( 'Tables', 'rocket' ),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Database options
|
||||
*
|
||||
* @since 3.0.4
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_options() {
|
||||
return $this->options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs the database optimization
|
||||
*
|
||||
* @since 2.11
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @param array $options WP Rocket Database options.
|
||||
*/
|
||||
public function process_handler( $options ) {
|
||||
if ( method_exists( $this->process, 'cancel_process' ) ) {
|
||||
$this->process->cancel_process();
|
||||
}
|
||||
|
||||
array_map( [ $this->process, 'push_to_queue' ], $options );
|
||||
|
||||
$this->process->save()->dispatch();
|
||||
}
|
||||
|
||||
/**
|
||||
* Count the number of items concerned by the database cleanup
|
||||
*
|
||||
* @since 2.8
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @param string $type Item type to count.
|
||||
* @return int Number of items for this type
|
||||
*/
|
||||
public function count_cleanup_items( $type ) {
|
||||
global $wpdb;
|
||||
|
||||
$count = 0;
|
||||
|
||||
switch ( $type ) {
|
||||
case 'database_revisions':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(ID) FROM $wpdb->posts WHERE post_type = 'revision'" );
|
||||
break;
|
||||
case 'database_auto_drafts':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(ID) FROM $wpdb->posts WHERE post_status = 'auto-draft'" );
|
||||
break;
|
||||
case 'database_trashed_posts':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(ID) FROM $wpdb->posts WHERE post_status = 'trash'" );
|
||||
break;
|
||||
case 'database_spam_comments':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'" );
|
||||
break;
|
||||
case 'database_trashed_comments':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE (comment_approved = 'trash' OR comment_approved = 'post-trashed')" );
|
||||
break;
|
||||
case 'database_expired_transients':
|
||||
$time = isset( $_SERVER['REQUEST_TIME'] ) ? (int) $_SERVER['REQUEST_TIME'] : time();
|
||||
$count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(option_name) FROM $wpdb->options WHERE option_name LIKE %s AND option_value < %d", $wpdb->esc_like( '_transient_timeout' ) . '%', $time ) );
|
||||
break;
|
||||
case 'database_all_transients':
|
||||
$count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(option_id) FROM $wpdb->options WHERE option_name LIKE %s OR option_name LIKE %s", $wpdb->esc_like( '_transient_' ) . '%', $wpdb->esc_like( '_site_transient_' ) . '%' ) );
|
||||
break;
|
||||
case 'database_optimize_tables':
|
||||
$count = $wpdb->get_var( "SELECT COUNT(table_name) FROM information_schema.tables WHERE table_schema = '" . DB_NAME . "' and Engine <> 'InnoDB' and data_free > 0" );
|
||||
break;
|
||||
}
|
||||
|
||||
return $count;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user