mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
5165ea265d
* refactor * fix: case-sensitive config from env, fix #2935 * lowercase all config section and keys * test: add test for case-insensitivity
123 lines
3.1 KiB
PHP
123 lines
3.1 KiB
PHP
<?php
|
|
|
|
class MemcachedCache implements CacheInterface
|
|
{
|
|
private $scope;
|
|
private $key;
|
|
private $conn;
|
|
private $expiration = 0;
|
|
private $time = false;
|
|
private $data = null;
|
|
|
|
public function __construct()
|
|
{
|
|
if (!extension_loaded('memcached')) {
|
|
throw new \Exception('"memcached" extension not loaded. Please check "php.ini"');
|
|
}
|
|
|
|
$section = 'MemcachedCache';
|
|
$host = Configuration::getConfig($section, 'host');
|
|
$port = Configuration::getConfig($section, 'port');
|
|
|
|
if (empty($host) && empty($port)) {
|
|
throw new \Exception('Configuration for ' . $section . ' missing.');
|
|
}
|
|
if (empty($host)) {
|
|
throw new \Exception('"host" param is not set for ' . $section);
|
|
}
|
|
if (empty($port)) {
|
|
throw new \Exception('"port" param is not set for ' . $section);
|
|
}
|
|
if (!ctype_digit($port)) {
|
|
throw new \Exception('"port" param is invalid for ' . $section);
|
|
}
|
|
|
|
$port = intval($port);
|
|
|
|
if ($port < 1 || $port > 65535) {
|
|
throw new \Exception('"port" param is invalid for ' . $section);
|
|
}
|
|
|
|
$conn = new \Memcached();
|
|
$conn->addServer($host, $port) or returnServerError('Could not connect to memcached server');
|
|
$this->conn = $conn;
|
|
}
|
|
|
|
public function loadData()
|
|
{
|
|
if ($this->data) {
|
|
return $this->data;
|
|
}
|
|
$result = $this->conn->get($this->getCacheKey());
|
|
if ($result === false) {
|
|
return null;
|
|
}
|
|
|
|
$this->time = $result['time'];
|
|
$this->data = $result['data'];
|
|
return $result['data'];
|
|
}
|
|
|
|
public function saveData($datas)
|
|
{
|
|
$time = time();
|
|
$object_to_save = [
|
|
'data' => $datas,
|
|
'time' => $time,
|
|
];
|
|
$result = $this->conn->set($this->getCacheKey(), $object_to_save, $this->expiration);
|
|
|
|
if ($result === false) {
|
|
throw new \Exception('Cannot write the cache to memcached server');
|
|
}
|
|
|
|
$this->time = $time;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getTime()
|
|
{
|
|
if ($this->time === false) {
|
|
$this->loadData();
|
|
}
|
|
return $this->time;
|
|
}
|
|
|
|
public function purgeCache($duration)
|
|
{
|
|
// Note: does not purges cache right now
|
|
// Just sets cache expiration and leave cache purging for memcached itself
|
|
$this->expiration = $duration;
|
|
}
|
|
|
|
public function setScope($scope)
|
|
{
|
|
$this->scope = $scope;
|
|
return $this;
|
|
}
|
|
|
|
public function setKey($key)
|
|
{
|
|
if (!empty($key) && is_array($key)) {
|
|
$key = array_map('strtolower', $key);
|
|
}
|
|
$key = json_encode($key);
|
|
|
|
if (!is_string($key)) {
|
|
throw new \Exception('The given key is invalid!');
|
|
}
|
|
|
|
$this->key = $key;
|
|
return $this;
|
|
}
|
|
|
|
private function getCacheKey()
|
|
{
|
|
if (is_null($this->key)) {
|
|
throw new \Exception('Call "setKey" first!');
|
|
}
|
|
|
|
return 'rss_bridge_cache_' . hash('md5', $this->scope . $this->key . 'A');
|
|
}
|
|
}
|