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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Captcha\Model\ResourceModel;
/**
* Log Attempts resource
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Log extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Type Remote Address
*/
const TYPE_REMOTE_ADDRESS = 1;
/**
* Type User Login Name
*/
const TYPE_LOGIN = 2;
/**
* Core Date
*
* @var \Magento\Framework\Stdlib\DateTime\DateTime
*/
protected $_coreDate;
/**
* @var \Magento\Framework\HTTP\PhpEnvironment\RemoteAddress
*/
protected $_remoteAddress;
/**
* @param \Magento\Framework\Model\ResourceModel\Db\Context $context
* @param \Magento\Framework\Stdlib\DateTime\DateTime $coreDate
* @param \Magento\Framework\HTTP\PhpEnvironment\RemoteAddress $remoteAddress
* @param string $connectionName
*/
public function __construct(
\Magento\Framework\Model\ResourceModel\Db\Context $context,
\Magento\Framework\Stdlib\DateTime\DateTime $coreDate,
\Magento\Framework\HTTP\PhpEnvironment\RemoteAddress $remoteAddress,
$connectionName = null
) {
$this->_coreDate = $coreDate;
$this->_remoteAddress = $remoteAddress;
parent::__construct($context, $connectionName);
}
/**
* Define main table
*
* @return void
*/
protected function _construct()
{
$this->_setMainTable('captcha_log');
}
/**
* Save or Update count Attempts
*
* @param string|null $login
* @return $this
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function logAttempt($login)
{
if ($login != null) {
$this->getConnection()->insertOnDuplicate(
$this->getMainTable(),
[
'type' => self::TYPE_LOGIN,
'value' => $login,
'count' => 1,
'updated_at' => $this->_coreDate->gmtDate()
],
['count' => new \Zend\Db\Sql\Expression('count+1'), 'updated_at']
);
}
$ip = $this->_remoteAddress->getRemoteAddress();
if ($ip != null) {
$this->getConnection()->insertOnDuplicate(
$this->getMainTable(),
[
'type' => self::TYPE_REMOTE_ADDRESS,
'value' => $ip,
'count' => 1,
'updated_at' => $this->_coreDate->gmtDate()
],
['count' => new \Zend\Db\Sql\Expression('count+1'), 'updated_at']
);
}
return $this;
}
/**
* Delete User attempts by login
*
* @param string $login
* @return $this
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function deleteUserAttempts($login)
{
if ($login != null) {
$this->getConnection()->delete(
$this->getMainTable(),
['type = ?' => self::TYPE_LOGIN, 'value = ?' => $login]
);
}
$ip = $this->_remoteAddress->getRemoteAddress();
if ($ip != null) {
$this->getConnection()->delete(
$this->getMainTable(),
['type = ?' => self::TYPE_REMOTE_ADDRESS, 'value = ?' => $ip]
);
}
return $this;
}
/**
* Get count attempts by ip
*
* @return null|int
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function countAttemptsByRemoteAddress()
{
$ip = $this->_remoteAddress->getRemoteAddress();
if (!$ip) {
return 0;
}
$connection = $this->getConnection();
$select = $connection->select()->from(
$this->getMainTable(),
'count'
)->where(
'type = ?',
self::TYPE_REMOTE_ADDRESS
)->where(
'value = ?',
$ip
);
return $connection->fetchOne($select);
}
/**
* Get count attempts by user login
*
* @param string $login
* @return null|int
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function countAttemptsByUserLogin($login)
{
if (!$login) {
return 0;
}
$connection = $this->getConnection();
$select = $connection->select()->from(
$this->getMainTable(),
'count'
)->where(
'type = ?',
self::TYPE_LOGIN
)->where(
'value = ?',
$login
);
return $connection->fetchOne($select);
}
/**
* Delete attempts with expired in update_at time
*
* @return void
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function deleteOldAttempts()
{
$this->getConnection()->delete(
$this->getMainTable(),
['updated_at < ?' => $this->_coreDate->gmtDate(null, time() - 60 * 30)]
);
}
}