TYPO3  7.6
LiveSearchController.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Backend\Controller;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
22 
27 {
31  protected $searchResults = array();
32 
41  {
42  $queryString = $request->getQueryParams()['q'];
43  $liveSearch = GeneralUtility::makeInstance(LiveSearch::class);
44  $queryParser = GeneralUtility::makeInstance(QueryParser::class);
45 
46  $searchResults = array();
47  $liveSearch->setQueryString($queryString);
48  // Jump & edit - find page and retrieve an edit link (this is only for pages
49  if ($queryParser->isValidPageJump($queryString)) {
50  $searchResults[] = array_merge($liveSearch->findPage($queryString), ['type' => 'pageJump']);
51  $commandQuery = $queryParser->getCommandForPageJump($queryString);
52  if ($commandQuery) {
53  $queryString = $commandQuery;
54  }
55  }
56  // Search through the database and find records who match to the given search string
57  $resultArray = $liveSearch->find($queryString);
58  foreach ($resultArray as $resultFromTable) {
59  foreach ($resultFromTable as $item) {
60  $searchResults[] = $item;
61  }
62  }
63  $response->getBody()->write(json_encode($searchResults));
64  return $response;
65  }
66 }