forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollection.php
More file actions
108 lines (101 loc) · 3.38 KB
/
Collection.php
File metadata and controls
108 lines (101 loc) · 3.38 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
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Model\ResourceModel\Online\Grid;
use Magento\Customer\Model\Visitor;
use Magento\Framework\Data\Collection\Db\FetchStrategyInterface as FetchStrategy;
use Magento\Framework\Data\Collection\EntityFactoryInterface as EntityFactory;
use Magento\Framework\Event\ManagerInterface as EventManager;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Stdlib\DateTime\DateTime;
use Magento\Framework\View\Element\UiComponent\DataProvider\SearchResult;
use Psr\Log\LoggerInterface as Logger;
/**
* Flat customer online grid collection
*/
class Collection extends SearchResult
{
/**
* Value of seconds in one minute
*/
public const SECONDS_IN_MINUTE = 60;
/**
* @var DateTime
*/
protected DateTime $date;
/**
* @var Visitor
*/
protected Visitor $visitorModel;
/**
* @param EntityFactory $entityFactory
* @param Logger $logger
* @param FetchStrategy $fetchStrategy
* @param EventManager $eventManager
* @param string $mainTable
* @param string $resourceModel
* @param Visitor $visitorModel
* @param DateTime $date
* @throws LocalizedException
*/
public function __construct(
EntityFactory $entityFactory,
Logger $logger,
FetchStrategy $fetchStrategy,
EventManager $eventManager,
$mainTable,
$resourceModel,
Visitor $visitorModel,
DateTime $date
) {
$this->date = $date;
$this->visitorModel = $visitorModel;
parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $mainTable, $resourceModel);
}
/**
* Init collection select
*
* @return $this
*/
protected function _initSelect(): Collection
{
parent::_initSelect();
$connection = $this->getConnection();
$lastDate = $this->date->gmtTimestamp() - $this->visitorModel->getOnlineInterval() * self::SECONDS_IN_MINUTE;
$this->getSelect()->joinLeft(
['customer' => $this->getTable('customer_entity')],
'customer.entity_id = main_table.customer_id',
['email', 'firstname', 'lastname']
)->where(
'main_table.last_visit_at >= ?',
$connection->formatDate($lastDate)
);
$this->addFilterToMap('customer_id', 'main_table.customer_id');
$expression = $connection->getCheckSql(
'main_table.customer_id IS NOT NULL AND main_table.customer_id != 0',
$connection->quote(Visitor::VISITOR_TYPE_CUSTOMER),
$connection->quote(Visitor::VISITOR_TYPE_VISITOR)
);
$this->getSelect()->columns(['visitor_type' => $expression]);
return $this;
}
/**
* Add field filter to collection
*
* @param string|array $field
* @param string|int|array|null $condition
* @return Collection
*/
public function addFieldToFilter($field, $condition = null): Collection
{
if ($field == 'visitor_type') {
$field = 'customer_id';
if (is_array($condition) && isset($condition['eq'])) {
$condition = $condition['eq'] == Visitor::VISITOR_TYPE_CUSTOMER ? ['gt' => 0] : ['null' => true];
}
}
return parent::addFieldToFilter($field, $condition);
}
}