Passed
Pull Request — master (#216)
by Simon
08:31 queued 06:08
created

buildAndFacetFilterQuery()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 4

Importance

Changes 0
Metric Value
cc 4
eloc 10
c 0
b 0
f 0
nc 6
nop 0
dl 0
loc 16
ccs 11
cts 11
cp 1
crap 4
rs 9.9332
1
<?php
2
/**
3
 * Trait QueryComponentFacetTrait|Firesphere\SolrSearch\Traits\QueryComponentFacetTrait Trait to set Faceting on fields
4
 * for the {@link \Firesphere\SolrSearch\Factories\QueryComponentFactory}
5
 *
6
 * @package Firesphere\SolrSearch\Traits
7
 * @author Simon `Firesphere` Erkelens; Marco `Sheepy` Hermo
8
 * @copyright Copyright (c) 2018 - now() Firesphere & Sheepy
9
 */
10
11
namespace Firesphere\SolrSearch\Traits;
12
13
use Firesphere\SolrSearch\Indexes\BaseIndex;
14
use Firesphere\SolrSearch\Queries\BaseQuery;
15
use Minimalcode\Search\Criteria;
16
use Solarium\Component\Facet\Field;
17
use Solarium\QueryType\Select\Query\Query;
18
19
/**
20
 * Trait QueryComponentFacetTrait deals with the facets.
21
 *
22
 * Faceting for any given query or index.
23
 *
24
 * @package Firesphere\SolrSearch\Traits
25
 */
26
trait QueryComponentFacetTrait
27
{
28
    /**
29
     * @var BaseIndex Index to query
30
     */
31
    protected $index;
32
    /**
33
     * @var BaseQuery Query to use
34
     */
35
    protected $query;
36
    /**
37
     * @var Query Solarium query
38
     */
39
    protected $clientQuery;
40
41
    /**
42
     * Add facets from the index, to make sure Solr returns
43
     * the expected facets and their respective count on the
44
     * correct fields
45
     */
46 9
    protected function buildQueryFacets(): void
47
    {
48 9
        $facets = $this->clientQuery->getFacetSet();
49
        // Facets should be set from the index configuration
50 9
        foreach ($this->index->getFacetFields() as $config) {
51 2
            $shortClass = getShortFieldName($config['BaseClass']);
52 2
            $field = $shortClass . '_' . str_replace('.', '_', $config['Field']);
53
            /** @var Field $facet */
54 2
            $facet = $facets->createFacetField('facet-' . $config['Title']);
55 2
            $facet->setField($field);
56
        }
57
        // Count however, comes from the query
58 9
        $facets->setMinCount($this->query->getFacetsMinCount());
59 9
    }
60
61
    /**
62
     * Add AND facet filters based on the current request
63
     */
64 9
    protected function buildAndFacetFilterQuery()
65
    {
66 9
        $filterFacets = $this->query->getAndFacetFilter();
67
        /** @var null|Criteria $criteria */
68 9
        $criteria = null;
69 9
        foreach ($this->index->getFacetFields() as $config) {
70 2
            if (isset($filterFacets[$config['Title']])) {
71
                // For the API generator, this needs to be old style list();
72 1
                list($filter, $field) = $this->getFieldFacets($filterFacets, $config);
73 2
                $this->createFacetCriteria($criteria, $field, $filter);
74
            }
75
        }
76 9
        if ($criteria) {
77 1
            $this->clientQuery
78 1
                ->createFilterQuery('andFacets')
79 1
                ->setQuery($criteria->getQuery());
80
        }
81 9
    }
82
83
    /**
84
     * Add OR facet filters based on the current request
85
     */
86 9
    protected function buildOrFacetFilterQuery()
87
    {
88 9
        $filterFacets = $this->query->getOrFacetFilter();
89 9
        $i = 0;
90
        /** @var null|Criteria $criteria */
91 9
        foreach ($this->index->getFacetFields() as $config) {
92 2
            $criteria = null;
93 2
            if (isset($filterFacets[$config['Title']])) {
94
                // For the API generator, this needs to be old style list();
95 1
                list($filter, $field) = $this->getFieldFacets($filterFacets, $config);
96 1
                $this->createFacetCriteria($criteria, $field, $filter);
97 1
                $this->clientQuery
98 1
                    ->createFilterQuery('orFacet-' . $i++)
99 2
                    ->setQuery($criteria->getQuery());
100
            }
101
        }
102 9
    }
103
104
    /**
105
     * Get the field and it's respected values to filter on to generate Criteria from
106
     *
107
     * @param array $filterFacets
108
     * @param array $config
109
     * @return array
110
     */
111 1
    protected function getFieldFacets(array $filterFacets, $config): array
112
    {
113 1
        $filter = $filterFacets[$config['Title']];
114 1
        $filter = is_array($filter) ? $filter : [$filter];
115
        // Fields are "short named" for convenience
116 1
        $shortClass = getShortFieldName($config['BaseClass']);
117 1
        $field = $shortClass . '_' . str_replace('.', '_', $config['Field']);
118
119 1
        return [$filter, $field];
120
    }
121
122
    /**
123
     * Combine all facets as AND facet filters for the results
124
     *
125
     * @param null|Criteria $criteria
126
     * @param string $field
127
     * @param array $filter
128
     */
129 1
    protected function createFacetCriteria(&$criteria, string $field, array $filter)
130
    {
131
        // If the criteria is empty, create a new one with a value from the filter array
132 1
        if (!$criteria) {
133 1
            $criteria = Criteria::where($field)->is(array_pop($filter));
134
        }
135
        // Add the other items in the filter array, as an AND
136 1
        foreach ($filter as $filterValue) {
137 1
            $criteria->andWhere($field)->is($filterValue);
138
        }
139 1
    }
140
}
141