101 lines
3.0 KiB
PHP
101 lines
3.0 KiB
PHP
<?php
|
|
namespace WapplerSystems\Meilisearch\Task;
|
|
|
|
/***************************************************************
|
|
* Copyright notice
|
|
*
|
|
* (c) 2017 Timo Hund <timo.hund@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\Domain\Site\SiteRepository;
|
|
use WapplerSystems\Meilisearch\Domain\Site\Site;
|
|
use WapplerSystems\Meilisearch\System\Logging\MeilisearchLogManager;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Scheduler\Task\AbstractTask;
|
|
|
|
/**
|
|
* Abstract scheduler task for meilisearch scheduler tasks, contains the logic to
|
|
* retrieve the site, avoids serialization of site, when scheduler task is saved.
|
|
*/
|
|
abstract class AbstractMeilisearchTask extends AbstractTask {
|
|
|
|
/**
|
|
* The site this task is supposed to initialize the index queue for.
|
|
*
|
|
* @var Site
|
|
*/
|
|
protected $site;
|
|
|
|
/**
|
|
* The rootPageId of the site that should be reIndexed
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $rootPageId;
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getRootPageId()
|
|
{
|
|
return $this->rootPageId;
|
|
}
|
|
|
|
/**
|
|
* @param int $rootPageId
|
|
*/
|
|
public function setRootPageId($rootPageId)
|
|
{
|
|
$this->rootPageId = $rootPageId;
|
|
}
|
|
|
|
/**
|
|
* @return Site
|
|
*/
|
|
public function getSite()
|
|
{
|
|
if (!is_null($this->site)) {
|
|
return $this->site;
|
|
}
|
|
|
|
try {
|
|
/** @var $siteRepository SiteRepository */
|
|
$siteRepository = GeneralUtility::makeInstance(SiteRepository::class);
|
|
$this->site = $siteRepository->getSiteByRootPageId($this->rootPageId);
|
|
} catch (\InvalidArgumentException $e) {
|
|
$logger = GeneralUtility::makeInstance(MeilisearchLogManager::class, /** @scrutinizer ignore-type */ __CLASS__);
|
|
$logger->log(MeilisearchLogManager::ERROR, 'Scheduler task tried to get invalid site');
|
|
}
|
|
|
|
return $this->site;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function __sleep()
|
|
{
|
|
$properties = get_object_vars($this);
|
|
// avoid serialization of the site and logger object
|
|
unset($properties['site'], $properties['logger']);
|
|
return array_keys($properties);
|
|
}
|
|
}
|