2013-08-11 15:30:41 +04:00
|
|
|
<?php
|
2018-11-14 19:06:07 +03:00
|
|
|
/**
|
|
|
|
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
|
|
* Atom feeds for websites that don't have one.
|
|
|
|
*
|
|
|
|
* For the full license information, please view the UNLICENSE file distributed
|
|
|
|
* with this source code.
|
|
|
|
*
|
|
|
|
* @package Core
|
|
|
|
* @license http://unlicense.org/ UNLICENSE
|
|
|
|
* @link https://github.com/rss-bridge/rss-bridge
|
|
|
|
*/
|
2018-11-06 21:23:32 +03:00
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
class CacheFactory
|
|
|
|
{
|
|
|
|
private $folder;
|
|
|
|
private $cacheNames;
|
|
|
|
|
|
|
|
public function __construct(string $folder = PATH_LIB_CACHES)
|
|
|
|
{
|
|
|
|
$this->folder = $folder;
|
|
|
|
// create cache names
|
|
|
|
foreach(scandir($this->folder) as $file) {
|
|
|
|
if(preg_match('/^([^.]+)Cache\.php$/U', $file, $m)) {
|
|
|
|
$this->cacheNames[] = $m[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 19:06:07 +03:00
|
|
|
/**
|
2022-06-22 19:29:28 +03:00
|
|
|
* @param string $name The name of the cache e.g. "File", "Memcached" or "SQLite"
|
2018-11-14 19:06:07 +03:00
|
|
|
*/
|
2022-06-22 19:29:28 +03:00
|
|
|
public function create(string $name): CacheInterface
|
|
|
|
{
|
2019-06-18 20:04:19 +03:00
|
|
|
$name = $this->sanitizeCacheName($name) . 'Cache';
|
2019-02-06 20:52:44 +03:00
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
if(! preg_match('/^[A-Z][a-zA-Z0-9-]*$/', $name)) {
|
2018-11-14 21:07:53 +03:00
|
|
|
throw new \InvalidArgumentException('Cache name invalid!');
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|
2013-08-11 15:30:41 +04:00
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
$filePath = $this->folder . $name . '.php';
|
2018-11-14 21:07:53 +03:00
|
|
|
if(!file_exists($filePath)) {
|
2022-06-22 19:29:28 +03:00
|
|
|
throw new \Exception('Invalid cache');
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|
2022-06-22 19:29:28 +03:00
|
|
|
$className = '\\' . $name;
|
|
|
|
return new $className();
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|
2013-08-11 15:30:41 +04:00
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
protected function sanitizeCacheName(string $name)
|
|
|
|
{
|
|
|
|
// Trim trailing '.php' if exists
|
|
|
|
if (preg_match('/(.+)(?:\.php)/', $name, $matches)) {
|
|
|
|
$name = $matches[1];
|
2019-02-06 20:52:44 +03:00
|
|
|
}
|
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
// Trim trailing 'Cache' if exists
|
|
|
|
if (preg_match('/(.+)(?:Cache)$/i', $name, $matches)) {
|
|
|
|
$name = $matches[1];
|
2019-02-06 20:52:44 +03:00
|
|
|
}
|
|
|
|
|
2022-06-22 19:29:28 +03:00
|
|
|
if(in_array(strtolower($name), array_map('strtolower', $this->cacheNames))) {
|
|
|
|
$index = array_search(strtolower($name), array_map('strtolower', $this->cacheNames));
|
|
|
|
return $this->cacheNames[$index];
|
|
|
|
}
|
|
|
|
return null;
|
2019-02-06 20:52:44 +03:00
|
|
|
}
|
2015-12-04 12:19:05 +03:00
|
|
|
}
|