Skip to content
Snippets Groups Projects
Commit 748d1f5f authored by Rueben Ramirez's avatar Rueben Ramirez
Browse files

replacing long conditionals with function calls

parent f9274970
Branches
Tags
No related merge requests found
...@@ -3,51 +3,72 @@ ...@@ -3,51 +3,72 @@
// Start the timer so we can track the page load time // Start the timer so we can track the page load time
$start = microtime(); $start = microtime();
function getMicroTime($t) function getMicroTime($time) {
{ list($usec, $sec) = explode(" ", $time);
list($usec, $sec) = explode(" ", $t);
return ((float) $usec + (float) $sec); return ((float) $usec + (float) $sec);
} }
function refreshHasSecret($secret) {
return isset($_GET['refresh']) && $_GET['refresh'] == $secret;
}
$debug = true; function requestHasSecret($secret) {
$cache = false; return strpos($_SERVER['REQUEST_URI'],"refresh=${secret}")!==false;
$ip_of_your_website = '127.0.0.1'; }
$secret_string = 'changeme';
function isRemotePageLoad($currentUrl, $websiteIp) {
return ($_SERVER['HTTP_REFERER'] == $currentUrl
&& $_SERVER['REQUEST_URI'] != '/'
&& $_SERVER['REMOTE_ADDR'] != $websiteIp);
}
function handleCDNRemoteAddressing() {
// so we don't confuse the cloudflare server
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
}
}
function getCleanUrl($secret) {
$replaceKeys = array("?refresh=${secret}","&refresh=${secret}");
$url = "http://${_SERVER['HTTP_HOST']}${_SERVER['REQUEST_URI']}";
$current_url = str_replace($replaceKeys, '', $url);
return $current_url;
// so we don't confuse the cloudflare server
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
} }
$debug = true;
$cache = false;
$ip_of_your_website = '127.0.0.1';
$reddis_server = '127.0.0.1';
$secret_string = 'changeme';
$unlimited = get_option('wp-redis-cache-debug',false);
$seconds_cache_redis = get_option('wp-redis-cache-seconds',43200);
handleCDNRemoteAddressing();
if(!defined('WP_USE_THEMES')) { if(!defined('WP_USE_THEMES')) {
define('WP_USE_THEMES', true); define('WP_USE_THEMES', true);
} }
$current_url = str_replace(array("?refresh=${secret_string}","&refresh=${secret_string}"), '', "http://${_SERVER['HTTP_HOST']}${_SERVER['REQUEST_URI']}"); //clean up the URL $current_url = getCleanUrl($secret_string);
$redis_key = md5($current_url); $redis_key = md5($current_url);
try { try {
// check if PECL Extension is available // check if PECL Extension is available
if (class_exists('Redis')) { if (class_exists('Redis')) {
$redis = new Redis(); $redis = new Redis();
// Sockets can be used as well. Documentation @ https://github.com/nicolasff/phpredis/#connection // Sockets can be used as well. Documentation @ https://github.com/nicolasff/phpredis/#connection
$redis->connect('127.0.0.1'); $redis->connect($reddis_server);
} else // Fallback to predis5.2.php } else { // Fallback to predis5.2.php
{
include_once("wp-content/plugins/wp-redis-cache/predis5.2.php"); //we need this to use Redis inside of PHP include_once("wp-content/plugins/wp-redis-cache/predis5.2.php"); //we need this to use Redis inside of PHP
$redis = new Predis_Client(); $redis = new Predis_Client();
} }
//Either manual refresh cache by adding ?refresh=secret_string after the URL or somebody posting a comment //Either manual refresh cache by adding ?refresh=secret_string after the URL or somebody posting a comment
if (isset($_GET['refresh']) || $_GET['refresh'] == $secret_string || strpos($_SERVER['REQUEST_URI'],"refresh=${secret_string}")!==false || ($_SERVER['HTTP_REFERER'] == $current_url && $_SERVER['REQUEST_URI'] != '/' && $_SERVER['REMOTE_ADDR'] != $ip_of_your_website)) { if (refreshHasSecret() || requestHasSecret() || isRemotePageLoad()) {
$redis->del($redis_key); $redis->del($redis_key);
require('./wp-blog-header.php'); require('./wp-blog-header.php');
...@@ -70,8 +91,6 @@ try { ...@@ -70,8 +91,6 @@ try {
ob_end_clean(); ob_end_clean();
echo $html_of_page; echo $html_of_page;
$unlimited = get_option('wp-redis-cache-debug',false);
$seconds_cache_redis = get_option('wp-redis-cache-seconds',43200);
if (!is_numeric($seconds_cache_redis)) { if (!is_numeric($seconds_cache_redis)) {
$seconds_cache_redis = 43200; $seconds_cache_redis = 43200;
} }
...@@ -100,7 +119,6 @@ try { ...@@ -100,7 +119,6 @@ try {
require('./wp-blog-header.php'); require('./wp-blog-header.php');
} }
$end = microtime(); $end = microtime();
$time = (@getMicroTime($end) - @getMicroTime($start)); $time = (@getMicroTime($end) - @getMicroTime($start));
if ($debug) { if ($debug) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment