Repair.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  8. * @author Georg Ehrke <oc.list@georgehrke.com>
  9. * @author Joas Schilling <coding@schilljs.com>
  10. * @author John Molakvoæ <skjnldsv@protonmail.com>
  11. * @author Julius Härtl <jus@bitgrid.net>
  12. * @author Lukas Reschke <lukas@statuscode.ch>
  13. * @author Michael Weimann <mail@michael-weimann.eu>
  14. * @author Morris Jobke <hey@morrisjobke.de>
  15. * @author Robin Appelman <robin@icewind.nl>
  16. * @author Roeland Jago Douma <roeland@famdouma.nl>
  17. * @author Thomas Müller <thomas.mueller@tmit.eu>
  18. * @author Vincent Petry <vincent@nextcloud.com>
  19. *
  20. * @license AGPL-3.0
  21. *
  22. * This code is free software: you can redistribute it and/or modify
  23. * it under the terms of the GNU Affero General Public License, version 3,
  24. * as published by the Free Software Foundation.
  25. *
  26. * This program is distributed in the hope that it will be useful,
  27. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  29. * GNU Affero General Public License for more details.
  30. *
  31. * You should have received a copy of the GNU Affero General Public License, version 3,
  32. * along with this program. If not, see <http://www.gnu.org/licenses/>
  33. *
  34. */
  35. namespace OC;
  36. use OC\Repair\CleanUpAbandonedApps;
  37. use OCP\AppFramework\QueryException;
  38. use OCP\AppFramework\Utility\ITimeFactory;
  39. use OCP\Collaboration\Resources\IManager;
  40. use OCP\EventDispatcher\IEventDispatcher;
  41. use OCP\Migration\IOutput;
  42. use OCP\Migration\IRepairStep;
  43. use OC\DB\Connection;
  44. use OC\DB\ConnectionAdapter;
  45. use OC\Repair\AddBruteForceCleanupJob;
  46. use OC\Repair\AddCleanupUpdaterBackupsJob;
  47. use OC\Repair\CleanTags;
  48. use OC\Repair\ClearFrontendCaches;
  49. use OC\Repair\ClearGeneratedAvatarCache;
  50. use OC\Repair\Collation;
  51. use OC\Repair\Events\RepairAdvanceEvent;
  52. use OC\Repair\Events\RepairErrorEvent;
  53. use OC\Repair\Events\RepairFinishEvent;
  54. use OC\Repair\Events\RepairInfoEvent;
  55. use OC\Repair\Events\RepairStartEvent;
  56. use OC\Repair\Events\RepairStepEvent;
  57. use OC\Repair\Events\RepairWarningEvent;
  58. use OC\Repair\MoveUpdaterStepFile;
  59. use OC\Repair\NC11\FixMountStorages;
  60. use OC\Repair\NC13\AddLogRotateJob;
  61. use OC\Repair\NC14\AddPreviewBackgroundCleanupJob;
  62. use OC\Repair\NC16\AddClenupLoginFlowV2BackgroundJob;
  63. use OC\Repair\NC16\CleanupCardDAVPhotoCache;
  64. use OC\Repair\NC16\ClearCollectionsAccessCache;
  65. use OC\Repair\NC18\ResetGeneratedAvatarFlag;
  66. use OC\Repair\NC20\EncryptionLegacyCipher;
  67. use OC\Repair\NC20\EncryptionMigration;
  68. use OC\Repair\NC20\ShippedDashboardEnable;
  69. use OC\Repair\NC21\AddCheckForUserCertificatesJob;
  70. use OC\Repair\NC21\ValidatePhoneNumber;
  71. use OC\Repair\NC22\LookupServerSendCheck;
  72. use OC\Repair\NC24\AddTokenCleanupJob;
  73. use OC\Repair\OldGroupMembershipShares;
  74. use OC\Repair\Owncloud\CleanPreviews;
  75. use OC\Repair\Owncloud\DropAccountTermsTable;
  76. use OC\Repair\Owncloud\MigrateOauthTables;
  77. use OC\Repair\Owncloud\MoveAvatars;
  78. use OC\Repair\Owncloud\SaveAccountsTableData;
  79. use OC\Repair\Owncloud\UpdateLanguageCodes;
  80. use OC\Repair\RemoveLinkShares;
  81. use OC\Repair\RepairDavShares;
  82. use OC\Repair\RepairInvalidShares;
  83. use OC\Repair\RepairMimeTypes;
  84. use OC\Repair\SqliteAutoincrement;
  85. use OC\Template\JSCombiner;
  86. use Psr\Log\LoggerInterface;
  87. use Throwable;
  88. class Repair implements IOutput {
  89. /** @var IRepairStep[] */
  90. private array $repairSteps;
  91. private IEventDispatcher $dispatcher;
  92. private string $currentStep;
  93. private LoggerInterface $logger;
  94. /**
  95. * Creates a new repair step runner
  96. *
  97. * @param IRepairStep[] $repairSteps array of RepairStep instances
  98. */
  99. public function __construct(array $repairSteps, IEventDispatcher $dispatcher, LoggerInterface $logger) {
  100. $this->repairSteps = $repairSteps;
  101. $this->dispatcher = $dispatcher;
  102. $this->logger = $logger;
  103. }
  104. /**
  105. * Run a series of repair steps for common problems
  106. */
  107. public function run() {
  108. if (count($this->repairSteps) === 0) {
  109. $this->dispatcher->dispatchTyped(new RepairInfoEvent('No repair steps available'));
  110. return;
  111. }
  112. // run each repair step
  113. foreach ($this->repairSteps as $step) {
  114. $this->currentStep = $step->getName();
  115. $this->dispatcher->dispatchTyped(new RepairStepEvent($this->currentStep));
  116. try {
  117. $step->run($this);
  118. } catch (\Exception $e) {
  119. $this->logger->error("Exception while executing repair step " . $step->getName(), ['exception' => $e]);
  120. $this->dispatcher->dispatchTyped(new RepairErrorEvent($e->getMessage()));
  121. }
  122. }
  123. }
  124. /**
  125. * Add repair step
  126. *
  127. * @param IRepairStep|string $repairStep repair step
  128. * @throws \Exception
  129. */
  130. public function addStep($repairStep) {
  131. if (is_string($repairStep)) {
  132. try {
  133. $s = \OC::$server->get($repairStep);
  134. } catch (QueryException $e) {
  135. if (class_exists($repairStep)) {
  136. try {
  137. // Last resort: hope there are no constructor arguments
  138. $s = new $repairStep();
  139. } catch (Throwable $inner) {
  140. // Well, it was worth a try
  141. throw new \Exception("Repair step '$repairStep' can't be instantiated: " . $e->getMessage(), 0, $e);
  142. }
  143. } else {
  144. throw new \Exception("Repair step '$repairStep' is unknown", 0, $e);
  145. }
  146. }
  147. if ($s instanceof IRepairStep) {
  148. $this->repairSteps[] = $s;
  149. } else {
  150. throw new \Exception("Repair step '$repairStep' is not of type \\OCP\\Migration\\IRepairStep");
  151. }
  152. } else {
  153. $this->repairSteps[] = $repairStep;
  154. }
  155. }
  156. /**
  157. * Returns the default repair steps to be run on the
  158. * command line or after an upgrade.
  159. *
  160. * @return IRepairStep[]
  161. */
  162. public static function getRepairSteps(): array {
  163. return [
  164. new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), \OC::$server->getDatabaseConnection(), false),
  165. new RepairMimeTypes(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection()),
  166. new CleanTags(\OC::$server->getDatabaseConnection(), \OC::$server->getUserManager()),
  167. new RepairInvalidShares(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection()),
  168. new MoveUpdaterStepFile(\OC::$server->getConfig()),
  169. new MoveAvatars(
  170. \OC::$server->getJobList(),
  171. \OC::$server->getConfig()
  172. ),
  173. new CleanPreviews(
  174. \OC::$server->getJobList(),
  175. \OC::$server->getUserManager(),
  176. \OC::$server->getConfig()
  177. ),
  178. new MigrateOauthTables(\OC::$server->get(Connection::class)),
  179. new FixMountStorages(\OC::$server->getDatabaseConnection()),
  180. new UpdateLanguageCodes(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig()),
  181. new AddLogRotateJob(\OC::$server->getJobList()),
  182. new ClearFrontendCaches(\OC::$server->getMemCacheFactory(), \OC::$server->query(JSCombiner::class)),
  183. \OCP\Server::get(ClearGeneratedAvatarCache::class),
  184. new AddPreviewBackgroundCleanupJob(\OC::$server->getJobList()),
  185. new AddCleanupUpdaterBackupsJob(\OC::$server->getJobList()),
  186. new CleanupCardDAVPhotoCache(\OC::$server->getConfig(), \OC::$server->getAppDataDir('dav-photocache'), \OC::$server->get(LoggerInterface::class)),
  187. new AddClenupLoginFlowV2BackgroundJob(\OC::$server->getJobList()),
  188. new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->getNotificationManager(), \OC::$server->query(ITimeFactory::class)),
  189. new ClearCollectionsAccessCache(\OC::$server->getConfig(), \OC::$server->query(IManager::class)),
  190. \OCP\Server::get(ResetGeneratedAvatarFlag::class),
  191. \OCP\Server::get(EncryptionLegacyCipher::class),
  192. \OCP\Server::get(EncryptionMigration::class),
  193. \OCP\Server::get(ShippedDashboardEnable::class),
  194. \OCP\Server::get(AddBruteForceCleanupJob::class),
  195. \OCP\Server::get(AddCheckForUserCertificatesJob::class),
  196. \OCP\Server::get(RepairDavShares::class),
  197. \OCP\Server::get(LookupServerSendCheck::class),
  198. \OCP\Server::get(AddTokenCleanupJob::class),
  199. \OCP\Server::get(CleanUpAbandonedApps::class),
  200. ];
  201. }
  202. /**
  203. * Returns expensive repair steps to be run on the
  204. * command line with a special option.
  205. *
  206. * @return IRepairStep[]
  207. */
  208. public static function getExpensiveRepairSteps() {
  209. return [
  210. new OldGroupMembershipShares(\OC::$server->getDatabaseConnection(), \OC::$server->getGroupManager()),
  211. \OC::$server->get(ValidatePhoneNumber::class),
  212. ];
  213. }
  214. /**
  215. * Returns the repair steps to be run before an
  216. * upgrade.
  217. *
  218. * @return IRepairStep[]
  219. */
  220. public static function getBeforeUpgradeRepairSteps() {
  221. /** @var Connection $connection */
  222. $connection = \OC::$server->get(Connection::class);
  223. /** @var ConnectionAdapter $connectionAdapter */
  224. $connectionAdapter = \OC::$server->get(ConnectionAdapter::class);
  225. $config = \OC::$server->getConfig();
  226. $steps = [
  227. new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), $connectionAdapter, true),
  228. new SqliteAutoincrement($connection),
  229. new SaveAccountsTableData($connectionAdapter, $config),
  230. new DropAccountTermsTable($connectionAdapter),
  231. ];
  232. return $steps;
  233. }
  234. /**
  235. * @param string $message
  236. */
  237. public function info($message) {
  238. // for now just emit as we did in the past
  239. $this->dispatcher->dispatchTyped(new RepairInfoEvent($message));
  240. }
  241. /**
  242. * @param string $message
  243. */
  244. public function warning($message) {
  245. // for now just emit as we did in the past
  246. $this->dispatcher->dispatchTyped(new RepairWarningEvent($message));
  247. }
  248. /**
  249. * @param int $max
  250. */
  251. public function startProgress($max = 0) {
  252. // for now just emit as we did in the past
  253. $this->dispatcher->dispatchTyped(new RepairStartEvent($max, $this->currentStep));
  254. }
  255. /**
  256. * @param int $step number of step to advance
  257. * @param string $description
  258. */
  259. public function advance($step = 1, $description = '') {
  260. // for now just emit as we did in the past
  261. $this->dispatcher->dispatchTyped(new RepairAdvanceEvent($step, $description));
  262. }
  263. /**
  264. * @param int $max
  265. */
  266. public function finishProgress() {
  267. // for now just emit as we did in the past
  268. $this->dispatcher->dispatchTyped(new RepairFinishEvent());
  269. }
  270. }