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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Security\Model\ResourceModel\PasswordResetRequestEvent;
use Magento\Security\Model\Config\Source\ResetMethod;
use Magento\Security\Model\ConfigInterface;
/**
* Factory class for @see \Magento\Security\Model\ResourceModel\PasswordResetRequestEvent\Collection
*
* @api
* @since 100.1.0
*/
class CollectionFactory
{
/**
* Object Manager instance
*
* @var \Magento\Framework\ObjectManagerInterface
* @since 100.1.0
*/
protected $objectManager = null;
/**
* Instance name to create
*
* @var string
* @since 100.1.0
*/
protected $instanceName = null;
/**
* @var ConfigInterface
* @since 100.1.0
*/
protected $securityConfig;
/**
* CollectionFactory constructor.
*
* @param \Magento\Framework\ObjectManagerInterface $objectManager
* @param ConfigInterface $securityConfig
* @param string $instanceName
*/
public function __construct(
\Magento\Framework\ObjectManagerInterface $objectManager,
ConfigInterface $securityConfig,
$instanceName = Collection::class
) {
$this->objectManager = $objectManager;
$this->securityConfig = $securityConfig;
$this->instanceName = $instanceName;
}
/**
* Create class instance with specified parameters
*
* @param int $securityEventType
* @param string $accountReference
* @param string $longIp
* @return Collection
* @since 100.1.0
*/
public function create(
$securityEventType = null,
$accountReference = null,
$longIp = null
) {
/** @var Collection $collection */
$collection = $this->objectManager->create($this->instanceName);
if (null !== $securityEventType) {
$collection->filterByRequestType($securityEventType);
switch ($this->securityConfig->getPasswordResetProtectionType()) {
case ResetMethod::OPTION_BY_EMAIL:
$collection->filterByAccountReference($accountReference);
break;
case ResetMethod::OPTION_BY_IP:
$collection->filterByIp($longIp);
break;
case ResetMethod::OPTION_BY_IP_AND_EMAIL:
$collection->filterByIpOrAccountReference($longIp, $accountReference);
break;
default:
}
}
return $collection;
}
}