rss-bridge/lib/CacheFactory.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.0 KiB
PHP
Raw Normal View History

2013-08-11 13:30:41 +02:00
<?php
2018-11-14 17:06:07 +01: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 19:23:32 +01:00
2022-06-22 18:29:28 +02: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 17:06:07 +01:00
/**
* @param string|null $name The name of the cache e.g. "File", "Memcached" or "SQLite"
2018-11-14 17:06:07 +01:00
*/
public function create(string $name = null): CacheInterface
2022-06-22 18:29:28 +02:00
{
$name ??= Configuration::getConfig('cache', 'type');
$name = $this->sanitizeCacheName($name) . 'Cache';
2022-06-22 18:29:28 +02:00
if (! preg_match('/^[A-Z][a-zA-Z0-9-]*$/', $name)) {
throw new \InvalidArgumentException('Cache name invalid!');
}
2013-08-11 13:30:41 +02:00
2022-06-22 18:29:28 +02:00
$filePath = $this->folder . $name . '.php';
if (!file_exists($filePath)) {
2022-06-22 18:29:28 +02:00
throw new \Exception('Invalid cache');
}
2022-06-22 18:29:28 +02:00
$className = '\\' . $name;
return new $className();
}
2013-08-11 13:30:41 +02:00
2022-06-22 18:29:28 +02:00
protected function sanitizeCacheName(string $name)
{
// Trim trailing '.php' if exists
if (preg_match('/(.+)(?:\.php)/', $name, $matches)) {
$name = $matches[1];
}
2022-06-22 18:29:28 +02:00
// Trim trailing 'Cache' if exists
if (preg_match('/(.+)(?:Cache)$/i', $name, $matches)) {
$name = $matches[1];
}
2022-06-22 18:29:28 +02: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;
}
2015-12-04 10:19:05 +01:00
}