-
-
Save yuwonodarmawan/6e68d2edc63286d3398eea183d60dec0 to your computer and use it in GitHub Desktop.
Simple API caching with PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* API Request Caching | |
* | |
* Use server-side caching to store API request's as JSON at a set | |
* interval, rather than each pageload. | |
* | |
* @arg Argument description and usage info | |
*/ | |
function json_cached_api_results( $cache_file = NULL, $expires = NULL ) { | |
global $request_type, $purge_cache, $limit_reached, $request_limit; | |
if( !$cache_file ) $cache_file = dirname(__FILE__) . '/api-cache.json'; | |
if( !$expires) $expires = time() - 2*60*60; | |
if( !file_exists($cache_file) ) die("Cache file is missing: $cache_file"); | |
// Check that the file is older than the expire time and that it's not empty | |
if ( filectime($cache_file) < $expires || file_get_contents($cache_file) == '' || $purge_cache && intval($_SESSION['views']) <= $request_limit ) { | |
// File is too old, refresh cache | |
$api_results = indeed_api_request(); | |
$json_results = json_encode($api_results); | |
// Remove cache file on error to avoid writing wrong xml | |
if ( $api_results && $json_results ) | |
file_put_contents($cache_file, $json_results); | |
else | |
unlink($cache_file); | |
} else { | |
// Check for the number of purge cache requests to avoid abuse | |
if( intval($_SESSION['views']) >= $request_limit ) | |
$limit_reached = " <span class='error'>Request limit reached ($request_limit). Please try purging the cache later.</span>"; | |
// Fetch cache | |
$json_results = file_get_contents($cache_file); | |
$request_type = 'JSON'; | |
} | |
return json_decode($json_results); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment