晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/stando/www/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
/**
* CDN cache flusher
*/
class Cdnfsd_CacheFlush {
/**
* Array of urls to flush
*
* @var array
*/
private $queued_urls = array();
private $flush_all_requested = false;
/**
* Purges everything from CDNs that supports it
*/
static public function w3tc_flush_all( $extras = null ) {
if ( isset( $extras['only'] ) && $extras['only'] != 'cdn' )
return;
$config = Dispatcher::config();
if ( $config->get_boolean( 'cdn.flush_manually' ) ) {
// in this mode flush only on purge button clicks
if ( !isset( $extras['ui_action'] ) ) {
return true;
}
}
$o = Dispatcher::component( 'Cdnfsd_CacheFlush' );
$o->flush_all_requested = true;
return true;
}
/**
* Purges cdn's post cache
*
* @param integer $post_id
* @return boolean
*/
static public function w3tc_flush_post( $post_id, $extras = null ) {
if ( !$post_id ) {
$post_id = Util_Environment::detect_post_id();
}
if ( !$post_id )
return false;
$config = Dispatcher::config();
if ( $config->get_boolean( 'cdn.flush_manually' ) ) {
// in this mode flush only on purge button clicks
if ( !isset( $extras['ui_action'] ) ) {
return true;
}
}
global $wp_rewrite; // required by many Util_PageUrls methods
if ( empty( $wp_rewrite ) ) {
error_log('Post was modified before wp_rewrite initialization. Cant flush cache.');
return false;
}
$full_urls = array();
$post = null;
$terms = array();
$feeds = $config->get_array( 'pgcache.purge.feed.types' );
$limit_post_pages = $config->get_integer( 'pgcache.purge.postpages_limit' );
if ( $config->get_boolean( 'pgcache.purge.terms' ) || $config->get_boolean( 'varnish.pgcache.feed.terms' ) ) {
$taxonomies = get_post_taxonomies( $post_id );
$terms = wp_get_post_terms( $post_id, $taxonomies );
}
switch ( true ) {
case $config->get_boolean( 'pgcache.purge.author' ):
case $config->get_boolean( 'pgcache.purge.archive.daily' ):
case $config->get_boolean( 'pgcache.purge.archive.monthly' ):
case $config->get_boolean( 'pgcache.purge.archive.yearly' ):
case $config->get_boolean( 'pgcache.purge.feed.author' ):
$post = get_post( $post_id );
}
$front_page = get_option( 'show_on_front' );
/**
* Home (Frontpage) URL
*/
if ( ( $config->get_boolean( 'pgcache.purge.home' ) && $front_page == 'posts' )||
$config->get_boolean( 'pgcache.purge.front_page' ) ) {
$full_urls = array_merge( $full_urls,
Util_PageUrls::get_frontpage_urls( $limit_post_pages ) );
}
/**
* Home (Post page) URL
*/
if ( $config->get_boolean( 'pgcache.purge.home' ) && $front_page != 'posts' ) {
$full_urls = array_merge( $full_urls,
Util_PageUrls::get_postpage_urls( $limit_post_pages ) );
}
/**
* Post URL
*/
if ( $config->get_boolean( 'pgcache.purge.post' ) ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_post_urls( $post_id ) );
}
/**
* Post comments URLs
*/
if ( $config->get_boolean( 'pgcache.purge.comments' ) && function_exists( 'get_comments_pagenum_link' ) ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_post_comments_urls( $post_id ) );
}
/**
* Post author URLs
*/
if ( $config->get_boolean( 'pgcache.purge.author' ) && $post ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_post_author_urls( $post->post_author, $limit_post_pages ) );
}
/**
* Post terms URLs
*/
if ( $config->get_boolean( 'pgcache.purge.terms' ) ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_post_terms_urls( $terms, $limit_post_pages ) );
}
/**
* Daily archive URLs
*/
if ( $config->get_boolean( 'pgcache.purge.archive.daily' ) && $post ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_daily_archive_urls( $post, $limit_post_pages ) );
}
/**
* Monthly archive URLs
*/
if ( $config->get_boolean( 'pgcache.purge.archive.monthly' ) && $post ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_monthly_archive_urls( $post, $limit_post_pages ) );
}
/**
* Yearly archive URLs
*/
if ( $config->get_boolean( 'pgcache.purge.archive.yearly' ) && $post ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_yearly_archive_urls( $post, $limit_post_pages ) );
}
/**
* Feed URLs
*/
if ( $config->get_boolean( 'pgcache.purge.feed.blog' ) ) {
$full_urls = array_merge( $full_urls,
Util_PageUrls::get_feed_urls( $feeds ) );
}
if ( $config->get_boolean( 'pgcache.purge.feed.comments' ) ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_feed_comments_urls( $post_id, $feeds ) );
}
if ( $config->get_boolean( 'pgcache.purge.feed.author' ) && $post ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_feed_author_urls( $post->post_author, $feeds ) );
}
if ( $config->get_boolean( 'pgcache.purge.feed.terms' ) ) {
$full_urls = array_merge( $full_urls, Util_PageUrls::get_feed_terms_urls( $terms, $feeds ) );
}
/**
* Purge selected pages
*/
if ( $config->get_array( 'pgcache.purge.pages' ) ) {
$pages = $config->get_array( 'pgcache.purge.pages' );
$full_urls = array_merge( $full_urls,
Util_PageUrls::get_pages_urls( $pages ) );
}
/**
* Queue flush
*/
if ( count( $full_urls ) ) {
$o = Dispatcher::component( 'Cdnfsd_CacheFlush' );
foreach ( $full_urls as $url )
$o->queued_urls[$url] = '*';
}
return true;
}
/**
* Purge a single url
*
* @param unknown $url
*/
static public function w3tc_flush_url( $url, $extras = null ) {
$config = Dispatcher::config();
if ( $config->get_boolean( 'cdn.flush_manually' ) ) {
// in this mode flush only on purge button clicks
if ( !isset( $extras['ui_action'] ) ) {
return true;
}
}
$o = Dispatcher::component( 'Cdnfsd_CacheFlush' );
$o->queued_urls[$url] = '*';
return true;
}
/**
* Clears global and repeated urls
*/
static public function w3tc_flush_execute_delayed_operations( $actions_made ) {
$o = Dispatcher::component( 'Cdnfsd_CacheFlush' );
// protection from incorrect w3tc upgrade operation when engine gets empty
$c = Dispatcher::config();
$engine = $c->get_string( 'cdnfsd.engine' );
if ( empty( $engine ) )
return $actions_made;
if ( $o->flush_all_requested ) {
$core = Dispatcher::component( 'Cdnfsd_Core' );
try {
$engine = $core->get_engine();
if ( !is_null( $engine ) ) {
$engine->flush_all();
$actions_made[] = array( 'module' => 'cdn' );
}
} catch ( \Exception $ex ) {
$actions_made[] = array(
'module' => 'cdn',
'error' => $ex->getMessage()
);
}
$o->flush_all_requested = false;
$o->queued_urls = array();
} else {
$count = count( $o->queued_urls );
if ( $count > 0 ) {
$urls = array_keys( $o->queued_urls );
$core = Dispatcher::component( 'Cdnfsd_Core' );
try {
$engine = $core->get_engine();
if ( !is_null( $engine ) ) {
$engine->flush_urls( $urls );
$actions_made[] = array( 'module' => 'cdn' );
}
} catch ( \Exception $ex ) {
$actions_made[] = array(
'module' => 'cdn',
'error' => $ex->getMessage()
);
}
$o->queued_urls = array();
}
}
return $actions_made;
}
}