fix(CacheInterface): logic bug in getTime (#3491)

* fix(CacheInterface): logic bug in getTime

* test
This commit is contained in:
Dag 2023-07-05 17:37:21 +02:00 committed by GitHub
parent 18e1597361
commit a9fd3b9e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 24 additions and 22 deletions

View File

@ -95,7 +95,7 @@ class DisplayAction implements ActionInterface
$mtime = $cache->getTime();
if (
$mtime !== false
$mtime
&& (time() - $cache_timeout < $mtime)
&& !Debug::isEnabled()
) {

View File

@ -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 {

View File

@ -48,7 +48,7 @@ class FileCache implements CacheInterface
return $this;
}
public function getTime()
public function getTime(): ?int
{
$cacheFile = $this->getCacheFile();
clearstatcache(false, $cacheFile);

View File

@ -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;

View File

@ -20,8 +20,9 @@ class NullCache implements CacheInterface
{
}
public function getTime()
public function getTime(): ?int
{
return null;
}
public function purgeCache($seconds)

View File

@ -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());

View File

@ -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!
```
```

View File

@ -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();

View File

@ -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

View File

@ -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

View File

@ -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');