*/ private array $repairSteps = []; private string $currentStep; public function __construct( private readonly IEventDispatcher $dispatcher, private readonly LoggerInterface $logger, ) { } /** @param list $repairSteps */ public function setRepairSteps(array $repairSteps): void { $this->repairSteps = $repairSteps; } /** * Run a series of repair steps for common problems */ public function run(): void { 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|class-string $repairStep repair step * @throws \Exception */ public function addStep(IRepairStep|string $repairStep): void { if (is_string($repairStep)) { try { $s = Server::get($repairStep); } catch (ContainerExceptionInterface $e) { if (class_exists($repairStep)) { try { // Last resort: hope there are no constructor arguments $s = new $repairStep(); } catch (Throwable) { // 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 list */ public static function getRepairSteps(): array { return [ new Collation(Server::get(IConfig::class), Server::get(LoggerInterface::class), Server::get(IDBConnection::class), false), Server::get(CleanTags::class), Server::get(RepairInvalidShares::class), Server::get(MoveUpdaterStepFile::class), Server::get(MoveAvatars::class), Server::get(CleanPreviews::class), Server::get(MigratePropertiesTable::class), Server::get(MigrateOauthTables::class), Server::get(UpdateLanguageCodes::class), Server::get(AddLogRotateJob::class), Server::get(ClearFrontendCaches::class), Server::get(ClearGeneratedAvatarCache::class), Server::get(AddPreviewBackgroundCleanupJob::class), Server::get(AddCleanupUpdaterBackupsJob::class), Server::get(CleanupCardDAVPhotoCache::class), Server::get(AddClenupLoginFlowV2BackgroundJob::class), Server::get(RemoveLinkShares::class), Server::get(ClearCollectionsAccessCache::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 list */ public static function getExpensiveRepairSteps(): array { return [ Server::get(OldGroupMembershipShares::class), Server::get(RemoveBrokenProperties::class), Server::get(RepairMimeTypes::class), Server::get(DeleteSchedulingObjects::class), Server::get(RemoveObjectProperties::class), Server::get(CleanupShareTarget::class), ]; } /** * Returns the repair steps to be run before an * upgrade. * * @return list */ public static function getBeforeUpgradeRepairSteps(): array { return [ new Collation(Server::get(IConfig::class), Server::get(LoggerInterface::class), Server::get(IDBConnection::class), true), Server::get(SaveAccountsTableData::class), Server::get(DropAccountTermsTable::class), ]; } public function debug(string $message): void { } /** * @param string $message */ public function info($message): void { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairInfoEvent($message)); } /** * @param string $message */ public function warning($message): void { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairWarningEvent($message)); } /** * @param int $max */ public function startProgress($max = 0): void { // 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 = ''): void { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairAdvanceEvent($step, $description)); } public function finishProgress(): void { // for now just emit as we did in the past $this->dispatcher->dispatchTyped(new RepairFinishEvent()); } }