-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathGrid.php
79 lines (72 loc) · 2.19 KB
/
Grid.php
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Indexer\SaveHandler;
use Magento\Framework\Search\Request\Dimension;
class Grid extends IndexerHandler
{
/**
* @var string[]
*/
protected $dataTypes = ['searchable', 'filterable', 'virtual'];
/**
* {@inheritdoc}
*/
public function saveIndex($dimensions, \Traversable $documents)
{
foreach ($this->batch->getItems($documents, $this->batchSize) as $batchDocuments) {
$this->insertDocumentsForFilterable($batchDocuments, $dimensions);
}
}
/**
* @param array $documents
* @param Dimension[] $dimensions
* @return void
*/
protected function insertDocumentsForFilterable(array $documents, array $dimensions)
{
$onDuplicate = [];
foreach ($this->fields as $field) {
if (in_array($field['type'], $this->dataTypes)) {
$onDuplicate[] = $field['name'];
}
}
$this->connection->insertOnDuplicate(
$this->getTableName($this->dataTypes[1], $dimensions),
$this->prepareFilterableFields($documents),
$onDuplicate
);
}
/**
* @param array $documents
* @return array
*/
protected function prepareFilterableFields(array $documents)
{
$insertDocuments = [];
foreach ($documents as $entityId => $document) {
$documentFlat = ['entity_id' => $entityId];
foreach ($this->fields as $field) {
if (in_array($field['type'], $this->dataTypes)) {
$documentFlat[$field['name']] = $document[$field['name']];
}
}
$insertDocuments[] = $documentFlat;
}
return $insertDocuments;
}
/**
* {@inheritdoc}
*/
public function deleteIndex($dimensions, \Traversable $ids)
{
foreach ($this->batch->getItems($ids, $this->batchSize) as $batchIds) {
$this->connection->delete(
$this->getTableName('filterable', $dimensions),
['entity_id IN(?)' => $batchIds]
);
}
}
}