mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49: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();
|
||||
|
||||
if (
|
||||
$mtime !== false
|
||||
$mtime
|
||||
&& (time() - $cache_timeout < $mtime)
|
||||
&& !Debug::isEnabled()
|
||||
) {
|
||||
|
@ -203,7 +203,7 @@ class SpotifyBridge extends BridgeAbstract
|
||||
$time = (new DateTime())->getTimestamp() - $cache->getTime();
|
||||
}
|
||||
|
||||
if ($cache->getTime() == false || $time >= 3600) {
|
||||
if (!$cache->getTime() || $time >= 3600) {
|
||||
$this->fetchToken();
|
||||
$cache->saveData($this->token);
|
||||
} else {
|
||||
|
@ -48,7 +48,7 @@ class FileCache implements CacheInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getTime()
|
||||
public function getTime(): ?int
|
||||
{
|
||||
$cacheFile = $this->getCacheFile();
|
||||
clearstatcache(false, $cacheFile);
|
||||
|
@ -6,7 +6,7 @@ class MemcachedCache implements CacheInterface
|
||||
private $key;
|
||||
private $conn;
|
||||
private $expiration = 0;
|
||||
private $time = false;
|
||||
private $time = null;
|
||||
private $data = null;
|
||||
|
||||
public function __construct()
|
||||
@ -76,9 +76,9 @@ class MemcachedCache implements CacheInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getTime()
|
||||
public function getTime(): ?int
|
||||
{
|
||||
if ($this->time === false) {
|
||||
if ($this->time === null) {
|
||||
$this->loadData();
|
||||
}
|
||||
return $this->time;
|
||||
|
@ -20,8 +20,9 @@ class NullCache implements CacheInterface
|
||||
{
|
||||
}
|
||||
|
||||
public function getTime()
|
||||
public function getTime(): ?int
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public function purgeCache($seconds)
|
||||
|
@ -70,7 +70,7 @@ class SQLiteCache implements CacheInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getTime()
|
||||
public function getTime(): ?int
|
||||
{
|
||||
$Qselect = $this->db->prepare('SELECT updated FROM storage WHERE key = :key');
|
||||
$Qselect->bindValue(':key', $this->getCacheKey());
|
||||
|
@ -27,12 +27,6 @@ saveData(mixed $data): self
|
||||
|
||||
## 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
|
||||
|
||||
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!
|
||||
```
|
||||
```
|
||||
|
@ -423,7 +423,13 @@ abstract class BridgeAbstract implements BridgeInterface
|
||||
$scope = $this->getShortName();
|
||||
$cache->setScope($scope);
|
||||
$cache->setKey($key);
|
||||
if ($duration && $cache->getTime() < time() - $duration) {
|
||||
$timestamp = $cache->getTime();
|
||||
|
||||
if (
|
||||
$duration
|
||||
&& $timestamp
|
||||
&& $timestamp < time() - $duration
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
return $cache->loadData();
|
||||
|
@ -53,11 +53,11 @@ interface CacheInterface
|
||||
public function saveData($data);
|
||||
|
||||
/**
|
||||
* Returns the timestamp for the curent cache data
|
||||
*
|
||||
* @return ?int Timestamp
|
||||
* Returns the modification time of the current cache item.
|
||||
* In unix timestamp.
|
||||
* Example: 1688570578
|
||||
*/
|
||||
public function getTime();
|
||||
public function getTime(): ?int;
|
||||
|
||||
/**
|
||||
* 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
|
||||
$time = $cache->getTime();
|
||||
if (
|
||||
$time !== false
|
||||
&& (time() - $duration < $time)
|
||||
$time
|
||||
&& time() - $duration < $time
|
||||
&& !Debug::isEnabled()
|
||||
) {
|
||||
// Contents within duration and debug mode is disabled
|
||||
|
@ -31,6 +31,7 @@ class CacheTest extends TestCase
|
||||
$sut->purgeCache(-1);
|
||||
$sut->setKey(['key']);
|
||||
|
||||
$this->assertNull($sut->getTime());
|
||||
$this->assertNull($sut->loadData());
|
||||
|
||||
$sut->saveData('data');
|
||||
|
Loading…
Reference in New Issue
Block a user