LicenseCheckTransient.php
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace ACP\Transient;
use AC\Expirable;
use AC\Storage;
class LicenseCheckTransient implements Expirable
{
private const CACHE_KEY = 'acp_periodic_license_check';
/**
* @var Storage\Timestamp
*/
protected $timestamp;
public function __construct(bool $network_only)
{
$factory = $network_only
? new Storage\NetworkOptionFactory()
: new Storage\OptionFactory();
$this->timestamp = new Storage\Timestamp(
$factory->create(self::CACHE_KEY)
);
}
public function is_expired(int $value = null): bool
{
return $this->timestamp->is_expired($value);
}
public function delete()
{
$this->timestamp->delete();
}
/**
* @param int $expiration Time until expiration in seconds.
*
* @return bool
*/
public function save($expiration)
{
// Always store timestamp before option data.
return $this->timestamp->save(time() + (int)$expiration);
}
}