meilisearch/Classes/Report/AccessFilterPluginInstalledStatus.php
2021-04-17 00:26:33 +02:00

190 lines
6.5 KiB
PHP

<?php
namespace WapplerSystems\Meilisearch\Report;
/***************************************************************
* Copyright notice
*
* (c) 2010-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!
***************************************************************/
use WapplerSystems\Meilisearch\ConnectionManager;
use WapplerSystems\Meilisearch\System\Solr\Service\SolrAdminService;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Reports\Status;
/**
* Provides a status report about whether the Access Filter Query Parser Plugin
* is installed on the Solr server.
*
* @author Ingo Renner <ingo@typo3.org>
*/
class AccessFilterPluginInstalledStatus extends AbstractSolrStatus
{
/**
* Solr Access Filter plugin version.
*
* Must be updated when changing the plugin.
*
* @var string
*/
const RECOMMENDED_PLUGIN_VERSION = '3.0.0';
/**
* The plugin's Java class name.
*
* @var string
*/
const PLUGIN_CLASS_NAME = 'org.typo3.solr.search.AccessFilterQParserPlugin';
/**
* Compiles a collection of solrconfig.xml checks against each configured
* Solr server. Only adds an entry if the Access Filter Query Parser Plugin
* is not configured.
*
*/
public function getStatus()
{
$reports = [];
$solrConnections = GeneralUtility::makeInstance(ConnectionManager::class)->getAllConnections();
foreach ($solrConnections as $solrConnection) {
$adminService = $solrConnection->getAdminService();
if ($adminService->ping()) {
$installationStatus = $this->checkPluginInstallationStatus($adminService);
$versionStatus = $this->checkPluginVersion($adminService);
if (!is_null($installationStatus)) {
$reports[] = $installationStatus;
}
if (!is_null($versionStatus)) {
$reports[] = $versionStatus;
}
}
}
return $reports;
}
/**
* Checks whether the Solr plugin is installed.
*
* @param SolrAdminService $adminService
* @return null|\TYPO3\CMS\Reports\Status
*/
protected function checkPluginInstallationStatus(SolrAdminService $adminService)
{
if ($this->isPluginInstalled($adminService)) {
return null;
}
$variables = ['solr' => $adminService, 'recommendedVersion' => self::RECOMMENDED_PLUGIN_VERSION];
$report = $this->getRenderedReport('AccessFilterPluginInstalledStatusNotInstalled.html', $variables);
return GeneralUtility::makeInstance(
Status::class,
/** @scrutinizer ignore-type */ 'Access Filter Plugin',
/** @scrutinizer ignore-type */ 'Not Installed',
/** @scrutinizer ignore-type */ $report,
/** @scrutinizer ignore-type */ Status::WARNING
);
}
/**
* Checks whether the Solr plugin version is up to date.
*
* @param SolrAdminService $adminService
* @return null|\TYPO3\CMS\Reports\Status
*/
protected function checkPluginVersion(SolrAdminService $adminService)
{
if (!($this->isPluginInstalled($adminService) && $this->isPluginOutdated($adminService))) {
return null;
}
$version = $this->getInstalledPluginVersion($adminService);
$variables = ['solr' => $adminService, 'installedVersion' => $version, 'recommendedVersion' => self::RECOMMENDED_PLUGIN_VERSION];
$report = $this->getRenderedReport('AccessFilterPluginInstalledStatusIsOutDated.html', $variables);
return GeneralUtility::makeInstance(
Status::class,
/** @scrutinizer ignore-type */ 'Access Filter Plugin',
/** @scrutinizer ignore-type */ 'Outdated',
/** @scrutinizer ignore-type */ $report,
/** @scrutinizer ignore-type */ Status::WARNING
);
}
/**
* Checks whether the Access Filter Query Parser Plugin is installed for
* the given Solr server instance.
*
* @param SolrAdminService $adminService
* @return bool True if the plugin is installed, FALSE otherwise.
*/
protected function isPluginInstalled(SolrAdminService $adminService)
{
$accessFilterQueryParserPluginInstalled = false;
$pluginsInformation = $adminService->getPluginsInformation();
if (isset($pluginsInformation->plugins->OTHER->{self::PLUGIN_CLASS_NAME})) {
$accessFilterQueryParserPluginInstalled = true;
}
return $accessFilterQueryParserPluginInstalled;
}
/**
* Checks whether the installed plugin is current.
*
* @param SolrAdminService $adminService
* @return bool True if the plugin is outdated, FALSE if it meets the current version recommendation.
*/
protected function isPluginOutdated(SolrAdminService $adminService)
{
$pluginVersion = $this->getInstalledPluginVersion($adminService);
$pluginVersionOutdated = version_compare($pluginVersion, self::RECOMMENDED_PLUGIN_VERSION, '<');
return $pluginVersionOutdated;
}
/**
* Gets the version of the installed plugin.
*
* @param SolrAdminService $adminService
* @return string The installed plugin's version number.
*/
public function getInstalledPluginVersion(SolrAdminService $adminService)
{
$pluginsInformation = $adminService->getPluginsInformation();
$description = $pluginsInformation->plugins->OTHER->{self::PLUGIN_CLASS_NAME}->description;
$matches = [];
preg_match_all('/.*\(Version: (?<version>[^\)]*)\)/ums', $description, $matches);
$rawVersion = $matches['version'][0] ?? '';
$explodedRawVersion = explode('-', $rawVersion);
$version = $explodedRawVersion[0];
return $version;
}
}