165 lines
6.1 KiB
PHP
165 lines
6.1 KiB
PHP
|
<?php
|
||
|
namespace WapplerSystems\Meilisearch\IndexQueue\FrontendHelper;
|
||
|
|
||
|
/***************************************************************
|
||
|
* Copyright notice
|
||
|
*
|
||
|
* (c) 2011-2015 Ingo Renner <ingo@typo3.org>
|
||
|
* All rights reserved
|
||
|
*
|
||
|
* This script is part of the TYPO3 project. The TYPO3 project is
|
||
|
* free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* The GNU General Public License can be found at
|
||
|
* http://www.gnu.org/copyleft/gpl.html.
|
||
|
*
|
||
|
* This script is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* This copyright notice MUST APPEAR in all copies of the script!
|
||
|
***************************************************************/
|
||
|
|
||
|
// TODO use/extend WapplerSystems\Meilisearch\IndexQueue\AbstractIndexer
|
||
|
use WapplerSystems\Meilisearch\IndexQueue\AbstractIndexer;
|
||
|
use WapplerSystems\Meilisearch\IndexQueue\InvalidFieldNameException;
|
||
|
use WapplerSystems\Meilisearch\SubstitutePageIndexer;
|
||
|
use WapplerSystems\Meilisearch\System\Configuration\TypoScriptConfiguration;
|
||
|
use WapplerSystems\Meilisearch\System\Solr\Document\Document;
|
||
|
use WapplerSystems\Meilisearch\Util;
|
||
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||
|
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
|
||
|
|
||
|
/**
|
||
|
* Indexer to add / overwrite page document fields as defined in
|
||
|
* plugin.tx_meilisearch.index.queue.pages.fields.
|
||
|
*
|
||
|
* @author Ingo Renner <ingo@typo3.org>
|
||
|
*/
|
||
|
class PageFieldMappingIndexer implements SubstitutePageIndexer
|
||
|
{
|
||
|
/**
|
||
|
* @var \WapplerSystems\Meilisearch\System\Configuration\TypoScriptConfiguration
|
||
|
*/
|
||
|
protected $configuration;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $pageIndexingConfigurationName = 'pages';
|
||
|
|
||
|
/**
|
||
|
* @param TypoScriptConfiguration $configuration
|
||
|
*/
|
||
|
public function __construct(TypoScriptConfiguration $configuration = null)
|
||
|
{
|
||
|
$this->configuration = $configuration == null ? Util::getSolrConfiguration() : $configuration;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $pageIndexingConfigurationName
|
||
|
*/
|
||
|
public function setPageIndexingConfigurationName($pageIndexingConfigurationName)
|
||
|
{
|
||
|
$this->pageIndexingConfigurationName = $pageIndexingConfigurationName;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns a substitute document for the currently being indexed page.
|
||
|
*
|
||
|
* Uses the original document and adds fields as defined in
|
||
|
* plugin.tx_meilisearch.index.queue.pages.fields.
|
||
|
*
|
||
|
* @param Document $pageDocument The original page document.
|
||
|
* @return Document A Apache Solr Document object that replace the default page document
|
||
|
*/
|
||
|
public function getPageDocument(Document $pageDocument)
|
||
|
{
|
||
|
$substitutePageDocument = clone $pageDocument;
|
||
|
|
||
|
|
||
|
$mappedFields = $this->getMappedFields($pageDocument);
|
||
|
foreach ($mappedFields as $fieldName => $fieldValue) {
|
||
|
if (isset($substitutePageDocument->{$fieldName})) {
|
||
|
// reset = overwrite, especially important to not make fields
|
||
|
// multi valued where they may not accept multiple values
|
||
|
unset($substitutePageDocument->{$fieldName});
|
||
|
}
|
||
|
|
||
|
// add new field / overwrite field if it was set before
|
||
|
if ($fieldValue !== '' && $fieldValue !== null) {
|
||
|
$substitutePageDocument->setField($fieldName, $fieldValue);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $substitutePageDocument;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Gets the mapped fields as an array mapping field names to values.
|
||
|
*
|
||
|
* @throws InvalidFieldNameException
|
||
|
* @param Document $pageDocument The original page document.
|
||
|
* @return array An array mapping field names to their values.
|
||
|
*/
|
||
|
protected function getMappedFields(Document $pageDocument)
|
||
|
{
|
||
|
$fields = [];
|
||
|
|
||
|
$mappedFieldNames = $this->configuration->getIndexQueueMappedFieldsByConfigurationName($this->pageIndexingConfigurationName);
|
||
|
|
||
|
foreach ($mappedFieldNames as $mappedFieldName) {
|
||
|
if (!AbstractIndexer::isAllowedToOverrideField($mappedFieldName)) {
|
||
|
throw new InvalidFieldNameException(
|
||
|
'Must not overwrite field "type".',
|
||
|
1435441863
|
||
|
);
|
||
|
}
|
||
|
$fields[$mappedFieldName] = $this->resolveFieldValue($mappedFieldName, $pageDocument);
|
||
|
}
|
||
|
|
||
|
return $fields;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Resolves a field mapping to its value depending on its configuration.
|
||
|
*
|
||
|
* Allows to put the page record through cObj processing if wanted / needed.
|
||
|
* Otherwise the plain page record field value is used.
|
||
|
*
|
||
|
* @param string $solrFieldName The Solr field name to resolve the value from the item's record
|
||
|
* @return string The resolved string value to be indexed
|
||
|
*/
|
||
|
protected function resolveFieldValue($solrFieldName, Document $pageDocument)
|
||
|
{
|
||
|
$pageRecord = $GLOBALS['TSFE']->page;
|
||
|
|
||
|
$pageIndexingConfiguration = $this->configuration->getIndexQueueFieldsConfigurationByConfigurationName($this->pageIndexingConfigurationName);
|
||
|
|
||
|
if (isset($pageIndexingConfiguration[$solrFieldName . '.'])) {
|
||
|
$pageRecord = AbstractIndexer::addVirtualContentFieldToRecord($pageDocument, $pageRecord);
|
||
|
|
||
|
// configuration found => need to resolve a cObj
|
||
|
$contentObject = GeneralUtility::makeInstance(ContentObjectRenderer::class);
|
||
|
$contentObject->start($pageRecord, 'pages');
|
||
|
|
||
|
$fieldValue = $contentObject->cObjGetSingle(
|
||
|
$pageIndexingConfiguration[$solrFieldName],
|
||
|
$pageIndexingConfiguration[$solrFieldName . '.']
|
||
|
);
|
||
|
|
||
|
if (AbstractIndexer::isSerializedValue($pageIndexingConfiguration, $solrFieldName)) {
|
||
|
$fieldValue = unserialize($fieldValue);
|
||
|
}
|
||
|
} else {
|
||
|
$fieldValue = $pageRecord[$pageIndexingConfiguration[$solrFieldName]];
|
||
|
}
|
||
|
|
||
|
return $fieldValue;
|
||
|
}
|
||
|
}
|