getTableConfiguration(); $tableHandled = false; foreach ($tableConfigurations as $tableName => $configuration) { if ($this->allTables || $tableName === $this->table) { $this->handleTable($tableName, $configuration); $tableHandled = true; } } if (!$tableHandled) { throw new \RuntimeException(self::class . ' misconfiguration: ' . $this->table . ' does not exist in configuration', 1308354399); } return true; } /** * Execute clean up of a specific table * * @throws \RuntimeException If table configuration is broken * @param string $table The table to handle * @param array $configuration Clean up configuration * @return bool TRUE if cleanup was successful */ protected function handleTable(string $table, array $configuration): bool { $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table); $queryBuilder->delete($table); if (!empty($configuration['expireField'])) { $field = $configuration['expireField']; $dateLimit = $GLOBALS['EXEC_TIME']; // If expire field value is 0, do not delete // Expire field = 0 means no expiration $queryBuilder->where( $queryBuilder->expr()->lte($field, $queryBuilder->createNamedParameter($dateLimit, Connection::PARAM_INT)), $queryBuilder->expr()->gt($field, $queryBuilder->createNamedParameter(0, Connection::PARAM_INT)) ); } elseif (!empty($configuration['dateField'])) { if (!$this->allTables) { $numberOfDays = $this->numberOfDays; if (isset($configuration['expirePeriod']) && $numberOfDays <= 0) { $numberOfDays = (int)$configuration['expirePeriod']; } $deleteTimestamp = strtotime('-' . $numberOfDays . 'days'); } else { if (!isset($configuration['expirePeriod'])) { throw new \RuntimeException(self::class . ' misconfiguration: No expirePeriod defined for table ' . $table, 1308355095); } $deleteTimestamp = strtotime('-' . $configuration['expirePeriod'] . 'days'); } $queryBuilder->where( $queryBuilder->expr()->lt( $configuration['dateField'], $queryBuilder->createNamedParameter($deleteTimestamp, Connection::PARAM_INT) ) ); } else { throw new \RuntimeException(self::class . ' misconfiguration: Either expireField or dateField must be defined for table ' . $table, 1308355268); } try { $queryBuilder->executeStatement(); } catch (DBALException $e) { throw new \RuntimeException(self::class . ' failed for table ' . $this->table . ' with error: ' . $e->getMessage(), 1308255491); } return true; } /** * This method returns the selected table as additional information * * @return string Information to display */ public function getAdditionalInformation() { if ($this->allTables) { $message = $this->getLanguageService()?->sL('LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:label.tableGarbageCollection.additionalInformationAllTables'); } else { $message = sprintf($this->getLanguageService()?->sL('LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:label.tableGarbageCollection.additionalInformationTable'), $this->table); } return $message; } public function getTaskParameters(): array { return [ 'all_tables' => $this->allTables, 'number_of_days' => $this->numberOfDays, 'selected_tables' => $this->table, ]; } public function setTaskParameters(array $parameters): void { $this->allTables = (bool)($parameters['allTables'] ?? $parameters['all_tables'] ?? false); $this->numberOfDays = (int)($parameters['numberOfDays'] ?? $parameters['number_of_days'] ?? 0); $this->table = (string)($parameters['table'] ?? $parameters['selected_tables'] ?? ''); } public function getCleanableTables(array &$config): void { foreach ($this->getTableConfiguration() as $tableName => $tableConfiguration) { $config['items'][] = [ 'label' => $tableName . (($tableConfiguration['expirePeriod'] ?? false) ? ' [expirePeriod: ' . $tableConfiguration['expirePeriod'] . ']' : '') . (($tableConfiguration['dateField'] ?? false) ? ' [dateField: ' . $tableConfiguration['dateField'] . ']' : ''), 'value' => $tableName, ]; } } public function getTableConfiguration(): array { $tableConfiguration = GeneralUtility::makeInstance(TcaSchemaFactory::class)->get('tx_scheduler_task.' . self::class)->getRawConfiguration()['taskOptions']['tables'] ?? []; $tableConfigurationFromConfVars = $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks'][self::class]['options']['tables'] ?? []; if (!empty($tableConfigurationFromConfVars)) { // @deprecated will be removed in v16: this SC_OPTIONS fallback is intentionally // kept beyond v15 because SC_OPTIONS-based scheduler task registration // is still read in TaskService::getAvailableTaskTypes() to keep legacy // (non-native) tasks migratable. Remove together with that support. trigger_error('Usage of $GLOBALS[\'TYPO3_CONF_VARS\'][\'SC_OPTIONS\'][\'scheduler\'][\'tasks\'][' . self::class . '][\'options\'][\'tables\'] to define table options is deprecated and will stop working in TYPO3 v16. Use $tca[\'tx_scheduler_task\'][\'types\'][' . self::class . '][\'taskOptions\'][\'tables\'] instead.', E_USER_DEPRECATED); if (is_array($tableConfigurationFromConfVars)) { $tableConfiguration = array_replace_recursive($tableConfiguration, $tableConfigurationFromConfVars); } } return $tableConfiguration; } }