3 declare(strict_types=1);
58 $this->agent_finder = $agent_finder;
59 $this->config_reader = $config_reader;
65 $this->setDescription(
"Creates a fresh ILIAS installation based on the config");
66 $this->addArgument(
"config", InputArgument::OPTIONAL,
"Configuration file for the installation");
67 $this->addOption(
"config", null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
"Define fields in the configuration file that should be overwritten, e.g. \"a.b.c=foo\"", []);
68 $this->addOption(
"yes",
"y", InputOption::VALUE_NONE,
"Confirm every message of the installation.");
72 protected function execute(InputInterface $input, OutputInterface $output):
int 76 if (!defined(
"ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES")) {
77 define(
"ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES",
true);
80 if ($input->hasOption(
'plugin') && $input->getOption(
'plugin') !=
"") {
87 $this->achieveObjective($objective, $environment, $io);
88 $io->success(
"Installation complete. Thanks and have fun!");
99 $io->printLicenseMessage();
100 $io->title(
"Install ILIAS");
107 "Install and Update ILIAS",
109 $agent->getInstallObjective(
$config),
110 $agent->getUpdateObjective(
$config)
112 if ($this->preconditions !== []) {
115 ...$this->preconditions
127 $common_config =
$config->getConfig(
"common");
128 $environment = $environment->withResource(
130 $common_config->getClientId()
133 return [$objective, $environment, $io];
139 $io->printLicenseMessage();
140 $io->title(
"Install ILIAS Plugin");
147 "Install and Update ILIAS Plugin",
149 $agent->getInstallObjective(
$config),
150 $agent->getUpdateObjective(
$config)
152 if ($this->preconditions !== []) {
155 ...$this->preconditions
167 return [$objective, $environment, $io];
A objective collection is a objective that is achieved once all subobjectives are achieved...
Read a json-formatted config from a file and overwrite some fields.
Wrapper around symfonies input and output facilities to provide just the functionality required for t...
prepareILIASInstallation(InputInterface $input, OutputInterface $output)
execute(InputInterface $input, OutputInterface $output)
A wrapper around an objective that adds some preconditions.
__construct(AgentFinder $agent_finder, ConfigReader $config_reader, array $preconditions)
addAgentConfigsToEnvironment(Agent $agent, Config $config, Environment $environment)
getRelevantAgent(InputInterface $input)
preparePluginInstallation(InputInterface $input, OutputInterface $output)
readAgentConfig(Agent $agent, InputInterface $input, string $use_config_field=null)
array $preconditions
var Objective[]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
configureCommandForPlugins()
__construct(Container $dic, ilPlugin $plugin)
const RESOURCE_ADMIN_INTERACTION
trait HasAgent
Add this to an Command that has an agent.
getRequestedConfirmation()
Signals that a necessary confirmation from the admin is missing.
trait HasConfigReader
Add this to an Command that has an config reader.