mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix(CacheInterface): logic bug in getTime (#3491)
* fix(CacheInterface): logic bug in getTime * test
This commit is contained in:
parent
18e1597361
commit
a9fd3b9e61
@ -95,7 +95,7 @@ class DisplayAction implements ActionInterface
|
|||||||
$mtime = $cache->getTime();
|
$mtime = $cache->getTime();
|
||||||
|
|
||||||
if (
|
if (
|
||||||
$mtime !== false
|
$mtime
|
||||||
&& (time() - $cache_timeout < $mtime)
|
&& (time() - $cache_timeout < $mtime)
|
||||||
&& !Debug::isEnabled()
|
&& !Debug::isEnabled()
|
||||||
) {
|
) {
|
||||||
|
@ -203,7 +203,7 @@ class SpotifyBridge extends BridgeAbstract
|
|||||||
$time = (new DateTime())->getTimestamp() - $cache->getTime();
|
$time = (new DateTime())->getTimestamp() - $cache->getTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($cache->getTime() == false || $time >= 3600) {
|
if (!$cache->getTime() || $time >= 3600) {
|
||||||
$this->fetchToken();
|
$this->fetchToken();
|
||||||
$cache->saveData($this->token);
|
$cache->saveData($this->token);
|
||||||
} else {
|
} else {
|
||||||
|
@ -48,7 +48,7 @@ class FileCache implements CacheInterface
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTime()
|
public function getTime(): ?int
|
||||||
{
|
{
|
||||||
$cacheFile = $this->getCacheFile();
|
$cacheFile = $this->getCacheFile();
|
||||||
clearstatcache(false, $cacheFile);
|
clearstatcache(false, $cacheFile);
|
||||||
|
@ -6,7 +6,7 @@ class MemcachedCache implements CacheInterface
|
|||||||
private $key;
|
private $key;
|
||||||
private $conn;
|
private $conn;
|
||||||
private $expiration = 0;
|
private $expiration = 0;
|
||||||
private $time = false;
|
private $time = null;
|
||||||
private $data = null;
|
private $data = null;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
@ -76,9 +76,9 @@ class MemcachedCache implements CacheInterface
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTime()
|
public function getTime(): ?int
|
||||||
{
|
{
|
||||||
if ($this->time === false) {
|
if ($this->time === null) {
|
||||||
$this->loadData();
|
$this->loadData();
|
||||||
}
|
}
|
||||||
return $this->time;
|
return $this->time;
|
||||||
|
@ -20,8 +20,9 @@ class NullCache implements CacheInterface
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTime()
|
public function getTime(): ?int
|
||||||
{
|
{
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function purgeCache($seconds)
|
public function purgeCache($seconds)
|
||||||
|
@ -70,7 +70,7 @@ class SQLiteCache implements CacheInterface
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTime()
|
public function getTime(): ?int
|
||||||
{
|
{
|
||||||
$Qselect = $this->db->prepare('SELECT updated FROM storage WHERE key = :key');
|
$Qselect = $this->db->prepare('SELECT updated FROM storage WHERE key = :key');
|
||||||
$Qselect->bindValue(':key', $this->getCacheKey());
|
$Qselect->bindValue(':key', $this->getCacheKey());
|
||||||
|
@ -27,12 +27,6 @@ saveData(mixed $data): self
|
|||||||
|
|
||||||
## The `getTime` function
|
## The `getTime` function
|
||||||
|
|
||||||
This function returns the last write time for the cache, or `false` if the cache does not yet exist. Please notice that 'cache' refers to one specific item in the cache repository and might require additional data to identify a specific item (introduce custom functions where necessary!).
|
|
||||||
|
|
||||||
```PHP
|
|
||||||
getTime(): int, false
|
|
||||||
```
|
|
||||||
|
|
||||||
## The `purgeCache` function
|
## The `purgeCache` function
|
||||||
|
|
||||||
This function removes any data from the cache that is not within the given duration. The duration is specified in seconds and defines the period between now and the oldest item to keep.
|
This function removes any data from the cache that is not within the given duration. The duration is specified in seconds and defines the period between now and the oldest item to keep.
|
||||||
@ -70,4 +64,4 @@ class MyTypeCache implements CacheInterface {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Imaginary empty line!
|
// Imaginary empty line!
|
||||||
```
|
```
|
||||||
|
@ -423,7 +423,13 @@ abstract class BridgeAbstract implements BridgeInterface
|
|||||||
$scope = $this->getShortName();
|
$scope = $this->getShortName();
|
||||||
$cache->setScope($scope);
|
$cache->setScope($scope);
|
||||||
$cache->setKey($key);
|
$cache->setKey($key);
|
||||||
if ($duration && $cache->getTime() < time() - $duration) {
|
$timestamp = $cache->getTime();
|
||||||
|
|
||||||
|
if (
|
||||||
|
$duration
|
||||||
|
&& $timestamp
|
||||||
|
&& $timestamp < time() - $duration
|
||||||
|
) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return $cache->loadData();
|
return $cache->loadData();
|
||||||
|
@ -53,11 +53,11 @@ interface CacheInterface
|
|||||||
public function saveData($data);
|
public function saveData($data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the timestamp for the curent cache data
|
* Returns the modification time of the current cache item.
|
||||||
*
|
* In unix timestamp.
|
||||||
* @return ?int Timestamp
|
* Example: 1688570578
|
||||||
*/
|
*/
|
||||||
public function getTime();
|
public function getTime(): ?int;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes any data that is older than the specified age from cache
|
* Removes any data that is older than the specified age from cache
|
||||||
|
@ -432,8 +432,8 @@ function getSimpleHTMLDOMCached(
|
|||||||
// Determine if cached file is within duration
|
// Determine if cached file is within duration
|
||||||
$time = $cache->getTime();
|
$time = $cache->getTime();
|
||||||
if (
|
if (
|
||||||
$time !== false
|
$time
|
||||||
&& (time() - $duration < $time)
|
&& time() - $duration < $time
|
||||||
&& !Debug::isEnabled()
|
&& !Debug::isEnabled()
|
||||||
) {
|
) {
|
||||||
// Contents within duration and debug mode is disabled
|
// Contents within duration and debug mode is disabled
|
||||||
|
@ -31,6 +31,7 @@ class CacheTest extends TestCase
|
|||||||
$sut->purgeCache(-1);
|
$sut->purgeCache(-1);
|
||||||
$sut->setKey(['key']);
|
$sut->setKey(['key']);
|
||||||
|
|
||||||
|
$this->assertNull($sut->getTime());
|
||||||
$this->assertNull($sut->loadData());
|
$this->assertNull($sut->loadData());
|
||||||
|
|
||||||
$sut->saveData('data');
|
$sut->saveData('data');
|
||||||
|
Loading…
Reference in New Issue
Block a user