preload_user_agent = true; }else{ $this->preload_user_agent = false; } $this->options = $this->getOptions(); $this->set_cdn(); $this->set_cache_file_path(); $this->set_exclude_rules(); if(isset($this->options->wpFastestCacheDisableEmojis) && $this->options->wpFastestCacheDisableEmojis){ add_action('init', array($this, 'disable_emojis')); } } public function disable_emojis(){ remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('admin_print_scripts', 'print_emoji_detection_script'); remove_filter('the_content_feed', 'wp_staticize_emoji'); remove_filter('comment_text_rss', 'wp_staticize_emoji'); remove_action('wp_print_styles', 'print_emoji_styles'); remove_action('admin_print_styles', 'print_emoji_styles'); remove_filter('wp_mail', 'wp_staticize_emoji_for_email'); // remove the DNS prefetch add_filter('emoji_svg_url', '__return_false'); } public function detect_current_page_type(){ if(preg_match("/\?/", $_SERVER["REQUEST_URI"])){ return true; } if(preg_match("/^\/wp-json/", $_SERVER["REQUEST_URI"])){ return true; } if(is_front_page()){ echo ""; }else if(is_category()){ echo ""; }else if(is_tag()){ echo ""; }else if(is_singular('post')){ echo ""; }else if(is_page()){ echo ""; }else if(is_attachment()){ echo ""; }else if(is_archive()){ echo ""; } } public function set_exclude_rules(){ if($json_data = get_option("WpFastestCacheExclude")){ $this->exclude_rules = json_decode($json_data); } } public function set_cache_file_path(){ $type = "all"; if($this->isMobile() && isset($this->options->wpFastestCacheMobile)){ if(class_exists("WpFcMobileCache") && isset($this->options->wpFastestCacheMobileTheme)){ $type = "wpfc-mobile-cache"; } } if($this->isPluginActive('gtranslate/gtranslate.php')){ if(isset($_SERVER["HTTP_X_GT_LANG"])){ $this->cacheFilePath = $this->getWpContentDir("/cache/".$type."/").$_SERVER["HTTP_X_GT_LANG"].$_SERVER["REQUEST_URI"]; }else if(isset($_SERVER["REDIRECT_URL"]) && $_SERVER["REDIRECT_URL"] != "/index.php"){ $redirect_url = $_SERVER["REDIRECT_URL"]; if(isset($_SERVER["REDIRECT_QUERY_STRING"]) && defined('WPFC_CACHE_QUERYSTRING') && WPFC_CACHE_QUERYSTRING){ $redirect_url .= "?".$_SERVER["REDIRECT_QUERY_STRING"]; } $this->cacheFilePath = $this->getWpContentDir("/cache/" . $type . "/") . $redirect_url; }else if(isset($_SERVER["REQUEST_URI"])){ $this->cacheFilePath = $this->getWpContentDir("/cache/".$type."/").$_SERVER["REQUEST_URI"]; } }else{ $this->cacheFilePath = $this->getWpContentDir("/cache/".$type."/").$_SERVER["REQUEST_URI"]; // for /?s= $this->cacheFilePath = preg_replace("/(\/\?s\=)/", "$1/", $this->cacheFilePath); } $this->cacheFilePath = $this->cacheFilePath ? rtrim($this->cacheFilePath, "/")."/" : ""; /* /public_html/wp-content/cache/all/sample-page */ $this->cacheFilePath = preg_replace("/\/cache\/(all|wpfc-mobile-cache)\/\//", "/cache/$1/", $this->cacheFilePath); /* /public_html/wp-content/cache/all/DOMAIN.COM/sample-page */ $this->cacheFilePath = preg_replace("/\/cache\/([^\/]+)\/(all|wpfc-mobile-cache)\/\//", "/cache/$1/$2/", $this->cacheFilePath); if(strlen($_SERVER["REQUEST_URI"]) > 1){ // for the sub-pages if(!preg_match("/\.(html|xml)/i", $_SERVER["REQUEST_URI"])){ if($this->is_trailing_slash()){ if(!preg_match("/\/$/", $_SERVER["REQUEST_URI"])){ if(isset($_SERVER["QUERY_STRING"]) && $_SERVER["QUERY_STRING"] && defined('WPFC_CACHE_QUERYSTRING') && WPFC_CACHE_QUERYSTRING){ }else if(preg_match("/y(ad|s)?clid\=/i", $this->cacheFilePath)){ // yclid // yadclid // ysclid }else if(preg_match("/gclid\=/i", $this->cacheFilePath)){ }else if(preg_match("/fbclid\=/i", $this->cacheFilePath)){ }else if(preg_match("/utm_(source|medium|campaign|content|term)/i", $this->cacheFilePath)){ }else{ $this->cacheFilePath = false; } } }else{ //toDo } } } $this->remove_url_paramters(); // to decode path if it is not utf-8 if($this->cacheFilePath){ $this->cacheFilePath = urldecode($this->cacheFilePath); } // for security if(preg_match("/\.{2,}/", $this->cacheFilePath)){ $this->cacheFilePath = false; } if(preg_match("/\/{2,}/", $this->cacheFilePath)){ $this->cacheFilePath = false; } if($this->isMobile()){ if(isset($this->options->wpFastestCacheMobile)){ if(!class_exists("WpFcMobileCache")){ $this->cacheFilePath = false; }else{ if(!isset($this->options->wpFastestCacheMobileTheme)){ $this->cacheFilePath = false; } } } } } public function remove_url_paramters(){ $action = false; //to remove query strings for cache if Google Click Identifier are set if(preg_match("/gclid\=/i", $this->cacheFilePath)){ $action = true; } //to remove query strings for cache if Yandex parameters are set if(preg_match("/y(ad|s)?clid\=/i", $this->cacheFilePath)){ // yclid // yadclid // ysclid $action = true; } //to remove query strings for cache if facebook parameters are set if(preg_match("/fbclid\=/i", $this->cacheFilePath)){ $action = true; } //to remove query strings for cache if google analytics parameters are set if(preg_match("/utm_(source|medium|campaign|content|term)/i", $this->cacheFilePath)){ $action = true; } if($action){ if(strlen($_SERVER["REQUEST_URI"]) > 1){ // for the sub-pages $this->cacheFilePath = preg_replace("/\/*\?.+/", "", $this->cacheFilePath); $this->cacheFilePath = $this->cacheFilePath."/"; if(!defined('WPFC_CACHE_QUERYSTRING')){ define('WPFC_CACHE_QUERYSTRING', true); } } } } public function set_cdn(){ $cdn_values = get_option("WpFastestCacheCDN"); if($cdn_values){ $std_obj = json_decode($cdn_values); $arr = array(); if(is_array($std_obj)){ $arr = $std_obj; }else{ array_push($arr, $std_obj); } foreach ($arr as $key => &$std) { $std->originurl = trim($std->originurl); $std->originurl = trim($std->originurl, "/"); $std->originurl = preg_replace("/http(s?)\:\/\/(www\.)?/i", "", $std->originurl); $std->cdnurl = trim($std->cdnurl); $std->cdnurl = trim($std->cdnurl, "/"); if(!preg_match("/https\:\/\//", $std->cdnurl)){ $std->cdnurl = "//".preg_replace("/http(s?)\:\/\/(www\.)?/i", "", $std->cdnurl); } } $this->cdn = $arr; } } public function checkShortCode($content){ if(preg_match("/\[wpfcNOT\]/", $content)){ if(!is_home() || !is_archive()){ $this->blockCache = true; } $content = str_replace("[wpfcNOT]", "", $content); } return $content; } public function createCache(){ if(isset($this->options->wpFastestCacheStatus)){ // to exclude static pdf files if(preg_match("/\.pdf$/i", $_SERVER["REQUEST_URI"])){ return 0; } // to check logged-in user if(isset($this->options->wpFastestCacheLoggedInUser) && $this->options->wpFastestCacheLoggedInUser == "on"){ foreach ((array)$_COOKIE as $cookie_key => $cookie_value){ if(preg_match("/wordpress_logged_in/i", $cookie_key)){ ob_start(array($this, "cdn_rewrite")); return 0; } } } // to exclude admin users if($this->is_user_admin()){ return 0; } // to check comment author foreach ((array)$_COOKIE as $cookie_key => $cookie_value){ if(preg_match("/comment_author_/i", $cookie_key)){ ob_start(array($this, "cdn_rewrite")); return 0; } } if(isset($_COOKIE) && isset($_COOKIE['safirmobilswitcher'])){ ob_start(array($this, "cdn_rewrite")); return 0; } if(isset($_COOKIE) && isset($_COOKIE["wptouch-pro-view"])){ if($this->is_wptouch_smartphone()){ if($_COOKIE["wptouch-pro-view"] == "desktop"){ ob_start(array($this, "cdn_rewrite")); return 0; } } } if(preg_match("/\?/", $_SERVER["REQUEST_URI"]) && !preg_match("/\/\?fdx\_switcher\=true/", $_SERVER["REQUEST_URI"])){ // for WP Mobile Edition if(preg_match("/\?amp(\=1)?/i", $_SERVER["REQUEST_URI"])){ // }else if(defined('WPFC_CACHE_QUERYSTRING') && WPFC_CACHE_QUERYSTRING){ // }else if(isset($_GET["wc-api"]) && $_GET["wc-api"]){ // }else{ ob_start(array($this, "cdn_rewrite")); return 0; } } if(preg_match("/(".$this->get_excluded_useragent().")/", $_SERVER['HTTP_USER_AGENT'])){ return 0; } if(isset($_SERVER['REQUEST_URI']) && preg_match("/(\/){2}$/", $_SERVER['REQUEST_URI'])){ return 0; } // to check permalink if it does not end with slash if(isset($_SERVER['REQUEST_URI']) && preg_match("/[^\/]+\/$/", $_SERVER['REQUEST_URI'])){ if(!preg_match("/\/$/", get_option('permalink_structure'))){ return 0; } } if(isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == "POST"){ return 0; } if(preg_match("/^https/i", get_option("home")) && !is_ssl()){ //Must be secure connection return 0; } if(!preg_match("/^https/i", get_option("home")) && is_ssl()){ //must be normal connection if(!$this->isPluginActive('really-simple-ssl/rlrsssl-really-simple-ssl.php')){ if(!$this->isPluginActive('really-simple-ssl-pro/really-simple-ssl-pro.php')){ if(!$this->isPluginActive('really-simple-ssl-on-specific-pages/really-simple-ssl-on-specific-pages.php')){ if(!$this->isPluginActive('ssl-insecure-content-fixer/ssl-insecure-content-fixer.php')){ if(!$this->isPluginActive('https-redirection/https-redirection.php')){ if(!$this->isPluginActive('better-wp-security/better-wp-security.php')){ return 0; } } } } } } } if(isset($_SERVER["DOCUMENT_ROOT"]) && preg_match("/bitnami/", $_SERVER["DOCUMENT_ROOT"])){ // to disable cache for the IP based urls on the bitnami servers // /opt/bitnami/apps/wordpress/htdocs if(preg_match("/(?:[0-9]{1,3}\.){3}[0-9]{1,3}/", get_option("home"))){ return 0; } } if(preg_match("/www\./i", get_option("home")) && !preg_match("/www\./i", $_SERVER['HTTP_HOST'])){ return 0; } if(!preg_match("/www\./i", get_option("home")) && preg_match("/www\./i", $_SERVER['HTTP_HOST'])){ return 0; } if($this->exclude_page()){ ob_start(array($this, "cdn_rewrite")); //echo ""."\n"; return 0; } // http://mobiledetect.net/ does not contain the following user-agents if(preg_match("/Nokia309|Casper_VIA/i", $_SERVER['HTTP_USER_AGENT'])){ return 0; } if(preg_match("/Empty\sUser\sAgent/i", $_SERVER['HTTP_USER_AGENT'])){ // not to show the cache for command line return 0; } //to show cache version via php if htaccess rewrite rule does not work if(!$this->preload_user_agent && $this->cacheFilePath && (@file_exists($this->cacheFilePath."index.html") || @file_exists($this->cacheFilePath."index.json") || @file_exists($this->cacheFilePath."index.xml"))){ $via_php = ""; if(@file_exists($this->cacheFilePath."index.json")){ $file_extension = "json"; header('Content-type: application/json'); }else if(@file_exists($this->cacheFilePath."index.xml")){ $file_extension = "xml"; header('Content-type: text/xml'); }else{ $file_extension = "html"; $via_php = ""; } if($content = @file_get_contents($this->cacheFilePath."index.".$file_extension)){ if($file_extension == "html"){ header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($this->cacheFilePath."index.".$file_extension)).' GMT', true, 200); } if(defined('WPFC_REMOVE_VIA_FOOTER_COMMENT') && WPFC_REMOVE_VIA_FOOTER_COMMENT){ $via_php = ""; } $content = $content.$via_php; die($content); } }else{ if($this->isMobile()){ if(class_exists("WpFcMobileCache") && isset($this->options->wpFastestCacheMobileTheme)){ if(isset($this->options->wpFastestCacheMobileTheme_themename) && $this->options->wpFastestCacheMobileTheme_themename){ $create_cache = true; }else if($this->isPluginActive('wptouch/wptouch.php') || $this->isPluginActive('wptouch-pro/wptouch-pro.php')){ //to check that user-agent exists in wp-touch's list or not if($this->is_wptouch_smartphone()){ $create_cache = true; }else{ $create_cache = false; } }else if($this->isPluginActive('any-mobile-theme-switcher/any-mobile-theme-switcher.php')){ if($this->is_anymobilethemeswitcher_mobile()){ $create_cache = true; }else{ $create_cache = false; } }else{ if((preg_match('/iPhone/', $_SERVER['HTTP_USER_AGENT']) && preg_match('/Mobile/', $_SERVER['HTTP_USER_AGENT'])) || (preg_match('/Android/', $_SERVER['HTTP_USER_AGENT']) && preg_match('/Mobile/', $_SERVER['HTTP_USER_AGENT']))){ $create_cache = true; }else{ $create_cache = false; } } }else if(!isset($this->options->wpFastestCacheMobile) && !isset($this->options->wpFastestCacheMobileTheme)){ $create_cache = true; }else{ $create_cache = false; } }else{ $create_cache = true; } if($create_cache){ $this->startTime = microtime(true); add_action('wp', array($this, "detect_current_page_type")); add_action('get_footer', array($this, "detect_current_page_type")); add_action('get_footer', array($this, "wp_print_scripts_action")); // to exclude current page hook add_action("wpfc_exclude_current_page", array($this, 'exclude_current_page'), 10, 0); ob_start(array($this, "callback")); } } } } public function is_user_admin(){ global $wpdb; foreach ((array)$_COOKIE as $cookie_key => $cookie_value){ if(preg_match("/wordpress_logged_in/i", $cookie_key)){ $username = preg_replace("/^([^\|]+)\|.+/", "$1", $cookie_value); break; } } if(isset($username) && $username){ $username = esc_sql($username); $res = $wpdb->get_var("SELECT `$wpdb->users`.`ID`, `$wpdb->users`.`user_login`, `$wpdb->usermeta`.`meta_key`, `$wpdb->usermeta`.`meta_value` FROM `$wpdb->users` INNER JOIN `$wpdb->usermeta` ON `$wpdb->users`.`user_login` = \"$username\" AND `$wpdb->usermeta`.`meta_key` LIKE \"%_user_level\" AND `$wpdb->usermeta`.`meta_value` = \"10\" AND `$wpdb->users`.`ID` = `$wpdb->usermeta`.user_id ;" ); return $res; } return false; } public function exclude_current_page($some = true){ $via = debug_backtrace(); if(isset($via) && is_array($via)){ foreach ($via as $key => $value){ if($value["function"] == "wpfc_exclude_current_page"){ if(defined('WPFC_DEBUG') && (WPFC_DEBUG === true)){ if(preg_match("/wp-content\/themes/", $value["file"])){ $this->exclude_current_page_text = ""; }else if(preg_match("/wp-content\/plugins/", $value["file"])){ $this->exclude_current_page_text = ""; } }else{ $this->exclude_current_page_text = ""; } break; } } } } public function wp_print_scripts_action(){ echo ""; } public function ignored($buffer){ $list = array( "\/wp\-comments\-post\.php", "\/wp\-login\.php", "\/robots\.txt", "\/wp\-cron\.php", "\/wp\-content", "\/wp\-admin", "\/wp\-includes", "\/index\.php", "\/xmlrpc\.php", "\/wp\-api\/", "leaflet\-geojson\.php", "\/clientarea\.php" ); if($this->isPluginActive('woocommerce/woocommerce.php')){ if($this->current_page_type != "homepage"){ global $post; if(isset($post->ID) && $post->ID){ if(function_exists("wc_get_page_id")){ $woocommerce_ids = array(); //wc_get_page_id('product') //wc_get_page_id('product-category') array_push($woocommerce_ids, wc_get_page_id('cart'), wc_get_page_id('checkout'), wc_get_page_id('receipt'), wc_get_page_id('confirmation'), wc_get_page_id('myaccount')); if (in_array($post->ID, $woocommerce_ids)) { return true; } } } //"\/product" //"\/product-category" array_push($list, "\/cart\/?$", "\/checkout", "\/receipt", "\/confirmation", "\/wc-api\/"); } } if($this->isPluginActive('wp-easycart/wpeasycart.php')){ array_push($list, "\/cart"); } if($this->isPluginActive('easy-digital-downloads/easy-digital-downloads.php')){ array_push($list, "\/cart", "\/checkout"); } if(preg_match("/".implode("|", $list)."/i", $_SERVER["REQUEST_URI"])){ return true; } return false; } public function exclude_page($buffer = false){ $preg_match_rule = ""; //$request_url = urldecode(trim($_SERVER["REQUEST_URI"], "/")); $request_url = urldecode($_SERVER["REQUEST_URI"]); if($this->exclude_rules){ foreach((array)$this->exclude_rules as $key => $value){ $value->type = isset($value->type) ? $value->type : "page"; if($value->prefix == "yandexclickid"){ if(preg_match("/y(ad|s)?clid\=/i", $request_url)){ // yclid // yadclid // ysclid return true; } }else if($value->prefix == "googleanalytics"){ if(preg_match("/utm_(source|medium|campaign|content|term)/i", $request_url)){ return true; } }else if(isset($value->prefix) && $value->prefix && ($value->type == "page")){ $value->content = trim($value->content); //$value->content = trim($value->content, "/"); if($buffer && preg_match("/^(homepage|category|tag|post|page|archive|attachment)$/", $value->prefix)){ if(preg_match('/<\!--WPFC_PAGE_TYPE_'.$value->prefix.'-->/i', $buffer)){ return true; } }else if($value->prefix == "exact"){ $request_url = trim($request_url, "/"); $value->content = trim($value->content, "/"); if(strtolower($value->content) == strtolower($request_url)){ return true; } }else if($value->prefix == "regex"){ if(preg_match("/".$value->content."/i", $request_url)){ return true; } }else{ if($value->prefix == "startwith"){ $request_url = ltrim($request_url, "/"); $value->content = ltrim($value->content, "/"); $preg_match_rule = "^".preg_quote($value->content, "/"); }else if($value->prefix == "contain"){ $preg_match_rule = preg_quote($value->content, "/"); } if($preg_match_rule){ if(preg_match("/".$preg_match_rule."/i", $request_url)){ return true; } } } }else if($value->type == "useragent"){ if(preg_match("/".preg_quote($value->content, "/")."/i", $_SERVER['HTTP_USER_AGENT'])){ return true; } }else if($value->type == "cookie"){ if(isset($_SERVER['HTTP_COOKIE'])){ if(preg_match("/".preg_quote($value->content, "/")."/i", $_SERVER['HTTP_COOKIE'])){ return true; } } } } } return false; } public function is_json(){ return $this->current_page_content_type == "json" ? true : false; // if(isset($_SERVER["HTTP_ACCEPT"]) && preg_match("/json/i", $_SERVER["HTTP_ACCEPT"])){ // return true; // } // if(preg_match("/^\/wp-json/", $_SERVER["REQUEST_URI"])){ // return true; // } // if(preg_match("/^\s*\{\s*[\"\']/i", $buffer)){ // return true; // } // if(preg_match("/^\s*\[\s*\{\s*[\"\']/i", $buffer)){ // return true; // } // return false; } public function is_xml(){ return $this->current_page_content_type == "xml" ? true : false; // if(preg_match("/^\s*\<\?xml/i", $buffer)){ // return true; // } // return false; } public function is_html(){ return $this->current_page_content_type == "html" ? true : false; } public function set_current_page_type($buffer){ preg_match('/<\!--WPFC_PAGE_TYPE_([a-z]+)-->/i', $buffer, $out); $this->current_page_type = isset($out[1]) ? $out[1] : false; } public function set_current_page_content_type($buffer){ $content_type = false; if(function_exists("headers_list")){ $headers = headers_list(); foreach($headers as $header){ if(preg_match("/Content-Type\:/i", $header)){ $content_type = preg_replace("/Content-Type\:\s(.+)/i", "$1", $header); } } } if(preg_match("/xml/i", $content_type)){ $this->current_page_content_type = "xml"; }else if(preg_match("/json/i", $content_type)){ $this->current_page_content_type = "json"; }else{ $this->current_page_content_type = "html"; } } public function last_error($buffer = false){ if(function_exists("http_response_code") && (http_response_code() === 404)){ return true; } if(is_404()){ return true; } //to exclude "There has been a critical error on this website" page if(preg_match("/
\s*]*>/i", $buffer)){ preg_match_all("/]*>((?!<\/pre>).)+<\/pre>/is", $buffer, $pre_buffer); preg_match_all("/]*>((?!<\/pre>).)+<\/pre>/is", $content, $pre_content); if(isset($pre_content[0]) && isset($pre_content[0][0])){ foreach ($pre_content[0] as $key => $value){ if(isset($pre_buffer[0][$key])){ /* location ~ / { set $path /path/$1/index.html; } */ $pre_buffer[0][$key] = preg_replace('/\$(\d)/', '\\\$$1', $pre_buffer[0][$key]); /* \\\ */ $pre_buffer[0][$key] = preg_replace('/\\\\\\\\\\\/', '\\\\\\\\\\\\\\', $pre_buffer[0][$key]); /* \\ */ $pre_buffer[0][$key] = preg_replace('/\\\\\\\\/', '\\\\\\\\\\', $pre_buffer[0][$key]); /* /\ */ $pre_buffer[0][$key] = preg_replace('/\/\\\\/', '/\\\\\\', $pre_buffer[0][$key]); $content = preg_replace("/".preg_quote($value, "/")."/", $pre_buffer[0][$key], $content); } } } } return $content; } public function cdn_rewrite($content){ if($this->cdn){ $content = preg_replace_callback("/(srcset|src|href|data-vc-parallax-image|data-bg|data-bg-webp|data-fullurl|data-mobileurl|data-img-url|data-cvpsrc|data-cvpset|data-thumb|data-bg-url|data-large_image|data-lazyload|data-lazy|data-source-url|data-srcsmall|data-srclarge|data-srcfull|data-slide-img|data-lazy-original)\s{0,2}\=\s{0,2}[\'\"]([^\'\"]+)[\'\"]/i", array($this, 'cdn_replace_urls'), $content); //url() $content = preg_replace_callback("/(url)\(([^\)\>]+)\)/i", array($this, 'cdn_replace_urls'), $content); //{"concatemoji":"http:\/\/your_url.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.7"} $content = preg_replace_callback("/\{\"concatemoji\"\:\"[^\"]+\"\}/i", array($this, 'cdn_replace_urls'), $content); // $content = preg_replace_callback("/[\"\']([^\'\"]+)[\"\']\s*\:\s*[\"\']https?\:\\\\\/\\\\\/[^\"\']+[\"\']/i", array($this, 'cdn_replace_urls'), $content); // $content = preg_replace_callback("/(jsFileLocation)\s*\:[\"\']([^\"\']+)[\"\']/i", array($this, 'cdn_replace_urls'), $content); //