89 lines
2.7 KiB
PHP
89 lines
2.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace TYPO3\CMS\Scheduler\Task;
|
|
|
|
use TYPO3\CMS\Core\Resource\Index\Indexer;
|
|
use TYPO3\CMS\Core\Resource\ResourceStorage;
|
|
use TYPO3\CMS\Core\Resource\StorageRepository;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
/**
|
|
* This task which indexes files in storage
|
|
* @internal This class is a specific scheduler task implementation is not considered part of the Public TYPO3 API.
|
|
*/
|
|
class FileStorageExtractionTask extends AbstractTask
|
|
{
|
|
/**
|
|
* Storage Uid
|
|
*
|
|
* @var int
|
|
*/
|
|
public $storageUid = -1;
|
|
|
|
/**
|
|
* FileCount
|
|
*
|
|
* @var int
|
|
*/
|
|
public $maxFileCount = 100;
|
|
|
|
/**
|
|
* Function execute from the Scheduler
|
|
*
|
|
* @return bool TRUE on successful execution, FALSE on error
|
|
*/
|
|
public function execute()
|
|
{
|
|
$success = false;
|
|
if ((int)$this->storageUid > 0) {
|
|
$storage = GeneralUtility::makeInstance(StorageRepository::class)->findByUid($this->storageUid);
|
|
if ($storage === null) {
|
|
throw new \RuntimeException(self::class . ' misconfiguration: "Storage to index" must be an existing storage.', 1615020909);
|
|
}
|
|
$currentEvaluatePermissionsValue = $storage->getEvaluatePermissions();
|
|
$storage->setEvaluatePermissions(false);
|
|
$indexer = $this->getIndexer($storage);
|
|
try {
|
|
$indexer->runMetaDataExtraction((int)$this->maxFileCount);
|
|
$success = true;
|
|
} catch (\Exception $e) {
|
|
$success = false;
|
|
$this->logException($e);
|
|
}
|
|
$storage->setEvaluatePermissions($currentEvaluatePermissionsValue);
|
|
}
|
|
return $success;
|
|
}
|
|
|
|
protected function getIndexer(ResourceStorage $storage): Indexer
|
|
{
|
|
return GeneralUtility::makeInstance(Indexer::class, $storage);
|
|
}
|
|
|
|
public function getTaskParameters(): array
|
|
{
|
|
return [
|
|
'file_storage' => $this->storageUid,
|
|
'max_file_count' => $this->maxFileCount,
|
|
];
|
|
}
|
|
public function setTaskParameters(array $parameters): void
|
|
{
|
|
$this->storageUid = (int)($parameters['storageUid'] ?? $parameters['file_storage'] ?? -1);
|
|
$this->maxFileCount = (int)($parameters['maxFileCount'] ?? $parameters['max_file_count'] ?? 100);
|
|
}
|
|
}
|