Completed
Push — master ( ee9c7d...9819c1 )
by Rafael
14:45
created

DefaultResultParser::canParse()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\Result\Parser;
4
5
/***************************************************************
6
 *  Copyright notice
7
 *
8
 *  (c) 2015-2017 Timo Hund <[email protected]>
9
 *  All rights reserved
10
 *
11
 *  This script is part of the TYPO3 project. The TYPO3 project is
12
 *  free software; you can redistribute it and/or modify
13
 *  it under the terms of the GNU General Public License as published by
14
 *  the Free Software Foundation; either version 2 of the License, or
15
 *  (at your option) any later version.
16
 *
17
 *  The GNU General Public License can be found at
18
 *  http://www.gnu.org/copyleft/gpl.html.
19
 *
20
 *  This script is distributed in the hope that it will be useful,
21
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 *  GNU General Public License for more details.
24
 *
25
 *  This copyright notice MUST APPEAR in all copies of the script!
26
 ***************************************************************/
27
28
use ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\Result\SearchResultCollection;
29
use ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\SearchResultSet;
30
use TYPO3\CMS\Core\Utility\GeneralUtility;
31
32
/**
33
 * The DefaultResultParser is able to parse normal(ungroupd results)
34
 *
35
 * @package ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\Result\Parser
36
 */
37
class DefaultResultParser extends AbstractResultParser {
38
39
    /**
40
     * @param SearchResultSet $resultSet
41
     * @param bool $useRawDocuments
42
     * @return SearchResultCollection|array|object
43
     */
44
    public function parse(SearchResultSet $resultSet, bool $useRawDocuments = true)
45
    {
46
        $searchResults = GeneralUtility::makeInstance(SearchResultCollection::class);
47
        $parsedData = $resultSet->getResponse()->getParsedData();
48
        if (!is_array($parsedData->response->docs)) {
49
            return $searchResults;
50
        }
51
52
        $documents = $parsedData->response->docs;
53
        if (!$useRawDocuments) {
54
            $documents = $this->documentEscapeService->applyHtmlSpecialCharsOnAllFields($documents);
55
        }
56
57
        foreach ($documents as $searchResult) {
58
            $searchResultObject = $this->searchResultBuilder->fromApacheSolrDocument($searchResult);
59
            $searchResults[] = $searchResultObject;
60
        }
61
62
        return $searchResults;
63
    }
64
65
    /**
66
     * @param SearchResultSet $resultSet
67
     * @return bool
68
     */
69
    public function canParse(SearchResultSet $resultSet)
70
    {
71
        // This parsers should not be used when grouping is enabled
72
        if ($this->typoScriptConfiguration->getSearchGrouping())
73
        {
74
            return false;
75
        }
76
77
        return true;
78
    }
79
}