mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
121 lines
3 KiB
PHP
121 lines
3 KiB
PHP
<?php
|
|
|
|
class FileCache implements CacheInterface
|
|
{
|
|
protected $path;
|
|
protected $key;
|
|
|
|
public function __construct()
|
|
{
|
|
if (!is_writable(PATH_CACHE)) {
|
|
throw new \Exception('The cache folder is not writeable');
|
|
}
|
|
}
|
|
|
|
public function loadData()
|
|
{
|
|
if (file_exists($this->getCacheFile())) {
|
|
return unserialize(file_get_contents($this->getCacheFile()));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function saveData($data)
|
|
{
|
|
$writeStream = file_put_contents($this->getCacheFile(), serialize($data));
|
|
if ($writeStream === false) {
|
|
throw new \Exception('Cannot write the cache... Do you have the right permissions ?');
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
public function getTime()
|
|
{
|
|
$cacheFile = $this->getCacheFile();
|
|
clearstatcache(false, $cacheFile);
|
|
if (file_exists($cacheFile)) {
|
|
$time = filemtime($cacheFile);
|
|
if ($time !== false) {
|
|
return $time;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function purgeCache($seconds)
|
|
{
|
|
$cachePath = $this->getPath();
|
|
if (!file_exists($cachePath)) {
|
|
return;
|
|
}
|
|
$cacheIterator = new \RecursiveIteratorIterator(
|
|
new \RecursiveDirectoryIterator($cachePath),
|
|
\RecursiveIteratorIterator::CHILD_FIRST
|
|
);
|
|
|
|
foreach ($cacheIterator as $cacheFile) {
|
|
if (in_array($cacheFile->getBasename(), ['.', '..', '.gitkeep'])) {
|
|
continue;
|
|
} elseif ($cacheFile->isFile()) {
|
|
if (filemtime($cacheFile->getPathname()) < time() - $seconds) {
|
|
// todo: sometimes this file doesn't exists
|
|
unlink($cacheFile->getPathname());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function setScope($scope)
|
|
{
|
|
if (!is_string($scope)) {
|
|
throw new \Exception('The given scope is invalid!');
|
|
}
|
|
|
|
$this->path = PATH_CACHE . trim($scope, " \t\n\r\0\x0B\\\/") . '/';
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setKey($key)
|
|
{
|
|
$key = json_encode($key);
|
|
|
|
if (!is_string($key)) {
|
|
throw new \Exception('The given key is invalid!');
|
|
}
|
|
|
|
$this->key = $key;
|
|
return $this;
|
|
}
|
|
|
|
private function getPath()
|
|
{
|
|
if (is_null($this->path)) {
|
|
throw new \Exception('Call "setScope" first!');
|
|
}
|
|
|
|
if (!is_dir($this->path)) {
|
|
if (mkdir($this->path, 0755, true) !== true) {
|
|
throw new \Exception('mkdir: Unable to create file cache folder');
|
|
}
|
|
}
|
|
|
|
return $this->path;
|
|
}
|
|
|
|
private function getCacheFile()
|
|
{
|
|
return $this->getPath() . $this->getCacheName();
|
|
}
|
|
|
|
private function getCacheName()
|
|
{
|
|
if (is_null($this->key)) {
|
|
throw new \Exception('Call "setKey" first!');
|
|
}
|
|
|
|
return hash('md5', $this->key) . '.cache';
|
|
}
|
|
}
|