File: /home/clinicamaciel/www/site/wp-content/plugins/w3-total-cache/Generic_Environment.php
<?php
namespace W3TC;
class Generic_Environment {
/**
* Fixes environment
*
* @param Config $config
* @param bool $force_all_checks
* @throws Util_Environment_Exceptions
*/
function fix_on_wpadmin_request( $config, $force_all_checks ) {
$exs = new Util_Environment_Exceptions();
// create add-ins
$this->create_required_files( $config, $exs );
// create folders
$this->create_required_folders( $exs );
$this->add_index_to_folders();
if ( count( $exs->exceptions() ) <= 0 ) {
$this->notify_no_config_present( $config, $exs );
}
if ( count( $exs->exceptions() ) > 0 )
throw $exs;
}
/**
* Fixes environment once event occurs
*
* @throws Util_Environment_Exceptions
*/
public function fix_on_event( $config, $event, $old_config = null ) {
}
/**
* Fixes environment after plugin deactivation
*
* @throws Util_Environment_Exceptions
* @return array
*/
public function fix_after_deactivation() {
$exs = new Util_Environment_Exceptions();
$this->delete_required_files( $exs );
if ( count( $exs->exceptions() ) > 0 )
throw $exs;
}
/**
* Returns required rules for module
*
* @var Config $config
* @return array
*/
function get_required_rules( $config ) {
return null;
}
/**
* Checks if addins in wp-content is available and correct version.
*
* @param unknown $config
* @param Util_Environment_Exceptions $exs
*/
private function create_required_files( $config, $exs ) {
$src = W3TC_INSTALL_FILE_ADVANCED_CACHE;
$dst = W3TC_ADDIN_FILE_ADVANCED_CACHE;
if ( $this->advanced_cache_installed() ) {
if ( $this->is_advanced_cache_add_in() ) {
$script_data = @file_get_contents( $dst );
if ( $script_data == @file_get_contents( $src ) )
return;
} else if ( get_transient( 'w3tc_remove_add_in_pgcache' ) == 'yes' ) {
// user already manually asked to remove another plugin's add in,
// we should try to apply ours
// (in case of missing permissions deletion could fail)
} else if ( !$this->advanced_cache_check_old_add_in() ) {
$remove_url = Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_default_remove_add_in=pgcache' );
$exs->push( new Util_WpFile_FilesystemOperationException(
sprintf( __( 'The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-in.
It should be removed. %s', 'w3-total-cache' ),
Util_Ui::button_link( __( 'Yes, remove it for me', 'w3-total-cache' ), wp_nonce_url( $remove_url, 'w3tc' ) ) ) ) );
return;
}
}
try {
Util_WpFile::copy_file( $src, $dst );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
$exs->push( $ex );
}
}
/**
* Checks if addins in wp-content are available and deletes them.
*
* @param Util_Environment_Exceptions $exs
*/
private function delete_required_files( $exs ) {
try {
if ( $this->is_advanced_cache_add_in() )
Util_WpFile::delete_file( W3TC_ADDIN_FILE_ADVANCED_CACHE );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
$exs->push( $ex );
}
}
/**
* Checks if addins in wp-content is available and correct version.
*
* @param Util_Environment_Exceptions $exs
*/
private function create_required_folders( $exs ) {
// folders that we create if not exists
$directories = array(
W3TC_CACHE_DIR,
W3TC_CONFIG_DIR
);
foreach ( $directories as $directory ) {
try{
Util_WpFile::create_writeable_folder( $directory, WP_CONTENT_DIR );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
$exs->push( $ex );
}
}
// folders that we delete if exists and not writeable
$directories = array(
W3TC_CACHE_TMP_DIR,
W3TC_CACHE_BLOGMAP_FILENAME,
W3TC_CACHE_DIR . '/object',
W3TC_CACHE_DIR . '/db'
);
foreach ( $directories as $directory ) {
try{
if ( file_exists( $directory ) && !is_writeable( $directory ) )
Util_WpFile::delete_folder( $directory );
} catch ( Util_WpFile_FilesystemRmdirException $ex ) {
$exs->push( $ex );
}
}
}
/**
* Adds index files
*/
private function add_index_to_folders() {
$directories = array(
W3TC_CACHE_DIR,
W3TC_CONFIG_DIR );
$add_files = array();
foreach ( $directories as $dir ) {
if ( is_dir( $dir ) && !file_exists( $dir . '/index.html' ) )
@file_put_contents( $dir . '/index.html', '' );
}
}
/**
* Check config file
*
* @param Config $config
* @param Util_Environment_Exceptions $exs
*/
private function notify_no_config_present( $config, $exs ) {
if ( ( file_exists( Config::util_config_filename( 0, false ) ) ||
file_exists( Config::util_config_filename_legacy( 0, false ) ) )
&& $config->get_integer( 'common.instance_id', 0 ) != 0 )
return;
$onclick = 'document.location.href=\'' .
addslashes( wp_nonce_url(
'admin.php?page=w3tc_general&w3tc_save_options', 'w3tc' ) ) .
'\';';
$button = '<input type="button" class="button w3tc" ' .
'value="save the settings" onclick="' . $onclick . '" />';
$exs->push( new Util_Environment_Exception( '<strong>W3 Total Cache:</strong> ' .
'Default settings are in use. The configuration file could ' .
'not be read or doesn\'t exist. Please ' . $button .
' to create the file.' ) );
}
/**
* Returns true if advanced-cache.php is installed
*
* @return boolean
*/
public function advanced_cache_installed() {
return file_exists( W3TC_ADDIN_FILE_ADVANCED_CACHE );
}
/**
* Returns true if advanced-cache.php is old version.
*
* @return boolean
*/
public function advanced_cache_check_old_add_in() {
return ( ( $script_data = @file_get_contents( W3TC_ADDIN_FILE_ADVANCED_CACHE ) )
&& strstr( $script_data, 'w3_instance' ) !== false );
}
/**
* Checks if advanced-cache.php exists
*
* @return boolean
*/
public function is_advanced_cache_add_in() {
return ( ( $script_data = @file_get_contents( W3TC_ADDIN_FILE_ADVANCED_CACHE ) )
&& strstr( $script_data, 'PgCache_ContentGrabber' ) !== false );
}
}