2018-07-05 19:47:52 +00:00
|
|
|
<?php
|
|
|
|
|
2020-01-18 14:41:19 +00:00
|
|
|
namespace Friendica\Core;
|
|
|
|
|
|
|
|
use Friendica\Core\Cache\ICache;
|
2018-07-05 19:47:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract class for common used functions
|
|
|
|
*/
|
2020-01-18 14:41:19 +00:00
|
|
|
abstract class BaseCache implements ICache
|
2018-07-05 19:47:52 +00:00
|
|
|
{
|
2019-08-03 18:48:56 +00:00
|
|
|
/**
|
|
|
|
* @var string The hostname
|
|
|
|
*/
|
|
|
|
private $hostName;
|
|
|
|
|
|
|
|
public function __construct(string $hostName)
|
|
|
|
{
|
|
|
|
$this->hostName = $hostName;
|
|
|
|
}
|
|
|
|
|
2019-04-20 15:37:57 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2019-08-03 18:48:56 +00:00
|
|
|
return $this->hostName;
|
2019-04-20 15:37:57 +00:00
|
|
|
}
|
|
|
|
|
2018-07-05 19:47:52 +00:00
|
|
|
/**
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $key The original key
|
|
|
|
* @return string The cache key used for the cache
|
|
|
|
* @throws \Exception
|
2018-07-05 19:47:52 +00:00
|
|
|
*/
|
2018-10-06 22:27:54 +00:00
|
|
|
protected function getCacheKey($key)
|
|
|
|
{
|
2019-04-21 10:24:48 +00:00
|
|
|
return $this->getPrefix() . ":" . $key;
|
2018-07-05 19:47:52 +00:00
|
|
|
}
|
2018-10-06 22:27:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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) {
|
2019-08-03 18:48:56 +00:00
|
|
|
$value = preg_replace('/^' . $this->hostName . ':/', '', $value);
|
2018-10-06 22:27:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
sort($keys);
|
|
|
|
|
|
|
|
return $keys;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 08:35:37 +00:00
|
|
|
* Filters the keys of an array with a given prefix
|
|
|
|
* Returns the filtered keys as an new array
|
2018-10-06 22:27:54 +00:00
|
|
|
*
|
2019-08-15 11:58:01 +00:00
|
|
|
* @param array $keys The keys, which should get filtered
|
2018-10-07 08:35:37 +00:00
|
|
|
* @param string|null $prefix The prefix (if null, all keys will get returned)
|
2018-10-06 22:27:54 +00:00
|
|
|
*
|
2018-10-07 08:35:37 +00:00
|
|
|
* @return array The filtered array with just the keys
|
2018-10-06 22:27:54 +00:00
|
|
|
*/
|
2019-08-15 11:58:01 +00:00
|
|
|
protected function filterArrayKeysByPrefix(array $keys, string $prefix = null)
|
2018-10-06 22:27:54 +00:00
|
|
|
{
|
|
|
|
if (empty($prefix)) {
|
2019-08-15 11:58:01 +00:00
|
|
|
return $keys;
|
2018-10-06 22:27:54 +00:00
|
|
|
} else {
|
|
|
|
$result = [];
|
|
|
|
|
2019-08-15 11:58:01 +00:00
|
|
|
foreach ($keys as $key) {
|
2018-10-06 22:27:54 +00:00
|
|
|
if (strpos($key, $prefix) === 0) {
|
|
|
|
array_push($result, $key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
2018-07-05 20:01:33 +00:00
|
|
|
}
|