mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 21:36:11 +01:00
Merge pull request #106 from Codappix/hotfix/index-media-field-for-pages
Hotfix: Index media field for pages
This commit is contained in:
commit
9f28711a94
6 changed files with 122 additions and 9 deletions
|
@ -71,6 +71,7 @@ class PagesIndexer extends TcaIndexer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$record['media'] = $this->fetchMediaForPage($record['uid']);
|
||||||
$content = $this->fetchContentForPage($record['uid']);
|
$content = $this->fetchContentForPage($record['uid']);
|
||||||
if ($content !== []) {
|
if ($content !== []) {
|
||||||
$record['content'] = $content['content'];
|
$record['content'] = $content['content'];
|
||||||
|
@ -122,13 +123,29 @@ class PagesIndexer extends TcaIndexer
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function getContentElementImages($uidOfContentElement)
|
protected function getContentElementImages($uidOfContentElement)
|
||||||
|
{
|
||||||
|
return $this->fetchSysFileReferenceUids($uidOfContentElement, 'tt_content', 'image');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $uid
|
||||||
|
* @return []
|
||||||
|
*/
|
||||||
|
protected function fetchMediaForPage($uid)
|
||||||
|
{
|
||||||
|
return $this->fetchSysFileReferenceUids($uid, 'pages', 'media');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $uid
|
||||||
|
* @param string $tablename
|
||||||
|
* @param string $fieldname
|
||||||
|
* @return []
|
||||||
|
*/
|
||||||
|
protected function fetchSysFileReferenceUids($uid, $tablename, $fieldname)
|
||||||
{
|
{
|
||||||
$imageRelationUids = [];
|
$imageRelationUids = [];
|
||||||
$imageRelations = $this->fileRepository->findByRelation(
|
$imageRelations = $this->fileRepository->findByRelation($tablename, $fieldname, $uid);
|
||||||
'tt_content',
|
|
||||||
'image',
|
|
||||||
$uidOfContentElement
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach ($imageRelations as $relation) {
|
foreach ($imageRelations as $relation) {
|
||||||
$imageRelationUids[] = $relation->getUid();
|
$imageRelationUids[] = $relation->getUid();
|
||||||
|
|
|
@ -205,4 +205,33 @@ class IndexTcaTableTest extends AbstractFunctionalTestCase
|
||||||
'Record was indexed with resolved category relation, but should not have any.'
|
'Record was indexed with resolved category relation, but should not have any.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function indexPagesMedia()
|
||||||
|
{
|
||||||
|
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(ObjectManager::class)
|
||||||
|
->get(IndexerFactory::class)
|
||||||
|
->getIndexer('pages')
|
||||||
|
->indexAllDocuments()
|
||||||
|
;
|
||||||
|
|
||||||
|
$response = $this->client->request('typo3content/_search?q=*:*');
|
||||||
|
|
||||||
|
$this->assertTrue($response->isOK(), 'Elastica did not answer with ok code.');
|
||||||
|
$this->assertSame($response->getData()['hits']['total'], 2, 'Not exactly 2 documents were indexed.');
|
||||||
|
$this->assertArraySubset(
|
||||||
|
[
|
||||||
|
'_source' => [
|
||||||
|
'media' => [
|
||||||
|
10, 1
|
||||||
|
]
|
||||||
|
]
|
||||||
|
],
|
||||||
|
$response->getData()['hits']['hits'][0],
|
||||||
|
false,
|
||||||
|
'Record was not indexed.'
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,4 +99,71 @@
|
||||||
<colPos>0</colPos>
|
<colPos>0</colPos>
|
||||||
<filelink_sorting>0</filelink_sorting>
|
<filelink_sorting>0</filelink_sorting>
|
||||||
</tt_content>
|
</tt_content>
|
||||||
|
|
||||||
|
<pages>
|
||||||
|
<uid>2</uid>
|
||||||
|
<pid>1</pid>
|
||||||
|
<title>Example page with </title>
|
||||||
|
<description>Used as abstract as no abstract is defined.</description>
|
||||||
|
<media>2</media>
|
||||||
|
</pages>
|
||||||
|
|
||||||
|
<sys_file_reference>
|
||||||
|
<uid>1</uid>
|
||||||
|
<pid>1</pid>
|
||||||
|
<uid_local>1</uid_local>
|
||||||
|
<uid_foreign>2</uid_foreign>
|
||||||
|
<tablenames>pages</tablenames>
|
||||||
|
<fieldname>media</fieldname>
|
||||||
|
<sorting_foreign>2</sorting_foreign>
|
||||||
|
<table_local>sys_file</table_local>
|
||||||
|
|
||||||
|
<l10n_diffsource></l10n_diffsource>
|
||||||
|
</sys_file_reference>
|
||||||
|
|
||||||
|
<sys_file_reference>
|
||||||
|
<uid>10</uid>
|
||||||
|
<pid>1</pid>
|
||||||
|
<uid_local>2</uid_local>
|
||||||
|
<uid_foreign>2</uid_foreign>
|
||||||
|
<tablenames>pages</tablenames>
|
||||||
|
<fieldname>media</fieldname>
|
||||||
|
<sorting_foreign>1</sorting_foreign>
|
||||||
|
<table_local>sys_file</table_local>
|
||||||
|
|
||||||
|
<l10n_diffsource></l10n_diffsource>
|
||||||
|
</sys_file_reference>
|
||||||
|
|
||||||
|
<sys_file>
|
||||||
|
<uid>1</uid>
|
||||||
|
<pid>0</pid>
|
||||||
|
<storage>1</storage>
|
||||||
|
<type>2</type>
|
||||||
|
<identifier>full/file/path.png</identifier>
|
||||||
|
<identifier_hash>94dd1f9645114cf1344438ac7188db972768f59f</identifier_hash>
|
||||||
|
<folder_hash>67887283a03f465f1004d1d43a157ee1f1c59be5</folder_hash>
|
||||||
|
<extension>png</extension>
|
||||||
|
<mime_type>image/png</mime_type>
|
||||||
|
<name>path2.png</name>
|
||||||
|
<sha1>c1dd34eb34d651ee6ca6ac52dea595db75d8e9d2</sha1>
|
||||||
|
<size>3044</size>
|
||||||
|
<creation_date>1432306303</creation_date>
|
||||||
|
<modification_date>1432306303</modification_date>
|
||||||
|
</sys_file>
|
||||||
|
<sys_file>
|
||||||
|
<uid>2</uid>
|
||||||
|
<pid>0</pid>
|
||||||
|
<storage>1</storage>
|
||||||
|
<type>2</type>
|
||||||
|
<identifier>full/file/path2.png</identifier>
|
||||||
|
<identifier_hash>94dd1f9645114cf1344438ac7188db972768f59f</identifier_hash>
|
||||||
|
<folder_hash>67887283a03f465f1004d1d43a157ee1f1c59be5</folder_hash>
|
||||||
|
<extension>png</extension>
|
||||||
|
<mime_type>image/png</mime_type>
|
||||||
|
<name>path2.png</name>
|
||||||
|
<sha1>c1dd34eb34d651ee6ca6ac52dea595db75d8e9d2</sha1>
|
||||||
|
<size>3044</size>
|
||||||
|
<creation_date>1432306303</creation_date>
|
||||||
|
<modification_date>1432306303</modification_date>
|
||||||
|
</sys_file>
|
||||||
</dataset>
|
</dataset>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Codappix\SearchCore\Tests\Indexing;
|
namespace Codappix\SearchCore\Tests\Functional\Indexing;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||||
|
@ -48,7 +48,7 @@ class PagesIndexerTest extends AbstractFunctionalTestCase
|
||||||
->with(
|
->with(
|
||||||
$this->stringContains($tableName),
|
$this->stringContains($tableName),
|
||||||
$this->callback(function ($documents) {
|
$this->callback(function ($documents) {
|
||||||
return count($documents) === 1
|
return count($documents) === 2
|
||||||
&& isset($documents[0]['content']) && $documents[0]['content'] ===
|
&& isset($documents[0]['content']) && $documents[0]['content'] ===
|
||||||
'this is the content of header content element that should get indexed Some text in paragraph'
|
'this is the content of header content element that should get indexed Some text in paragraph'
|
||||||
&& isset($documents[0]['search_abstract']) && $documents[0]['search_abstract'] ===
|
&& isset($documents[0]['search_abstract']) && $documents[0]['search_abstract'] ===
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Codappix\SearchCore\Tests\Indexing\TcaIndexer;
|
namespace Codappix\SearchCore\Tests\Indexing\Functional\TcaIndexer;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Codappix\SearchCore\Tests\Indexing;
|
namespace Codappix\SearchCore\Tests\Functional\Indexing;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||||
|
|
Loading…
Reference in a new issue