-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathSimpleCache.php
More file actions
73 lines (57 loc) · 1.64 KB
/
Copy pathSimpleCache.php
File metadata and controls
73 lines (57 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
namespace Noxlogic\RateLimitBundle\Service\Storage;
use Noxlogic\RateLimitBundle\Service\RateLimitInfo;
use Psr\SimpleCache\CacheInterface;
class SimpleCache implements StorageInterface
{
/**
* @var CacheInterface
*/
protected $client;
public function __construct(CacheInterface $client)
{
$this->client = $client;
}
public function getRateInfo($key)
{
$info = $this->client->get($key);
if ($info === null || !array_key_exists('limit', $info)) {
return false;
}
return $this->createRateInfo($info);
}
public function limitRate($key)
{
$info = $this->client->get($key);
if ($info === null || !array_key_exists('limit', $info)) {
return false;
}
$info['calls']++;
$ttl = $info['reset'] - time();
$this->client->set($key, $info, $ttl);
return $this->createRateInfo($info);
}
public function createRate($key, $limit, $period)
{
$info = [
'limit' => $limit,
'calls' => 1,
'reset' => time() + $period,
];
$this->client->set($key, $info, $period);
return $this->createRateInfo($info);
}
public function resetRate($key)
{
$this->client->delete($key);
return true;
}
private function createRateInfo(array $info): RateLimitInfo
{
$rateLimitInfo = new RateLimitInfo();
$rateLimitInfo->setLimit($info['limit']);
$rateLimitInfo->setCalls($info['calls']);
$rateLimitInfo->setResetTimestamp($info['reset']);
return $rateLimitInfo;
}
}