79 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
Copyright 2022 eraseyourknees
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
   http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
class UupDumpCache {
 | 
						|
    private $cacheFile;
 | 
						|
    private $isCompressed;
 | 
						|
    private $newCacheVersion = 1;
 | 
						|
 | 
						|
    public function __construct($resource, $compressed = true) {
 | 
						|
        $res = $resource."+cache_v".$this->newCacheVersion;
 | 
						|
        $cacheHash = hash('sha256', strtolower($res));
 | 
						|
        $ext = $compressed ? '.json.gz' : '.json';
 | 
						|
        $this->cacheFile = 'cache/'.$cacheHash.$ext;
 | 
						|
        $this->isCompressed = $compressed;
 | 
						|
    }
 | 
						|
 | 
						|
    public function getFileName() {
 | 
						|
        return $this->cacheFile;
 | 
						|
    }
 | 
						|
 | 
						|
    public function delete() {
 | 
						|
        @unlink($this->cacheFile);
 | 
						|
    }
 | 
						|
 | 
						|
    public function get() {
 | 
						|
        $cacheFile = $this->cacheFile;
 | 
						|
 | 
						|
        if(!file_exists($cacheFile)) {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
 | 
						|
        $cache = @file_get_contents($cacheFile);
 | 
						|
        if($this->isCompressed) $cache = @gzdecode($cache);
 | 
						|
 | 
						|
        $cache = json_decode($cache, 1);
 | 
						|
 | 
						|
        $expires = $cache['expires'];
 | 
						|
        $isExpired = ($expires !== false) && (time() > $expires);
 | 
						|
 | 
						|
        if(empty($cache['content']) || $isExpired) {
 | 
						|
            $this->delete();
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
 | 
						|
        return $cache['content'];
 | 
						|
    }
 | 
						|
 | 
						|
    public function put($content, $validity) {
 | 
						|
        $cacheFile = $this->cacheFile;
 | 
						|
        $expires = $validity ? time() + $validity : false;
 | 
						|
 | 
						|
        $cache = array(
 | 
						|
            'expires' => $expires,
 | 
						|
            'content' => $content,
 | 
						|
        );
 | 
						|
    
 | 
						|
        if(!file_exists('cache')) mkdir('cache');
 | 
						|
 | 
						|
        $cacheContent = json_encode($cache)."\n";
 | 
						|
        if($this->isCompressed) $cacheContent = @gzencode($cache);
 | 
						|
 | 
						|
        @file_put_contents($cacheFile, $cacheContent);
 | 
						|
    }
 | 
						|
}
 |