2013-03-19 10:16:59 +00:00
|
|
|
<?php
|
2014-06-26 08:57:10 +01:00
|
|
|
|
2015-04-29 09:57:40 +01:00
|
|
|
/* __ only availabe if we're running from the inside of wordpress, not in advanced-cache.php phase */
|
|
|
|
if ( !function_exists ('__translate__') ) {
|
|
|
|
/* __ only availabe if we're running from the inside of wordpress, not in advanced-cache.php phase */
|
|
|
|
if ( function_exists ( '__' ) ) {
|
|
|
|
function __translate__ ( $text, $domain ) { return __($text, $domain); }
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
function __translate__ ( $text, $domain ) { return $text; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/* this is the base class for all backends; the actual workers
|
|
|
|
* are included at the end of the file from backends/ directory */
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
if (!class_exists('WP_FFPC_Backend')) :
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
|
|
|
|
abstract class WP_FFPC_Backend {
|
2014-06-26 08:57:10 +01:00
|
|
|
|
|
|
|
const host_separator = ',';
|
|
|
|
const port_separator = ':';
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
protected $connection = NULL;
|
|
|
|
protected $alive = false;
|
|
|
|
protected $options = array();
|
|
|
|
protected $status = array();
|
2014-06-26 08:57:10 +01:00
|
|
|
public $cookies = array();
|
2015-10-13 11:13:13 +01:00
|
|
|
protected $urimap = array();
|
2014-06-26 08:57:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* constructor
|
|
|
|
*
|
|
|
|
* @param mixed $config Configuration options
|
|
|
|
*
|
|
|
|
*/
|
2014-09-12 09:38:32 +01:00
|
|
|
public function __construct( $config ) {
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* no config, nothing is going to work */
|
|
|
|
if ( empty ( $config ) ) {
|
|
|
|
return false;
|
2015-10-14 20:14:09 +01:00
|
|
|
//die ( __translate__ ( 'WP-FFPC Backend class received empty configuration array, the plugin will not work this way', 'wp-ffpc') );
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-06-07 17:56:56 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$this->options = $config;
|
2013-06-07 17:56:56 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* these are the list of the cookies to look for when looking for logged in user */
|
|
|
|
$this->cookies = array ( 'comment_author_' , 'wordpressuser_' , 'wp-postpass_', 'wordpress_logged_in_' );
|
|
|
|
|
|
|
|
/* map the key with the predefined schemes */
|
|
|
|
$ruser = isset ( $_SERVER['REMOTE_USER'] ) ? $_SERVER['REMOTE_USER'] : '';
|
|
|
|
$ruri = isset ( $_SERVER['REQUEST_URI'] ) ? $_SERVER['REQUEST_URI'] : '';
|
|
|
|
$rhost = isset ( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : '';
|
|
|
|
$scookie = isset ( $_COOKIE['PHPSESSID'] ) ? $_COOKIE['PHPSESSID'] : '';
|
|
|
|
|
2015-04-29 09:57:40 +01:00
|
|
|
if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https' )
|
|
|
|
$_SERVER['HTTPS'] = 'on';
|
|
|
|
|
|
|
|
$scheme = ( isset($_SERVER['HTTPS']) && (( strtolower($_SERVER['HTTPS']) == 'on' ) || ( $_SERVER['HTTPS'] == '1' ) )) ? 'https://' : 'http://';
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$this->urimap = array(
|
2015-04-29 09:57:40 +01:00
|
|
|
'$scheme' => str_replace ( '://', '', $scheme ),
|
2014-06-26 08:57:10 +01:00
|
|
|
'$host' => $rhost,
|
|
|
|
'$request_uri' => $ruri,
|
|
|
|
'$remote_user' => $ruser,
|
|
|
|
'$cookie_PHPSESSID' => $scookie,
|
|
|
|
);
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/* split single line hosts entry */
|
2014-06-26 08:57:10 +01:00
|
|
|
$this->set_servers();
|
|
|
|
|
|
|
|
/* info level */
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( __translate__('init starting', 'wp-ffpc'));
|
2013-06-07 17:56:56 +01:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/* call backend initiator based on cache type */
|
|
|
|
$init = $this->_init();
|
2015-01-20 19:31:13 +00:00
|
|
|
|
|
|
|
if (is_admin() && function_exists('add_filter')) {
|
|
|
|
add_filter('wp_ffpc_clear_keys_array', function($to_clear, $options) {
|
|
|
|
$filtered_result = array();
|
|
|
|
foreach ( $to_clear as $link => $dummy ) {
|
|
|
|
/* clear feeds, meta and data as well */
|
|
|
|
$filtered_result[ $options[ 'prefix_meta' ] . $link ] = true;
|
|
|
|
$filtered_result[ $options[ 'prefix_data' ] . $link ] = true;
|
|
|
|
$filtered_result[ $options[ 'prefix_meta' ] . $link . 'feed' ] = true;
|
|
|
|
$filtered_result[ $options[ 'prefix_data' ] . $link . 'feed' ] = true;
|
|
|
|
}
|
|
|
|
return $filtered_result;
|
|
|
|
}, 10, 2);
|
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/*
|
|
|
|
* @param string $uri
|
|
|
|
* @param mixed $default_urimap
|
|
|
|
*/
|
2014-08-22 14:41:08 +01:00
|
|
|
public static function parse_urimap($uri, $default_urimap=null) {
|
|
|
|
$uri_parts = parse_url( $uri );
|
|
|
|
|
|
|
|
$uri_map = array(
|
|
|
|
'$scheme' => $uri_parts['scheme'],
|
|
|
|
'$host' => $uri_parts['host'],
|
|
|
|
'$request_uri' => $uri_parts['path']
|
|
|
|
);
|
|
|
|
|
|
|
|
if (is_array($default_urimap)) {
|
|
|
|
$uri_map = array_merge($default_urimap, $uri_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $uri_map;
|
|
|
|
}
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/**
|
|
|
|
* @param array $urimap
|
|
|
|
* @param string $subject
|
|
|
|
*/
|
2014-08-22 14:41:08 +01:00
|
|
|
public static function map_urimap($urimap, $subject) {
|
|
|
|
return str_replace(array_keys($urimap), $urimap, $subject);
|
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
|
2013-03-19 10:16:59 +00:00
|
|
|
/**
|
2014-06-26 08:57:10 +01:00
|
|
|
* build key to make requests with
|
2013-03-19 10:16:59 +00:00
|
|
|
*
|
2014-06-26 08:57:10 +01:00
|
|
|
* @param string $prefix prefix to add to prefix
|
2015-01-20 19:31:13 +00:00
|
|
|
* @param array $customUrimap to override defaults
|
2013-03-19 10:16:59 +00:00
|
|
|
*
|
|
|
|
*/
|
2015-01-20 19:31:13 +00:00
|
|
|
public function key ( $prefix, $customUrimap = null ) {
|
|
|
|
$urimap = $customUrimap ?: $this->urimap;
|
|
|
|
|
2015-04-29 09:40:12 +01:00
|
|
|
$key_base = self::map_urimap($urimap, $this->options['key']);
|
2015-05-07 13:33:32 +01:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
if (( isset($this->options['hashkey']) && $this->options['hashkey'] == true) || $this->options['cache_type'] == 'redis' )
|
2015-05-07 13:33:32 +01:00
|
|
|
$key_base = sha1($key_base);
|
|
|
|
|
|
|
|
$key = $prefix . $key_base;
|
2015-04-29 23:07:40 +01:00
|
|
|
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'original key configuration: %s', 'wp-ffpc'), $this->options['key'] ) );
|
|
|
|
$this->log ( sprintf( __translate__( 'setting key for: %s', 'wp-ffpc'), $key_base ) );
|
|
|
|
$this->log ( sprintf( __translate__( 'setting key to: %s', 'wp-ffpc'), $key ) );
|
2014-06-26 08:57:10 +01:00
|
|
|
return $key;
|
|
|
|
}
|
2013-06-07 17:56:56 +01:00
|
|
|
|
2013-06-17 12:28:49 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* public get function, transparent proxy to internal function based on backend
|
|
|
|
*
|
|
|
|
* @param string $key Cache key to get value for
|
|
|
|
*
|
|
|
|
* @return mixed False when entry not found or entry value on success
|
|
|
|
*/
|
|
|
|
public function get ( &$key ) {
|
|
|
|
/* look for backend aliveness, exit on inactive backend */
|
2015-10-13 11:13:13 +01:00
|
|
|
if ( ! $this->is_alive() ) {
|
|
|
|
$this->log ('WARNING: Backend offline');
|
2014-06-26 08:57:10 +01:00
|
|
|
return false;
|
2015-10-13 11:13:13 +01:00
|
|
|
}
|
2013-06-07 17:56:56 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* log the current action */
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'GET %s', 'wp-ffpc'), $key ) );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
$result = $this->_get( $key );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
if ( $result === false || $result === null )
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'failed to get entry: %s', 'wp-ffpc'), $key ) );
|
2013-06-17 14:22:46 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
return $result;
|
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* public set function, transparent proxy to internal function based on backend
|
|
|
|
*
|
|
|
|
* @param string $key Cache key to set with ( reference only, for speed )
|
|
|
|
* @param mixed $data Data to set ( reference only, for speed )
|
|
|
|
*
|
|
|
|
* @return mixed $result status of set function
|
|
|
|
*/
|
2015-01-09 15:01:11 +00:00
|
|
|
public function set ( &$key, &$data, $expire = false ) {
|
2014-06-26 08:57:10 +01:00
|
|
|
/* look for backend aliveness, exit on inactive backend */
|
|
|
|
if ( ! $this->is_alive() )
|
|
|
|
return false;
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* log the current action */
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'set %s expiration time: %s', 'wp-ffpc'), $key, $this->options['expire'] ) );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-09-19 09:38:54 +01:00
|
|
|
/* expiration time based is based on type from now on */
|
|
|
|
/* fallback */
|
2015-01-09 15:01:11 +00:00
|
|
|
if ( $expire === false )
|
|
|
|
$expire = empty ( $this->options['expire'] ) ? 0 : $this->options['expire'];
|
2014-09-19 09:38:54 +01:00
|
|
|
|
2014-12-17 10:48:02 +00:00
|
|
|
if (( is_home() || is_feed() ) && isset($this->options['expire_home']))
|
|
|
|
$expire = (int) $this->options['expire_home'];
|
|
|
|
elseif (( is_tax() || is_category() || is_tag() || is_archive() ) && isset($this->options['expire_taxonomy']))
|
|
|
|
$expire = (int) $this->options['expire_taxonomy'];
|
2014-09-19 09:38:54 +01:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/* log the current action */
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'SET %s', 'wp-ffpc'), $key ) );
|
2014-06-26 08:57:10 +01:00
|
|
|
/* proxy to internal function */
|
2015-10-13 11:13:13 +01:00
|
|
|
$result = $this->_set( $key, $data, $expire );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* check result validity */
|
2015-10-13 11:13:13 +01:00
|
|
|
if ( $result === false || $result === null )
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'failed to set entry: %s', 'wp-ffpc'), $key ), LOG_WARNING );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
return $result;
|
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/*
|
|
|
|
* next generation clean
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2014-09-19 09:38:54 +01:00
|
|
|
public function clear_ng ( $new_status, $old_status, $post ) {
|
|
|
|
$this->clear ( $post->ID );
|
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* public get function, transparent proxy to internal function based on backend
|
|
|
|
*
|
|
|
|
* @param string $post_id ID of post to invalidate
|
|
|
|
* @param boolean $force Force flush cache
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function clear ( $post_id = false, $force = false ) {
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* look for backend aliveness, exit on inactive backend */
|
|
|
|
if ( ! $this->is_alive() )
|
|
|
|
return false;
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* exit if no post_id is specified */
|
|
|
|
if ( empty ( $post_id ) && $force === false ) {
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( __translate__('not clearing unidentified post ', 'wp-ffpc'), LOG_WARNING );
|
2014-06-26 08:57:10 +01:00
|
|
|
return false;
|
2013-03-19 10:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* if invalidation method is set to full, flush cache */
|
|
|
|
if ( ( $this->options['invalidation_method'] === 0 || $force === true ) ) {
|
|
|
|
/* log action */
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( __translate__('flushing cache', 'wp-ffpc') );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
|
|
|
/* proxy to internal function */
|
2015-10-18 18:32:10 +01:00
|
|
|
$result = $this->_flush();
|
2013-03-19 10:16:59 +00:00
|
|
|
|
|
|
|
if ( $result === false )
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( __translate__('failed to flush cache', 'wp-ffpc'), LOG_WARNING );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* storage for entries to clear */
|
|
|
|
$to_clear = array();
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* clear taxonomies if settings requires it */
|
|
|
|
if ( $this->options['invalidation_method'] == 2 ) {
|
|
|
|
/* this will only clear the current blog's entries */
|
|
|
|
$this->taxonomy_links( $to_clear );
|
|
|
|
}
|
|
|
|
|
2014-08-22 15:27:23 +01:00
|
|
|
/* clear pasts index page if settings requires it */
|
|
|
|
if ( $this->options['invalidation_method'] == 3 ) {
|
|
|
|
$posts_page_id = get_option( 'page_for_posts' );
|
|
|
|
$post_type = get_post_type( $post_id );
|
|
|
|
|
|
|
|
if ($post_type === 'post' && $posts_page_id != $post_id) {
|
|
|
|
$this->clear($posts_page_id, $force);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* if there's a post id pushed, it needs to be invalidated in all cases */
|
|
|
|
if ( !empty ( $post_id ) ) {
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* need permalink functions */
|
|
|
|
if ( !function_exists('get_permalink') )
|
|
|
|
include_once ( ABSPATH . 'wp-includes/link-template.php' );
|
|
|
|
|
2014-08-22 14:41:08 +01:00
|
|
|
/* get permalink */
|
|
|
|
$permalink = get_permalink( $post_id );
|
2014-06-26 08:57:10 +01:00
|
|
|
|
|
|
|
/* no path, don't do anything */
|
2014-12-08 09:19:01 +00:00
|
|
|
if ( empty( $permalink ) && $permalink != false ) {
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( sprintf( __translate__( 'unable to determine path from Post Permalink, post ID: %s', 'wp-ffpc'), $post_id ), LOG_WARNING );
|
2013-03-19 10:16:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-22 14:41:08 +01:00
|
|
|
/*
|
|
|
|
* It is possible that post/page is paginated with <!--nextpage-->
|
|
|
|
* Wordpress doesn't seem to expose the number of pages via API.
|
|
|
|
* So let's just count it.
|
|
|
|
*/
|
|
|
|
$content_post = get_post( $post_id );
|
|
|
|
$content = $content_post->post_content;
|
|
|
|
$number_of_pages = 1 + (int)preg_match_all('/<!--nextpage-->/', $content, $matches);
|
|
|
|
|
|
|
|
$current_page_id = '';
|
|
|
|
do {
|
|
|
|
/* urimap */
|
|
|
|
$urimap = self::parse_urimap($permalink, $this->urimap);
|
|
|
|
$urimap['$request_uri'] = $urimap['$request_uri'] . ($current_page_id ? $current_page_id . '/' : '');
|
|
|
|
|
|
|
|
$clear_cache_key = self::map_urimap($urimap, $this->options['key']);
|
|
|
|
|
|
|
|
$to_clear[ $clear_cache_key ] = true;
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-08-22 14:41:08 +01:00
|
|
|
$current_page_id = 1+(int)$current_page_id;
|
|
|
|
} while ($number_of_pages>1 && $current_page_id<=$number_of_pages);
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-08-25 14:58:23 +01:00
|
|
|
/* Hook to custom clearing array. */
|
|
|
|
$to_clear = apply_filters('wp_ffpc_to_clear_array', $to_clear, $post_id);
|
2014-08-22 15:48:49 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* run clear */
|
2015-01-20 19:31:13 +00:00
|
|
|
$this->clear_keys( $to_clear );
|
|
|
|
}
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
/*
|
|
|
|
* unset entries by key
|
|
|
|
* @param array $keys
|
|
|
|
*/
|
2015-01-20 19:31:13 +00:00
|
|
|
public function clear_keys( $keys ) {
|
|
|
|
$to_clear = apply_filters('wp_ffpc_clear_keys_array', $keys, $this->options);
|
2015-10-13 11:13:13 +01:00
|
|
|
$this->_clear ( $to_clear );
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* clear cache triggered by new comment
|
|
|
|
*
|
|
|
|
* @param $comment_id Comment ID
|
|
|
|
* @param $comment_object The whole comment object ?
|
|
|
|
*/
|
|
|
|
public function clear_by_comment ( $comment_id, $comment_object ) {
|
|
|
|
if ( empty( $comment_id ) )
|
|
|
|
return false;
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$comment = get_comment( $comment_id );
|
|
|
|
$post_id = $comment->comment_post_ID;
|
|
|
|
if ( !empty( $post_id ) )
|
|
|
|
$this->clear ( $post_id );
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
unset ( $comment );
|
|
|
|
unset ( $post_id );
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* to collect all permalinks of all taxonomy terms used in invalidation & precache
|
|
|
|
*
|
|
|
|
* @param array &$links Passed by reference array that has to be filled up with the links
|
|
|
|
* @param mixed $site Site ID or false; used in WordPress Network
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function taxonomy_links ( &$links, $site = false ) {
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
if ( $site !== false ) {
|
|
|
|
$current_blog = get_current_blog_id();
|
|
|
|
switch_to_blog( $site );
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$url = get_blog_option ( $site, 'siteurl' );
|
|
|
|
if ( substr( $url, -1) !== '/' )
|
|
|
|
$url = $url . '/';
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$links[ $url ] = true;
|
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* we're only interested in public taxonomies */
|
|
|
|
$args = array(
|
|
|
|
'public' => true,
|
|
|
|
);
|
|
|
|
|
|
|
|
/* get taxonomies as objects */
|
|
|
|
$taxonomies = get_taxonomies( $args, 'objects' );
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
if ( !empty( $taxonomies ) ) {
|
|
|
|
foreach ( $taxonomies as $taxonomy ) {
|
|
|
|
/* reset array, just in case */
|
|
|
|
$terms = array();
|
|
|
|
|
|
|
|
/* get all the terms for this taxonomy, only if not empty */
|
|
|
|
$sargs = array(
|
|
|
|
'hide_empty' => true,
|
|
|
|
'fields' => 'all',
|
|
|
|
'hierarchical' =>false,
|
|
|
|
);
|
|
|
|
$terms = get_terms ( $taxonomy->name , $sargs );
|
|
|
|
|
|
|
|
if ( !empty ( $terms ) ) {
|
|
|
|
foreach ( $terms as $term ) {
|
|
|
|
/* get the permalink for the term */
|
|
|
|
$link = get_term_link ( $term->slug, $taxonomy->name );
|
|
|
|
/* add to container */
|
|
|
|
$links[ $link ] = true;
|
|
|
|
/* remove the taxonomy name from the link, lots of plugins remove this for SEO, it's better to include them than leave them out
|
|
|
|
in worst case, we cache some 404 as well
|
|
|
|
*/
|
|
|
|
$link = str_replace ( '/'.$taxonomy->rewrite['slug'], '', $link );
|
|
|
|
/* add to container */
|
|
|
|
$links[ $link ] = true;
|
|
|
|
}
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
}
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* switch back to original site if we navigated away */
|
|
|
|
if ( $site !== false ) {
|
|
|
|
switch_to_blog( $current_blog );
|
2013-03-19 10:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2014-05-12 15:48:22 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* get backend aliveness
|
|
|
|
*
|
|
|
|
* @return array Array of configured servers with aliveness value
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function status () {
|
2014-05-12 15:48:22 +01:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* look for backend aliveness, exit on inactive backend */
|
|
|
|
if ( ! $this->is_alive() )
|
|
|
|
return false;
|
2014-05-12 15:48:22 +01:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
$internal = $this->_status();
|
2014-06-26 08:57:10 +01:00
|
|
|
return $this->status;
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* function to check backend aliveness
|
|
|
|
*
|
|
|
|
* @return boolean true if backend is alive, false if not
|
|
|
|
*
|
|
|
|
*/
|
2015-10-13 11:13:13 +01:00
|
|
|
protected function is_alive() {
|
2014-06-26 08:57:10 +01:00
|
|
|
if ( ! $this->alive ) {
|
2015-10-14 20:14:09 +01:00
|
|
|
$this->log ( __translate__("backend is not active, exiting function ", 'wp-ffpc') . __FUNCTION__, LOG_WARNING );
|
2014-06-26 08:57:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* split hosts string to backend servers
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2015-10-13 11:13:13 +01:00
|
|
|
protected function set_servers () {
|
|
|
|
if ( empty ($this->options['hosts']) )
|
|
|
|
return false;
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/* replace servers array in config according to hosts field */
|
|
|
|
$servers = explode( self::host_separator , $this->options['hosts']);
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$options['servers'] = array();
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
foreach ( $servers as $snum => $sstring ) {
|
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
if ( stristr($sstring, 'unix://' ) ) {
|
|
|
|
$host = str_replace('unix:/','',$sstring);
|
|
|
|
$port = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$separator = strpos( $sstring , self::port_separator );
|
|
|
|
$host = substr( $sstring, 0, $separator );
|
|
|
|
$port = substr( $sstring, $separator + 1 );
|
|
|
|
}
|
2013-03-28 22:27:54 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
$this->options['servers'][$sstring] = array (
|
|
|
|
'host' => $host,
|
|
|
|
'port' => $port
|
|
|
|
);
|
2013-03-28 22:27:54 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* get current array of servers
|
|
|
|
*
|
|
|
|
* @return array Server list in current config
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function get_servers () {
|
|
|
|
$r = isset ( $this->options['servers'] ) ? $this->options['servers'] : '';
|
|
|
|
return $r;
|
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-06-26 08:57:10 +01:00
|
|
|
/**
|
|
|
|
* log wrapper to include options
|
|
|
|
*
|
|
|
|
* @var mixed $message Message to log
|
|
|
|
* @var int $log_level Log level
|
|
|
|
*/
|
2015-10-13 11:13:13 +01:00
|
|
|
protected function log ( $message, $level = LOG_NOTICE ) {
|
2015-04-29 09:40:12 +01:00
|
|
|
if ( @is_array( $message ) || @is_object ( $message ) )
|
|
|
|
$message = json_encode($message);
|
|
|
|
|
|
|
|
|
|
|
|
switch ( $level ) {
|
|
|
|
case LOG_ERR :
|
|
|
|
wp_die( '<h1>Error:</h1>' . '<p>' . $message . '</p>' );
|
|
|
|
exit;
|
|
|
|
default:
|
2015-04-29 23:07:40 +01:00
|
|
|
if ( !defined( 'WP_DEBUG' ) || WP_DEBUG != true || !defined( 'WP_FFPC__DEBUG_MODE' ) || WP_FFPC__DEBUG_MODE != true )
|
2015-04-29 09:40:12 +01:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_log( __CLASS__ . ": " . $message );
|
2014-06-26 08:57:10 +01:00
|
|
|
}
|
2013-03-19 10:16:59 +00:00
|
|
|
|
2014-09-19 12:18:18 +01:00
|
|
|
|
2015-10-13 11:13:13 +01:00
|
|
|
abstract protected function _init ();
|
|
|
|
abstract protected function _status ();
|
|
|
|
abstract protected function _get ( &$key );
|
|
|
|
abstract protected function _set ( &$key, &$data, &$expire );
|
|
|
|
abstract protected function _flush ();
|
|
|
|
abstract protected function _clear ( &$keys );
|
2013-03-19 10:16:59 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 09:40:12 +01:00
|
|
|
endif;
|
2015-10-13 11:13:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
$wp_ffpc_backends = glob( dirname( __FILE__ ) . "/backends/*.php" );
|
|
|
|
foreach ( $wp_ffpc_backends as $backend )
|
|
|
|
include_once $backend;
|
|
|
|
unset( $wp_ffpc_backends, $backend );
|