1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace NV\RequestLimitBundle\Storage\Provider; |
4
|
|
|
|
5
|
|
|
use Doctrine\ORM\EntityManager; |
|
|
|
|
6
|
|
|
|
7
|
|
|
class MySQLProvider implements ProviderInterface |
8
|
|
|
{ |
9
|
|
|
/** |
10
|
|
|
* @var EntityManager $_em |
11
|
|
|
*/ |
12
|
|
|
private $_em; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* @param EntityManager $em |
16
|
|
|
*/ |
17
|
|
|
public function __construct($em) |
18
|
|
|
{ |
19
|
|
|
$this->_em = $em; |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @param $configuration |
24
|
|
|
*/ |
25
|
|
|
public function configure($configuration) |
|
|
|
|
26
|
|
|
{ |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @inheritdoc |
31
|
|
|
*/ |
32
|
|
|
public function get($key) |
33
|
|
|
{ |
34
|
|
|
$connection = $this->_em->getConnection(); |
35
|
|
|
$statement = $connection->prepare('SELECT expires_at FROM nv_request_limit_items WHERE item_key = :item_key'); |
36
|
|
|
$statement->bindValue('item_key', $key); |
37
|
|
|
$statement->execute(); |
38
|
|
|
$result = $statement->fetchAll(\PDO::FETCH_COLUMN); |
39
|
|
|
$connection->close(); |
40
|
|
|
$date = \DateTime::createFromFormat('Y-m-d H:i:s', $result[0]); |
41
|
|
|
|
42
|
|
|
return $date->getTimestamp(); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @inheritdoc |
47
|
|
|
*/ |
48
|
|
|
public function set($key, $expiresAt) |
49
|
|
|
{ |
50
|
|
|
$connection = $this->_em->getConnection(); |
51
|
|
|
$statement = $connection->prepare( |
52
|
|
|
'INSERT INTO nv_request_limit_items (item_key, expires_at) VALUES (:item_key, :expires_at);' |
53
|
|
|
); |
54
|
|
|
$statement->bindValue('item_key', $key); |
55
|
|
|
$statement->bindValue('expires_at', date('Y-m-d H:i:s',$expiresAt)); |
56
|
|
|
$statement->execute(); |
57
|
|
|
$connection->close(); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @inheritdoc |
62
|
|
|
*/ |
63
|
|
|
public function remove($key) |
64
|
|
|
{ |
65
|
|
|
$connection = $this->_em->getConnection(); |
66
|
|
|
$statement = $connection->prepare('DELETE FROM nv_request_limit_items WHERE item_key = :item_key'); |
67
|
|
|
$statement->bindValue('item_key', $key); |
68
|
|
|
$statement->execute(); |
69
|
|
|
$connection->close(); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* @return array |
74
|
|
|
*/ |
75
|
|
View Code Duplication |
public function fetchAllItems() |
|
|
|
|
76
|
|
|
{ |
77
|
|
|
$connection = $this->_em->getConnection(); |
78
|
|
|
$statement = $connection->prepare('SELECT * FROM nv_request_limit_items'); |
79
|
|
|
$statement->execute(); |
80
|
|
|
$result = $statement->fetchAll(); |
81
|
|
|
$connection->close(); |
82
|
|
|
|
83
|
|
|
return $result; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* @return int |
88
|
|
|
*/ |
89
|
|
View Code Duplication |
public function getItemsCount() |
|
|
|
|
90
|
|
|
{ |
91
|
|
|
$connection = $this->_em->getConnection(); |
92
|
|
|
$statement = $connection->prepare('SELECT COUNT(*) FROM nv_request_limit_items'); |
93
|
|
|
$statement->execute(); |
94
|
|
|
$result = $statement->fetchColumn(0); |
95
|
|
|
$connection->close(); |
96
|
|
|
|
97
|
|
|
return $result; |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths