28 $this->steps =
$steps ?? $migration->getDefaultAmountOfStepsPerRun();
37 return hash(
"sha256", self::class .
'' . get_class($this->migration));
45 return $this->migration->getLabel();
62 return $this->migration->getPreconditions($environment);
74 $key = (new \ReflectionClass($this->migration))->getShortName();
75 $confirmation = $io->confirmExplicit(
76 "Do you really want to run the following migration? Make sure you have a backup\n" .
77 "of all your data. You will run this migration on your own risk.\n\n" .
78 "Please type '$key' to confirm and start.",
82 $io->error(
"Migration '$key' aborted.");
85 $io->inform(
"Preparing Migration: This may take quite a long time (e.g. all files are collected.");
86 $this->migration->prepare($environment);
87 $io->inform(
"Preparing Migration: done.");
90 $remaining = $this->migration->getRemainingAmountOfSteps();
94 $io->inform(
"Trigger {$steps} step(s) in {$this->getLabel()}");
96 $io->startProgress(
$steps);
99 $io->advanceProgress();
100 $this->migration->step($environment);
104 $remaining = $this->migration->getRemainingAmountOfSteps();
105 if ($remaining == 0) {
106 $io->inform(
"Migration '{$key}' has no remaining steps left.");
109 $io->inform(
"{$remaining} step(s) remaining. Run again to proceed.");
120 $this->migration->prepare($environment);
122 return $this->migration->getRemainingAmountOfSteps() > 0;
isNotable()
Defaults to 'true'.
isApplicable(Setup\Environment $environment)
An objective is a desired state of the system that is supposed to be created by the setup...
A migration is a potentially long lasting operation that can be broken into discrete steps...
__construct(Setup\Migration $migration, int $steps=null)
MigrationObjective constructor.
getHash()
Uses hashed Path.
getPreconditions(Setup\Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
achieve(Environment $environment)
Objectives can be achieved.
An environment holds resources to be used in the setup process.
const RESOURCE_ADMIN_INTERACTION