public function geoip()
 {
     $ip = $this->getRequest()->param('IP');
     $fn = $this->getRequest()->getVar('callback');
     $requestType = $this->getRequest()->getExtension();
     $ipCache = IPInfoCache::get()->filter(array('IP' => $ip))->first();
     if ($ipCache && $ipCache->exists()) {
         if (strtotime($ipCache->LastEdited) < strtotime('24 hours ago')) {
             $ipCache->clearIPCache();
         }
         $details = $ipCache->getDetails();
     } else {
         $details = IPInfoCache::setupCache($ip);
     }
     $this->response->addHeader('Content-Type', 'application/json');
     $cors = Config::inst()->get('IPInfoCache', 'CORS');
     if ($cors) {
         $this->response->addHeader('Access-Control-Allow-Origin', '*');
     }
     if ($requestType == 'jsonp') {
         $fn = isset($fn) ? $fn : Config::inst()->get('IPInfoCache', 'jsonp');
         if ($fn) {
             return "{$fn}(" . $details . ');';
         }
     }
     return $details;
 }
 public function geoip()
 {
     $ip = $this->getRequest()->param('IP');
     $ipCache = IPInfoCache::get()->filter(array('IP' => $ip))->first();
     if ($ipCache && $ipCache->exists()) {
         if (strtotime($ipCache->LastEdited) < strtotime('24 hours ago')) {
             $ipCache->clearIPCache();
         }
         $details = $ipCache->getDetails();
     } else {
         $details = IPInfoCache::setupCache($ip);
     }
     return $details;
 }