TYPO3 CMS  TYPO3_8-7
OrphanRecordsCommand.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
28 
32 class OrphanRecordsCommand extends Command
33 {
34 
38  public function configure()
39  {
40  $this
41  ->setDescription('Find and delete records that have lost their connection with the page tree.')
42  ->setHelp('Assumption: All actively used records on the website from TCA configured tables are located in the page tree exclusively.
43 
44 All records managed by TYPO3 via the TCA array configuration has to belong to a page in the page tree, either directly or indirectly as a version of another record.
45 VERY TIME, CPU and MEMORY intensive operation since the full page tree is looked up!
46 
47 Automatic Repair of Errors:
48 - Silently deleting the orphaned records. In theory they should not be used anywhere in the system, but there could be references. See below for more details on this matter.
49 
50 Manual repair suggestions:
51 - Possibly re-connect orphaned records to page tree by setting their "pid" field to a valid page id. A lookup in the sys_refindex table can reveal if there are references to a orphaned record. If there are such references (from records that are not themselves orphans) you might consider to re-connect the record to the page tree, otherwise it should be safe to delete it.
52 
53  If you want to get more detailed information, use the --verbose option.')
54  ->addOption(
55  'dry-run',
56  null,
57  InputOption::VALUE_NONE,
58  'If this option is set, the records will not actually be deleted, but just the output which records would be deleted are shown'
59  );
60  }
61 
69  protected function execute(InputInterface $input, OutputInterface $output)
70  {
71  // Make sure the _cli_ user is loaded
72  Bootstrap::getInstance()->initializeBackendAuthentication();
73 
74  $io = new SymfonyStyle($input, $output);
75  $io->title($this->getDescription());
76 
77  if ($io->isVerbose()) {
78  $io->section('Searching the database now for orphaned records.');
79  }
80 
81  // type unsafe comparison and explicit boolean setting on purpose
82  $dryRun = $input->hasOption('dry-run') && $input->getOption('dry-run') != false ? true : false;
83 
84  // find all records that should be deleted
85  $allRecords = $this->findAllConnectedRecordsInPage(0, 10000);
86 
87  // Find orphans
88  $orphans = [];
89  foreach (array_keys($GLOBALS['TCA']) as $tableName) {
90  $idList = [0];
91  if (is_array($allRecords[$tableName]) && !empty($allRecords[$tableName])) {
92  $idList = $allRecords[$tableName];
93  }
94  // Select all records that are NOT connected
95  $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
96  ->getQueryBuilderForTable($tableName);
97 
98  $result = $queryBuilder
99  ->select('uid')
100  ->from($tableName)
101  ->where(
102  $queryBuilder->expr()->notIn(
103  'uid',
104  // do not use named parameter here as the list can get too long
105  array_map('intval', $idList)
106  )
107  )
108  ->orderBy('uid')
109  ->execute();
110 
111  $totalOrphans = 0;
112  if ($result->rowCount()) {
113  $orphans[$tableName] = [];
114  while ($orphanRecord = $result->fetch()) {
115  $orphans[$tableName][$orphanRecord['uid']] = $orphanRecord['uid'];
116  }
117  $totalOrphans += count($orphans[$tableName]);
118 
119  if ($io->isVeryVerbose() && count($orphans[$tableName])) {
120  $io->writeln('Found ' . count($orphans[$tableName]) . ' orphan records in table "' . $tableName . '".');
121  }
122  }
123  if (!$io->isQuiet() && $totalOrphans) {
124  $io->note('Found ' . $totalOrphans . ' records in ' . count($orphans) . ' database tables.');
125  }
126  }
127 
128  if (count($orphans)) {
129  $io->section('Deletion process starting now.' . ($dryRun ? ' (Not deleting now, just a dry run)' : ''));
130 
131  // Actually permanently delete them
132  $this->deleteRecords($orphans, $dryRun, $io);
133 
134  $io->success('All done!');
135  } else {
136  $io->success('No orphan records found.');
137  }
138  }
139 
151  protected function findAllConnectedRecordsInPage(int $pageId, int $depth, array $allRecords = []): array
152  {
153  // Register page
154  if ($pageId > 0) {
155  $allRecords['pages'][$pageId] = $pageId;
156  }
157  // Traverse tables of records that belongs to page
158  foreach (array_keys($GLOBALS['TCA']) as $tableName) {
159  if ($tableName !== 'pages') {
160  // Select all records belonging to page:
161  $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
162  ->getQueryBuilderForTable($tableName);
163 
164  $queryBuilder->getRestrictions()->removeAll();
165 
166  $result = $queryBuilder
167  ->select('uid')
168  ->from($tableName)
169  ->where(
170  $queryBuilder->expr()->eq(
171  'pid',
172  $queryBuilder->createNamedParameter($pageId, \PDO::PARAM_INT)
173  )
174  )
175  ->execute();
176 
177  while ($rowSub = $result->fetch()) {
178  $allRecords[$tableName][$rowSub['uid']] = $rowSub['uid'];
179  // Add any versions of those records:
180  $versions = BackendUtility::selectVersionsOfRecord($tableName, $rowSub['uid'], 'uid,t3ver_wsid,t3ver_count', null, true);
181  if (is_array($versions)) {
182  foreach ($versions as $verRec) {
183  if (!$verRec['_CURRENT_VERSION']) {
184  $allRecords[$tableName][$verRec['uid']] = $verRec['uid'];
185  }
186  }
187  }
188  }
189  }
190  }
191  // Find subpages to root ID and traverse (only when rootID is not a version or is a branch-version):
192  if ($depth > 0) {
193  $depth--;
194  $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
195  ->getQueryBuilderForTable('pages');
196 
197  $queryBuilder->getRestrictions()->removeAll();
198 
199  $result = $queryBuilder
200  ->select('uid')
201  ->from('pages')
202  ->where(
203  $queryBuilder->expr()->eq(
204  'pid',
205  $queryBuilder->createNamedParameter($pageId, \PDO::PARAM_INT)
206  )
207  )
208  ->orderBy('sorting')
209  ->execute();
210 
211  while ($row = $result->fetch()) {
212  $allRecords = $this->findAllConnectedRecordsInPage($row['uid'], $depth, $allRecords);
213  }
214  }
215 
216  // Add any versions of pages
217  if ($pageId > 0) {
218  $versions = BackendUtility::selectVersionsOfRecord('pages', $pageId, 'uid,t3ver_oid,t3ver_wsid,t3ver_count', null, true);
219  if (is_array($versions)) {
220  foreach ($versions as $verRec) {
221  if (!$verRec['_CURRENT_VERSION']) {
222  $allRecords = $this->findAllConnectedRecordsInPage($verRec['uid'], $depth, $allRecords);
223  }
224  }
225  }
226  }
227  return $allRecords;
228  }
229 
237  protected function deleteRecords(array $orphanedRecords, bool $dryRun, SymfonyStyle $io)
238  {
239  // Putting "pages" table in the bottom
240  if (isset($orphanedRecords['pages'])) {
241  $_pages = $orphanedRecords['pages'];
242  unset($orphanedRecords['pages']);
243  // To delete sub pages first assuming they are accumulated from top of page tree.
244  $orphanedRecords['pages'] = array_reverse($_pages);
245  }
246 
247  // set up the data handler instance
248  $dataHandler = GeneralUtility::makeInstance(DataHandler::class);
249  $dataHandler->start([], []);
250 
251  // Loop through all tables and their records
252  foreach ($orphanedRecords as $table => $list) {
253  if ($io->isVerbose()) {
254  $io->writeln('Flushing ' . count($list) . ' orphaned records from table "' . $table . '"');
255  }
256  foreach ($list as $uid) {
257  if ($io->isVeryVerbose()) {
258  $io->writeln('Flushing record "' . $table . ':' . $uid . '"');
259  }
260  if (!$dryRun) {
261  // Notice, we are deleting pages with no regard to subpages/subrecords - we do this since they
262  // should also be included in the set of deleted pages of course (no un-deleted record can exist
263  // under a deleted page...)
264  $dataHandler->deleteRecord($table, $uid, true, true);
265  // Return errors if any:
266  if (!empty($dataHandler->errorLog)) {
267  $errorMessage = array_merge(['DataHandler reported an error'], $dataHandler->errorLog);
268  $io->error($errorMessage);
269  } elseif (!$io->isQuiet()) {
270  $io->writeln('Permanently deleted orphaned record "' . $table . ':' . $uid . '".');
271  }
272  }
273  }
274  }
275  }
276 }
deleteRecords(array $orphanedRecords, bool $dryRun, SymfonyStyle $io)
findAllConnectedRecordsInPage(int $pageId, int $depth, array $allRecords=[])
static makeInstance($className,... $constructorArguments)
static selectVersionsOfRecord( $table, $uid, $fields=' *', $workspace=0, $includeDeletedRecords=false, $row=null)
execute(InputInterface $input, OutputInterface $output)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']