424c87195b
- Introduce enum "Duration" - Introduce enum "Type" - Move "Cache\Cache" to "BaseCache"
90 lines
1.8 KiB
PHP
90 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Core;
|
|
|
|
use Friendica\Core\Cache\ICache;
|
|
|
|
/**
|
|
* Abstract class for common used functions
|
|
*/
|
|
abstract class BaseCache implements ICache
|
|
{
|
|
/**
|
|
* @var string The hostname
|
|
*/
|
|
private $hostName;
|
|
|
|
public function __construct(string $hostName)
|
|
{
|
|
$this->hostName = $hostName;
|
|
}
|
|
|
|
/**
|
|
* Returns the prefix (to avoid namespace conflicts)
|
|
*
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
protected function getPrefix()
|
|
{
|
|
// We fetch with the hostname as key to avoid problems with other applications
|
|
return $this->hostName;
|
|
}
|
|
|
|
/**
|
|
* @param string $key The original key
|
|
* @return string The cache key used for the cache
|
|
* @throws \Exception
|
|
*/
|
|
protected function getCacheKey($key)
|
|
{
|
|
return $this->getPrefix() . ":" . $key;
|
|
}
|
|
|
|
/**
|
|
* @param array $keys A list of cached keys
|
|
* @return array A list of original keys
|
|
*/
|
|
protected function getOriginalKeys($keys)
|
|
{
|
|
if (empty($keys)) {
|
|
return [];
|
|
} else {
|
|
// Keys are prefixed with the node hostname, let's remove it
|
|
array_walk($keys, function (&$value) {
|
|
$value = preg_replace('/^' . $this->hostName . ':/', '', $value);
|
|
});
|
|
|
|
sort($keys);
|
|
|
|
return $keys;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Filters the keys of an array with a given prefix
|
|
* Returns the filtered keys as an new array
|
|
*
|
|
* @param array $keys The keys, which should get filtered
|
|
* @param string|null $prefix The prefix (if null, all keys will get returned)
|
|
*
|
|
* @return array The filtered array with just the keys
|
|
*/
|
|
protected function filterArrayKeysByPrefix(array $keys, string $prefix = null)
|
|
{
|
|
if (empty($prefix)) {
|
|
return $keys;
|
|
} else {
|
|
$result = [];
|
|
|
|
foreach ($keys as $key) {
|
|
if (strpos($key, $prefix) === 0) {
|
|
array_push($result, $key);
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|
|
}
|