244 lines
8.1 KiB
PHP
244 lines
8.1 KiB
PHP
<?php
|
|
namespace WapplerSystems\Meilisearch\Controller\Backend\Search;
|
|
|
|
/***************************************************************
|
|
* Copyright notice
|
|
*
|
|
* (c) 2010-2017 dkd Internet Service GmbH <meilisearch-support@dkd.de>
|
|
* 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!
|
|
***************************************************************/
|
|
|
|
use WapplerSystems\Meilisearch\Api;
|
|
use WapplerSystems\Meilisearch\ConnectionManager;
|
|
use WapplerSystems\Meilisearch\Domain\Search\Statistics\StatisticsRepository;
|
|
use WapplerSystems\Meilisearch\Domain\Search\MeilisearchDocument\Repository;
|
|
use TYPO3\CMS\Backend\Template\ModuleTemplate;
|
|
use TYPO3\CMS\Core\Messaging\FlashMessage;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Extbase\Mvc\View\ViewInterface;
|
|
|
|
/**
|
|
* Info Module
|
|
*/
|
|
class InfoModuleController extends AbstractModuleController
|
|
{
|
|
/**
|
|
* @var ConnectionManager
|
|
*/
|
|
protected $meilisearchConnectionManager;
|
|
|
|
/**
|
|
* @var Repository
|
|
*/
|
|
protected $apacheMeilisearchDocumentRepository;
|
|
|
|
/**
|
|
* Initializes the controller before invoking an action method.
|
|
*/
|
|
protected function initializeAction()
|
|
{
|
|
parent::initializeAction();
|
|
$this->meilisearchConnectionManager = GeneralUtility::makeInstance(ConnectionManager::class);
|
|
//$this->apacheMeilisearchDocumentRepository = GeneralUtility::makeInstance(Repository::class);
|
|
|
|
}
|
|
/**
|
|
* Set up the doc header properly here
|
|
*
|
|
* @param ViewInterface $view
|
|
* @return void
|
|
*/
|
|
protected function initializeView(ViewInterface $view)
|
|
{
|
|
parent::initializeView($view);
|
|
|
|
/* @var ModuleTemplate $module */ // holds the state of chosen tab
|
|
$module = GeneralUtility::makeInstance(ModuleTemplate::class);
|
|
$coreOptimizationTabs = $module->getDynamicTabMenu([], 'coreOptimization');
|
|
$this->view->assign('tabs', $coreOptimizationTabs);
|
|
}
|
|
|
|
/**
|
|
* Index action, shows an overview of the state of the Meilisearch index
|
|
*
|
|
* @return void
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
if ($this->selectedSite === null) {
|
|
$this->view->assign('can_not_proceed', true);
|
|
return;
|
|
}
|
|
|
|
$this->collectConnectionInfos();
|
|
$this->collectStatistics();
|
|
//$this->collectIndexFieldsInfo();
|
|
//$this->collectIndexInspectorInfo();
|
|
}
|
|
|
|
/**
|
|
* @param string $type
|
|
* @param int $uid
|
|
* @param int $pageId
|
|
* @param int $languageUid
|
|
* @return void
|
|
*/
|
|
public function documentsDetailsAction(string $type, int $uid, int $pageId, int $languageUid)
|
|
{
|
|
$documents = $this->apacheMeilisearchDocumentRepository->findByTypeAndPidAndUidAndLanguageId($type, $uid, $pageId, $languageUid);
|
|
$this->view->assign('documents', $documents);
|
|
}
|
|
|
|
/**
|
|
* Checks whether the configured Meilisearch server can be reached and provides a
|
|
* flash message according to the result of the check.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function collectConnectionInfos()
|
|
{
|
|
$connectedHosts = [];
|
|
$missingHosts = [];
|
|
|
|
$connection = $this->meilisearchConnectionManager->getConnectionBySite($this->selectedSite);
|
|
|
|
if (empty($connection)) {
|
|
$this->view->assign('can_not_proceed', true);
|
|
return;
|
|
}
|
|
|
|
$service = $connection->getService();
|
|
|
|
if ($service->ping()) {
|
|
$connectedHosts[] = $service;
|
|
} else {
|
|
$missingHosts[] = $service;
|
|
}
|
|
|
|
|
|
$this->view->assignMultiple([
|
|
'site' => $this->selectedSite,
|
|
'apiKey' => Api::getApiKey(),
|
|
'connectedHosts' => $connectedHosts,
|
|
'missingHosts' => $missingHosts,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Index action, shows an overview of the state of the Meilisearch index
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function collectStatistics()
|
|
{
|
|
// TODO make time frame user adjustable, for now it's last 30 days
|
|
|
|
$siteRootPageId = $this->selectedSite->getRootPageId();
|
|
/* @var StatisticsRepository $statisticsRepository */
|
|
$statisticsRepository = GeneralUtility::makeInstance(StatisticsRepository::class);
|
|
|
|
// @TODO: Do we want Typoscript constants to restrict the results?
|
|
$this->view->assign(
|
|
'top_search_phrases',
|
|
$statisticsRepository->getTopKeyWordsWithHits($siteRootPageId, 30, 5)
|
|
);
|
|
$this->view->assign(
|
|
'top_search_phrases_without_hits',
|
|
$statisticsRepository->getTopKeyWordsWithoutHits($siteRootPageId, 30, 5)
|
|
);
|
|
$this->view->assign(
|
|
'search_phrases_statistics',
|
|
$statisticsRepository->getSearchStatistics($siteRootPageId, 30, 100)
|
|
);
|
|
|
|
$labels = [];
|
|
$data = [];
|
|
$chartData = $statisticsRepository->getQueriesOverTime($siteRootPageId, 30, 86400);
|
|
foreach ($chartData as $bucket) {
|
|
$labels[] = strftime('%x', $bucket['timestamp']);
|
|
$data[] = (int)$bucket['numQueries'];
|
|
}
|
|
|
|
$this->view->assign('queriesChartLabels', json_encode($labels));
|
|
$this->view->assign('queriesChartData', json_encode($data));
|
|
}
|
|
|
|
/**
|
|
* Gets Luke meta data for the currently selected core and provides a list
|
|
* of that data.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function collectIndexFieldsInfo()
|
|
{
|
|
$indexFieldsInfoByCorePaths = [];
|
|
|
|
$meilisearchCoreConnections = $this->meilisearchConnectionManager->getConnectionBySite($this->selectedSite);
|
|
foreach ($meilisearchCoreConnections as $i => $meilisearchCoreConnection) {
|
|
$coreAdmin = $meilisearchCoreConnection->getAdminService();
|
|
|
|
if ($coreAdmin->ping()) {
|
|
|
|
|
|
$indexFieldsInfo['noError'] = 'OK';
|
|
$indexFieldsInfo['coreMetrics'] = 'dedede';
|
|
} else {
|
|
$indexFieldsInfo['noError'] = null;
|
|
|
|
$this->addFlashMessage(
|
|
'',
|
|
'Unable to contact Meilisearch server: ' . $this->selectedSite->getLabel(),
|
|
FlashMessage::ERROR
|
|
);
|
|
}
|
|
$indexFieldsInfoByCorePaths[$i] = $indexFieldsInfo;
|
|
}
|
|
$this->view->assign('indexFieldsInfoByCorePaths', $indexFieldsInfoByCorePaths);
|
|
}
|
|
|
|
/**
|
|
* Retrieves the information for the index inspector.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function collectIndexInspectorInfo()
|
|
{
|
|
$meilisearchCoreConnections = $this->meilisearchConnectionManager->getConnectionBySite($this->selectedSite);
|
|
$documentsByCoreAndType = [];
|
|
foreach ($meilisearchCoreConnections as $languageId => $meilisearchCoreConnection) {
|
|
$coreAdmin = $meilisearchCoreConnection->getAdminService();
|
|
$documents = $this->apacheMeilisearchDocumentRepository->findByPageIdAndByLanguageId($this->selectedPageUID, $languageId);
|
|
|
|
$documentsByType = [];
|
|
foreach ($documents as $document) {
|
|
$documentsByType[$document['type']][] = $document;
|
|
}
|
|
|
|
$documentsByCoreAndType[$languageId]['core'] = $coreAdmin;
|
|
$documentsByCoreAndType[$languageId]['documents'] = $documentsByType;
|
|
}
|
|
|
|
$this->view->assignMultiple([
|
|
'pageId' => $this->selectedPageUID,
|
|
'indexInspectorDocumentsByLanguageAndType' => $documentsByCoreAndType
|
|
]);
|
|
}
|
|
|
|
}
|