repairSteps = $repairSteps; } /** * Run a series of repair steps for common problems */ public function run() { if (count($this->repairSteps) === 0) { $this->dispatcher->dispatchTyped(new RepairInfoEvent('No repair steps available')); return; } // run each repair step foreach ($this->repairSteps as $step) { $this->currentStep = $step->getName(); $this->dispatcher->dispatchTyped(new RepairStepEvent($this->currentStep)); try { $step->run($this); } catch (\Exception $e) { $this->logger->error('Exception while executing repair step ' . $step->getName(), ['exception' => $e]); $this->dispatcher->dispatchTyped(new RepairErrorEvent($e->getMessage())); } } $this->repairSteps = []; } /** * Add repair step * * @param IRepairStep|string $repairStep repair step * @throws \Exception */ public function addStep($repairStep) { if (is_string($repairStep)) { try { $s = Server::get($repairStep); } catch (QueryException $e) { if (class_exists($repairStep)) { try { // Last resort: hope there are no constructor arguments $s = new $repairStep(); } catch (Throwable $inner) { // Well, it was worth a try throw new \Exception("Repair step '$repairStep' can't be instantiated: " . $e->getMessage(), 0, $e); } } else { throw new \Exception("Repair step '$repairStep' is unknown", 0, $e); } } if ($s instanceof IRepairStep) { $this->repairSteps[] = $s; } else { throw new \Exception("Repair step '$repairStep' is not of type \\OCP\\Migration\\IRepairStep"); } } else { $this->repairSteps[] = $repairStep; } } /** * Returns the default repair steps to be run on the * command line or after an upgrade. * * @return IRepairStep[] */ public static function getRepairSteps(): array { return [ new Collation(Server::get(IConfig::class), Server::get(LoggerInterface::class), Server::get(IDBConnection::class), false), new CleanTags(Server::get(IDBConnection::class), Server::get(IUserManager::class)), new RepairInvalidShares(Server::get(IConfig::class), Server::get(IDBConnection::class)), new MoveUpdaterStepFile(Server::get(IConfig::class)), new MoveAvatars( Server::get(IJobList::class), Server::get(IConfig::class) ), new CleanPreviews( Server::get(IJobList::class), Server::get(IUserManager::class), Server::get(IConfig::class) ), Server::get(MigratePropertiesTable::class), Server::get(MigrateOauthTables::class), new UpdateLanguageCodes(Server::get(IDBConnection::class), Server::get(IConfig::class)), new AddLogRotateJob(Server::get(IJobList::class)), new ClearFrontendCaches(Server::get(ICacheFactory::class), Server::get(JSCombiner::class)), Server::get(ClearGeneratedAvatarCache::class), new AddPreviewBackgroundCleanupJob(Server::get(IJobList::class)), new AddCleanupUpdaterBackupsJob(Server::get(IJobList::class)), new CleanupCardDAVPhotoCache(Server::get(IConfig::class), Server::get(IAppDataFactory::class), Server::get(LoggerInterface::class)), new AddClenupLoginFlowV2BackgroundJob(Server::get(IJobList::class)), new RemoveLinkShares(Server::get(IDBConnection::class), Server::get(IConfig::class), Server::get(IGroupManager::class), Server::get(INotificationManager::class), Server::get(ITimeFactory::class)), new ClearCollectionsAccessCache(Server::get(IConfig::class), Server::get(IManager::class)), Server::get(ResetGeneratedAvatarFlag::class), Server::get(EncryptionLegacyCipher::class), Server::get(EncryptionMigration::class), Server::get(ShippedDashboardEnable::class), Server::get(AddBruteForceCleanupJob::class), Server::get(AddCheckForUserCertificatesJob::class), Server::get(RepairDavShares::class), Server::get(LookupServerSendCheck::class), Server::get(AddTokenCleanupJob::class), Server::get(CleanUpAbandonedApps::class), Server::get(AddMissingSecretJob::class), Server::get(AddRemoveOldTasksBackgroundJob::class), Server::get(AddMetadataGenerationJob::class), Server::get(RepairLogoDimension::class), Server::get(RemoveLegacyDatadirFile::class), Server::get(AddCleanupDeletedUsersBackgroundJob::class), Server::get(SanitizeAccountProperties::class), Server::get(AddMovePreviewJob::class), Server::get(ConfigKeyMigration::class), ]; } /** * Returns expensive repair steps to be run on the * command line with a special option. * * @return IRepairStep[] */ public static function getExpensiveRepairSteps() { return [ new OldGroupMembershipShares(Server::get(IDBConnection::class), Server::get(IGroupManager::class)), new RemoveBrokenProperties(Server::get(IDBConnection::class)), new RepairMimeTypes( Server::get(IConfig::class), Server::get(IAppConfig::class), Server::get(IDBConnection::class) ), Server::get(DeleteSchedulingObjects::class), Server::get(RemoveObjectProperties::class), Server::get(CleanupShareTarget::class), ]; } /** * Returns the repair steps to be run before an * upgrade. * * @return IRepairStep[] */ public static function getBeforeUpgradeRepairSteps() { /** @var ConnectionAdapter $connectionAdapter */ $connectionAdapter = Server::get(ConnectionAdapter::class); $config = Server::get(IConfig::class); $steps = [ new Collation(Server::get(IConfig::class), Server::get(LoggerInterface::class), $connectionAdapter, true), new SaveAccountsTableData($connectionAdapter, $config), new DropAccountTermsTable($connectionAdapter), ]; return $steps; } public function debug(string $message): void { } /** * @param string $message */ public function info($message) { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairInfoEvent($message)); } /** * @param string $message */ public function warning($message) { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairWarningEvent($message)); } /** * @param int $max */ public function startProgress($max = 0) { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairStartEvent($max, $this->currentStep)); } /** * @param int $step number of step to advance * @param string $description */ public function advance($step = 1, $description = '') { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairAdvanceEvent($step, $description)); } /** * @param int $max */ public function finishProgress() { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairFinishEvent()); } }