ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
BuildArtifactsCommand.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2016 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3 
4 namespace ILIAS\Setup\CLI;
5 
13 
18 {
19  protected static $defaultName = "build-artifacts";
20 
21  public function configure()
22  {
23  $this
24  ->setDescription("Build static artifacts from source")
25  ->addOption("yes", "y", InputOption::VALUE_NONE, "Confirm every message of the setup.");
26  }
27 
28  protected function printIntroMessage(IOWrapper $io)
29  {
30  $io->title("Building static artifacts");
31  }
32 
33  protected function printOutroMessage(IOWrapper $io)
34  {
35  $io->success("All static artifacts are build!");
36  }
37 
38  protected function readAgentConfig(Agent $agent, InputInterface $input) : ?Config
39  {
40  return null;
41  }
42 
43  protected function buildEnvironment(Agent $agent, ?Config $config, IOWrapper $io)
44  {
45  return new ArrayEnvironment([]);
46  }
47 
48  protected function getObjective(Agent $agent, ?Config $config) : Objective
49  {
50  return $agent->getBuildArtifactObjective();
51  }
52 }
Wrapper around symfonies input and output facilities to provide just the functionality required for t...
Definition: IOWrapper.php:16
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:14
buildEnvironment(Agent $agent, ?Config $config, IOWrapper $io)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getBuildArtifactObjective()
Get the goal the agent wants to achieve to build artifacts.
Command base class.
Definition: BaseCommand.php:23
A agent is some component that performs part of the setup process.
Definition: Agent.php:13
readAgentConfig(Agent $agent, InputInterface $input)
getObjective(Agent $agent, ?Config $config)
title(string $title)
Definition: IOWrapper.php:86
success(string $text)
Definition: IOWrapper.php:91
A configuration for the setup.
Definition: Config.php:10