protected function checkForBlockedCountry($countryBlock, $ip, $bareRequestURI)
 {
     try {
         $homeURL = wfWAF::getInstance()->getStorageEngine()->getConfig('homeURL');
     } catch (Exception $e) {
         //Do nothing
     }
     $bareRequestURI = rtrim($bareRequestURI, '/\\');
     if ($country = $this->ip2Country($ip)) {
         foreach ($countryBlock['countries'] as $blocked) {
             if (strtoupper($blocked) == strtoupper($country)) {
                 if ($countryBlock['action'] == 'redir') {
                     $redirURL = $countryBlock['redirURL'];
                     $eRedirHost = wfWAFUtils::extractHostname($redirURL);
                     $isExternalRedir = false;
                     if ($eRedirHost && $homeURL && $eRedirHost != wfWAFUtils::extractHostname($homeURL)) {
                         $isExternalRedir = true;
                     }
                     if (!$isExternalRedir && rtrim(wfWAFUtils::extractBareURI($redirURL), '/\\') == $bareRequestURI) {
                         //Is this the URI we want to redirect to, then don't block it
                         //Do nothing
                     } else {
                         return array('action' => self::WFWAF_BLOCK_COUNTRY_REDIR);
                     }
                 } else {
                     return array('action' => self::WFWAF_BLOCK_COUNTRY);
                 }
             }
         }
     }
     return false;
 }