ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DeliveryMethodObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\FileDelivery\Setup;
22 
27 
32 {
33  public const SETTINGS = 'delivery_method';
34  public const XSENDFILE = 'xsendfile';
35  public const XACCEL = 'xaccel';
36  public const PHP = 'php';
37 
38  public function getArtifactName(): string
39  {
40  return "delivery_method";
41  }
42 
43 
44 
45  public function build(): Artifact
46  {
47  // check if mod_xsendfile is loaded
48  if ($this->isModXSendFileLoaded()) {
49  return new ArrayArtifact([
50  self::SETTINGS => self::XSENDFILE
51  ]);
52  }
53 
54  return new ArrayArtifact([
55  self::SETTINGS => self::PHP
56  ]);
57  }
58 
59  private function isModXSendFileLoaded(): bool
60  {
61  if (function_exists('apache_get_modules') && in_array('mod_xsendfile', apache_get_modules(), true)) {
62  return true;
63  }
64 
65  try {
66  $command_exists = shell_exec("which apache2ctl");
67  if ($command_exists === null || empty($command_exists)) {
68  return false;
69  }
70 
71  $loaded_modules = array_map(static fn($module): string => explode(" ", trim((string) $module))[0] ?? "", explode("\n", shell_exec("apache2ctl -M 2>/dev/null") ?? ''));
72  } catch (\Throwable) {
73  $loaded_modules = [];
74  }
75  return in_array('xsendfile_module', $loaded_modules, true);
76  }
77 
78  #[\Override]
79  public function isApplicable(Environment $environment): bool
80  {
81  return !file_exists(BuildArtifactObjective::PATH());
82  }
83 
84 }
This is an objective to build some artifact.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
An array as an artifact.
isApplicable(Environment $environment)
Get to know whether the objective is applicable.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:27