ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilInitialisation.php
Go to the documentation of this file.
1 <?php
2 
19 // TODO:
36 
37 // needed for slow queries, etc.
38 if (!isset($GLOBALS['ilGlobalStartTime']) || !$GLOBALS['ilGlobalStartTime']) {
39  $GLOBALS['ilGlobalStartTime'] = microtime();
40 }
41 
52 {
56  protected static function removeUnsafeCharacters(): void
57  {
58  // Remove unsafe characters from GET parameters.
59  // We do not need this characters in any case, so it is
60  // feasible to filter them everytime. POST parameters
61  // need attention through ilUtil::stripSlashes() and similar functions)
62  $_GET = self::recursivelyRemoveUnsafeCharacters($_GET);
63  }
64 
69  protected static function recursivelyRemoveUnsafeCharacters($var)
70  {
71  if (is_array($var)) {
72  $mod = [];
73  foreach ($var as $k => $v) {
74  $k = self::recursivelyRemoveUnsafeCharacters($k);
75  $mod[$k] = self::recursivelyRemoveUnsafeCharacters($v);
76  }
77  return $mod;
78  }
79  return strip_tags(
80  str_replace(
81  array("\x00", "\n", "\r", "\\", "'", '"', "\x1a"),
82  "",
83  $var
84  )
85  );
86  }
87 
91  protected static function requireCommonIncludes(): void
92  {
94  require_once(__DIR__ . "/../../../../ilias_version.php");
95  self::initGlobal("ilBench", "ilBenchmark", "./components/ILIAS/Utilities/classes/class.ilBenchmark.php");
96  }
97 
104  protected static function initIliasIniFile(): void
105  {
106  $ilIliasIniFile = new ilIniFile(__DIR__ . "/../../../../ilias.ini.php");
107  $ilIliasIniFile->read();
108  self::initGlobal('ilIliasIniFile', $ilIliasIniFile);
109 
110  // initialize constants
111  // aka internal data directory
112  if (!defined('ILIAS_DATA_DIR')) {
113  define("ILIAS_DATA_DIR", $ilIliasIniFile->readVariable("clients", "datadir"));
114  }
115  // aka Public Web Directory in Web, relative path to the webroot (public).
116  if (!defined('ILIAS_WEB_DIR')) {
117  $from_ilias_ini = $ilIliasIniFile->readVariable("clients", "path");
118  $from_ilias_ini = str_replace('public/', '', $from_ilias_ini);
119  define("ILIAS_WEB_DIR", $from_ilias_ini);
120  }
121  if (!defined("ILIAS_ABSOLUTE_PATH")) {
122  define("ILIAS_ABSOLUTE_PATH", $ilIliasIniFile->readVariable('server', 'absolute_path'));
123  }
124 
125  // logging
126  define("ILIAS_LOG_DIR", $ilIliasIniFile->readVariable("log", "path"));
127  define("ILIAS_LOG_FILE", $ilIliasIniFile->readVariable("log", "file"));
128  if (!defined("ILIAS_LOG_ENABLED")) {
129  define("ILIAS_LOG_ENABLED", $ilIliasIniFile->readVariable("log", "enabled"));
130  }
131  define("ILIAS_LOG_LEVEL", $ilIliasIniFile->readVariable("log", "level"));
132 
133  // read path + command for third party tools from ilias.ini
134  define("PATH_TO_CONVERT", $ilIliasIniFile->readVariable("tools", "convert"));
135  define("PATH_TO_FFMPEG", $ilIliasIniFile->readVariable("tools", "ffmpeg"));
136  define("PATH_TO_ZIP", $ilIliasIniFile->readVariable("tools", "zip"));
137  define("PATH_TO_MKISOFS", $ilIliasIniFile->readVariable("tools", "mkisofs"));
138  define("PATH_TO_UNZIP", $ilIliasIniFile->readVariable("tools", "unzip"));
139  define("PATH_TO_GHOSTSCRIPT", $ilIliasIniFile->readVariable("tools", "ghostscript"));
140  define("PATH_TO_JAVA", $ilIliasIniFile->readVariable("tools", "java"));
141  define("URL_TO_LATEX", $ilIliasIniFile->readVariable("tools", "latex"));
142  define("PATH_TO_FOP", $ilIliasIniFile->readVariable("tools", "fop"));
143  define("PATH_TO_SCSS", $ilIliasIniFile->readVariable("tools", "scss"));
144  define("PATH_TO_PHANTOMJS", $ilIliasIniFile->readVariable("tools", "phantomjs"));
145 
146  if ($ilIliasIniFile->groupExists('error')) {
147  if ($ilIliasIniFile->variableExists('error', 'editor_url')) {
148  define("ERROR_EDITOR_URL", $ilIliasIniFile->readVariable('error', 'editor_url'));
149  }
150 
151  if ($ilIliasIniFile->variableExists('error', 'editor_path_translations')) {
152  define(
153  "ERROR_EDITOR_PATH_TRANSLATIONS",
154  $ilIliasIniFile->readVariable('error', 'editor_path_translations')
155  );
156  }
157  }
158 
159  // read virus scanner settings
160  switch ($ilIliasIniFile->readVariable("tools", "vscantype")) {
161  case "sophos":
162  define("IL_VIRUS_SCANNER", "Sophos");
163  define("IL_VIRUS_SCAN_COMMAND", $ilIliasIniFile->readVariable("tools", "scancommand"));
164  define("IL_VIRUS_CLEAN_COMMAND", $ilIliasIniFile->readVariable("tools", "cleancommand"));
165  break;
166 
167  case "antivir":
168  define("IL_VIRUS_SCANNER", "AntiVir");
169  define("IL_VIRUS_SCAN_COMMAND", $ilIliasIniFile->readVariable("tools", "scancommand"));
170  define("IL_VIRUS_CLEAN_COMMAND", $ilIliasIniFile->readVariable("tools", "cleancommand"));
171  break;
172 
173  case "clamav":
174  define("IL_VIRUS_SCANNER", "ClamAV");
175  define("IL_VIRUS_SCAN_COMMAND", $ilIliasIniFile->readVariable("tools", "scancommand"));
176  define("IL_VIRUS_CLEAN_COMMAND", $ilIliasIniFile->readVariable("tools", "cleancommand"));
177  break;
178  case "icap":
179  define("IL_VIRUS_SCANNER", "icap");
180  define("IL_ICAP_HOST", $ilIliasIniFile->readVariable("tools", "icap_host"));
181  define("IL_ICAP_PORT", $ilIliasIniFile->readVariable("tools", "icap_port"));
182  define("IL_ICAP_AV_COMMAND", $ilIliasIniFile->readVariable("tools", "icap_service_name"));
183  define("IL_ICAP_CLIENT", $ilIliasIniFile->readVariable("tools", "icap_client_path"));
184  break;
185 
186  default:
187  define("IL_VIRUS_SCANNER", "None");
188  define("IL_VIRUS_CLEAN_COMMAND", '');
189  break;
190  }
191 
193  define("IL_TIMEZONE", $tz);
194  }
195 
196  protected static function initResourceStorage(): void
197  {
198  global $DIC;
199  (new InitResourceStorage())->init($DIC);
200  }
201 
212  public static function bootstrapFilesystems(): void
213  {
214  global $DIC;
215 
216  $DIC['filesystem.security.sanitizing.filename'] = function (Container $c) {
218  $c->fileServiceSettings()
219  );
220  };
221 
222  $DIC['filesystem.factory'] = function ($c) {
223  return new \ILIAS\Filesystem\Provider\DelegatingFilesystemFactory($c['filesystem.security.sanitizing.filename']);
224  };
225 
226  $DIC['filesystem.web'] = function ($c) {
227  //web
228 
232  $delegatingFactory = $c['filesystem.factory'];
233  $webConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_ABSOLUTE_PATH . '/public/' . ILIAS_WEB_DIR . '/' . CLIENT_ID);
234  return $delegatingFactory->getLocal($webConfiguration);
235  };
236 
237  $DIC['filesystem.storage'] = function ($c) {
238  //storage
239 
243  $delegatingFactory = $c['filesystem.factory'];
244  $storageConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_DATA_DIR . '/' . CLIENT_ID);
245  return $delegatingFactory->getLocal($storageConfiguration);
246  };
247 
248  $DIC['filesystem.temp'] = function ($c) {
249  //temp
250 
254  $delegatingFactory = $c['filesystem.factory'];
255  $tempConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_DATA_DIR . '/' . CLIENT_ID . '/temp');
256  return $delegatingFactory->getLocal($tempConfiguration);
257  };
258 
259  $DIC['filesystem.customizing'] = function ($c) {
260  //customizing
261 
265  $delegatingFactory = $c['filesystem.factory'];
266  $customizingConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_ABSOLUTE_PATH . '/' . 'Customizing');
267  return $delegatingFactory->getLocal($customizingConfiguration);
268  };
269 
270  $DIC['filesystem.libs'] = function ($c) {
271  //customizing
272 
276  $delegatingFactory = $c['filesystem.factory'];
277  $customizingConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_ABSOLUTE_PATH . '/' . 'vendor');
278  return $delegatingFactory->getLocal($customizingConfiguration, true);
279  };
280 
281  $DIC['filesystem.node_modules'] = function ($c) {
282  //customizing
283 
287  $delegatingFactory = $c['filesystem.factory'];
288  $customizingConfiguration = new \ILIAS\Filesystem\Provider\Configuration\LocalConfig(ILIAS_ABSOLUTE_PATH . '/' . 'node_modules');
289  return $delegatingFactory->getLocal($customizingConfiguration, true);
290  };
291 
292  $DIC['filesystem'] = function ($c) {
293  return new \ILIAS\Filesystem\FilesystemsImpl(
294  $c['filesystem.storage'],
295  $c['filesystem.web'],
296  $c['filesystem.temp'],
297  $c['filesystem.customizing'],
298  $c['filesystem.libs'],
299  $c['filesystem.node_modules']
300  );
301  };
302  }
303 
310  public static function initFileUploadService(\ILIAS\DI\Container $dic): void
311  {
312  $dic['upload.processor-manager'] = function ($c) {
313  return new PreProcessorManagerImpl();
314  };
315 
316  $dic['upload'] = function (\ILIAS\DI\Container $c) {
317  $fileUploadImpl = new \ILIAS\FileUpload\FileUploadImpl(
318  $c['upload.processor-manager'],
319  $c['filesystem'],
320  $c['http']
321  );
322  if ((defined('IL_VIRUS_SCANNER') && IL_VIRUS_SCANNER != "None") || (defined('IL_SCANNER_TYPE') && IL_SCANNER_TYPE == "1")) {
323  $fileUploadImpl->register(new ilVirusScannerPreProcessor(ilVirusScannerFactory::_getInstance()));
324  }
325 
326  $fileUploadImpl->register(new FilenameSanitizerPreProcessor());
327  $fileUploadImpl->register(
329  $c->fileServiceSettings(),
330  $c->language()->txt("msg_info_blacklisted")
331  )
332  );
333  $fileUploadImpl->register(new InsecureFilenameSanitizerPreProcessor());
334  $fileUploadImpl->register(new SVGBlacklistPreProcessor(
335  $c->language()->txt("upload_svg_rejection_message"),
336  $c->language()->txt("upload_svg_rejection_message_script"),
337  $c->language()->txt("upload_svg_rejection_message_base64"),
338  $c->language()->txt("upload_svg_rejection_message_elements")
339  ));
340 
341  return $fileUploadImpl;
342  };
343  }
344 
345  protected static function initUploadPolicies(\ILIAS\DI\Container $dic): void
346  {
347  $dic['upload_policy_repository'] = static function ($dic) {
348  return new UploadPolicyDBRepository($dic->database());
349  };
350 
351  $dic['upload_policy_resolver'] = static function ($dic): UploadPolicyResolver {
352  return new UploadPolicyResolver(
353  $dic->rbac()->review(),
354  $dic->user(),
355  $dic['upload_policy_repository']->getAll(),
356  );
357  };
358  }
359 
360  protected static function buildHTTPPath(): bool
361  {
362  global $DIC;
363 
364  return define(
365  'ILIAS_HTTP_PATH',
366  (new \ILIAS\Init\Environment\HttpPathBuilder(
367  $DIC[\ILIAS\Data\Factory::class],
368  $DIC->settings(),
369  $DIC['https'],
370  $DIC['ilIliasIniFile'],
371  $_SERVER
372  ))->build()->getBaseURI()
373  );
374  }
375 
380  protected static function determineClient(): void
381  {
382  if (defined('CLIENT_ID')) {
383  return;
384  }
385  global $DIC;
386  $df = $DIC[\ILIAS\Data\Factory::class];
387 
388  // check whether ini file object exists
389  if (!$DIC->isDependencyAvailable('iliasIni')) {
390  self::abortAndDie('Fatal Error: ilInitialisation::determineClient called without initialisation of ILIAS ini file object.');
391  }
392 
393  $in_unit_tests = defined('IL_PHPUNIT_TEST');
394  $context_supports_persitent_session = ilContext::supportsPersistentSessions();
395  $can_set_cookie = !$in_unit_tests && $context_supports_persitent_session;
396  $has_request_client_id = $DIC->http()->wrapper()->query()->has('client_id');
397  $has_cookie_client_id = $DIC->http()->cookieJar()->has('ilClientId');
398 
399  // determine the available clientIds (default, request, cookie)
400  $default_client_id = $DIC->iliasIni()->readVariable('clients', 'default');
401 
402  if ($DIC->http()->wrapper()->query()->has('client_id')) {
403  $client_id_from_get = $DIC->http()->wrapper()->query()->retrieve(
404  'client_id',
405  self::getClientIdTransformation()
406  );
407  }
408  if ($DIC->http()->wrapper()->cookie()->has('ilClientId')) {
409  $client_id_from_cookie = $DIC->http()->wrapper()->cookie()->retrieve(
410  'ilClientId',
411  self::getClientIdTransformation()
412  );
413  }
414 
415  // set the clientId by availability: 1. request, 2. cookie, fallback to defined default
416  $client_id_to_use = '';
417  if (isset($client_id_from_get) && $client_id_from_get !== '') {
418  $client_id_to_use = $client_id_from_get;
419  }
420  // we found a client_id in $GET
421  if (isset($client_id_from_get) && strlen($client_id_from_get) > 0) {
422  // @todo refinery undefined
423  $client_id_to_use = $_GET['client_id'] = $df->clientId($client_id_from_get)->toString();
424  if ($can_set_cookie) {
425  ilUtil::setCookie('ilClientId', $client_id_to_use);
426  }
427  } else {
428  $client_id_to_use = $default_client_id;
429  if (!isset($_COOKIE['ilClientId'])) {
430  ilUtil::setCookie('ilClientId', $client_id_to_use);
431  }
432  }
433 
434  $client_id_to_use = $client_id_to_use ?: $default_client_id;
435 
436  define('CLIENT_ID', $df->clientId($client_id_to_use)->toString());
437  }
438 
439 
446  private static function getClientIdTransformation(): Transformation
447  {
448  return new class () implements Transformation {
452  public function transform($from): string
453  {
454  if (!is_string($from)) {
455  throw new InvalidArgumentException(__METHOD__ . " the argument is not a string.");
456  }
457  return strip_tags($from);
458  }
459 
463  public function applyTo(Result $result): Result
464  {
465  return $result->then(function ($value): Result {
466  try {
467  return new Ok($this->transform($value));
468  } catch (Exception $exception) {
469  return new Error($exception);
470  }
471  });
472  }
473 
477  public function __invoke($from): string
478  {
479  return $this->transform($from);
480  }
481  };
482  }
483 
493  protected static function initClientIniFile(): void
494  {
495  global $ilIliasIniFile;
496 
497  // check whether ILIAS_WEB_DIR is set.
498  if (!defined('ILIAS_WEB_DIR') || empty(ILIAS_WEB_DIR)) {
499  self::abortAndDie("Fatal Error: ilInitialisation::initClientIniFile called without ILIAS_WEB_DIR.");
500  }
501 
502  // check whether CLIENT_ID is set.
503  if (CLIENT_ID == "") {
504  self::abortAndDie("Fatal Error: ilInitialisation::initClientIniFile called without CLIENT_ID.");
505  }
506 
507  $ini_file = "/client.ini.php";
508  if (defined('CLIENT_WEB_DIR')) {
509  $ini_file = CLIENT_WEB_DIR . $ini_file;
510  } else {
511  $ini_file = ILIAS_WEB_DIR . "/" . CLIENT_ID . "/client.ini.php";
512  }
513 
514  // get settings from ini file
515  $ilClientIniFile = new ilIniFile(__DIR__ . "/../../../../public/" . $ini_file);
516  $ilClientIniFile->read();
517 
518  // invalid client id / client ini
519  if ($ilClientIniFile->ERROR != "") {
520  $default_client = $ilIliasIniFile->readVariable("clients", "default");
521  if (CLIENT_ID !== "") {
522  $mess = array("en" => "Client does not exist.",
523  "de" => "Mandant ist ungültig."
524  );
525  self::redirect("index.php?client_id=" . $default_client, '', $mess);
526  } else {
527  self::abortAndDie("Fatal Error: ilInitialisation::initClientIniFile initializing client ini file abborted with: " . $ilClientIniFile->ERROR);
528  }
529  }
530 
531  self::initGlobal("ilClientIniFile", $ilClientIniFile);
532  // set constants
533  define("DEVMODE", (int) $ilClientIniFile->readVariable("system", "DEVMODE"));
534  define("SHOWNOTICES", (int) $ilClientIniFile->readVariable("system", "SHOWNOTICES"));
535  if (!defined("ROOT_FOLDER_ID")) {
536  define("ROOT_FOLDER_ID", (int) $ilClientIniFile->readVariable('system', 'ROOT_FOLDER_ID'));
537  }
538  if (!defined("SYSTEM_FOLDER_ID")) {
539  define("SYSTEM_FOLDER_ID", (int) $ilClientIniFile->readVariable('system', 'SYSTEM_FOLDER_ID'));
540  }
541  if (!defined("ROLE_FOLDER_ID")) {
542  define("ROLE_FOLDER_ID", (int) $ilClientIniFile->readVariable('system', 'ROLE_FOLDER_ID'));
543  }
544  define("MAIL_SETTINGS_ID", (int) $ilClientIniFile->readVariable('system', 'MAIL_SETTINGS_ID'));
545  $error_handler = $ilClientIniFile->readVariable('system', 'ERROR_HANDLER');
546  define("ERROR_HANDLER", $error_handler ?: "PRETTY_PAGE");
547 
548  // this is for the online help installation, which sets OH_REF_ID to the
549  // ref id of the online module
550  define("OH_REF_ID", (int) $ilClientIniFile->readVariable("system", "OH_REF_ID"));
551 
552  // see ilObject::TITLE_LENGTH, ilObject::DESC_LENGTH
553  // define ("MAXLENGTH_OBJ_TITLE",125);#$ilClientIniFile->readVariable('system','MAXLENGTH_OBJ_TITLE'));
554  // define ("MAXLENGTH_OBJ_DESC",$ilClientIniFile->readVariable('system','MAXLENGTH_OBJ_DESC'));
555 
556  if (!defined("CLIENT_DATA_DIR")) {
557  define("CLIENT_DATA_DIR", ILIAS_DATA_DIR . "/" . CLIENT_ID);
558  }
559  if (!defined("CLIENT_WEB_DIR")) {
560  define("CLIENT_WEB_DIR", ILIAS_ABSOLUTE_PATH . "/public/" . ILIAS_WEB_DIR . "/" . CLIENT_ID);
561  }
562  define("CLIENT_NAME", $ilClientIniFile->readVariable('client', 'name')); // Change SS
563 
564  $db_type = $ilClientIniFile->readVariable("db", "type");
565  if ($db_type === "") {
566  define("IL_DB_TYPE", ilDBConstants::TYPE_INNODB);
567  } else {
568  define("IL_DB_TYPE", $db_type);
569  }
570  }
571 
575  protected static function handleMaintenanceMode(): void
576  {
577  global $ilClientIniFile;
578 
579  if (!$ilClientIniFile->readVariable("client", "access")) {
580  $mess = array(
581  "en" => "The server is not available due to maintenance." .
582  " We apologise for any inconvenience.",
583  "de" => "Der Server ist aufgrund von Wartungsarbeiten aktuell nicht verf&uuml;gbar." .
584  " Wir bitten um Verst&auml;ndnis. Versuchen Sie es sp&auml;ter noch einmal."
585  );
586  $mess_id = "init_error_maintenance";
587 
588  if (ilContext::hasHTML() && is_file("./maintenance.html")) {
589  self::redirect("./maintenance.html", $mess_id, $mess);
590  } else {
591  $mess = self::translateMessage($mess_id, $mess);
592  self::abortAndDie($mess);
593  }
594  }
595  }
596 
600  protected static function initDatabase(): void
601  {
602  // build dsn of database connection and connect
604  $ilDB->initFromIniFile();
605  $ilDB->connect();
606 
607  self::initGlobal("ilDB", $ilDB);
608  }
609 
610  protected static function initGlobalCache(): void
611  {
612  global $DIC;
613  $legacy_settings = new ilGlobalCacheSettingsAdapter(
614  $DIC->clientIni(),
615  $DIC->database(),
616  );
617  $DIC['global_cache'] = new \ILIAS\Cache\Services(
618  $legacy_settings->getConfig()
619  );
620  }
621 
626  public static function setSessionHandler(): void
627  {
628  $db_session_handler = new ilSessionDBHandler();
629  if (!$db_session_handler->setSaveHandler()) {
630  self::abortAndDie("Cannot start session handling.");
631  }
632 
633  // Do not accept external session ids
634  if (!ilSession::_exists(session_id()) && !defined('IL_PHPUNIT_TEST')) {
635  // php7-todo, correct-with-php5-removal : alex, 1.3.2016: added if, please check
636  if (function_exists("session_status") && session_status() == PHP_SESSION_ACTIVE) {
637  session_regenerate_id();
638  }
639  }
640  }
641 
645  protected static function setCookieConstants(): void
646  {
648  $cookie_path = '/';
649  } elseif (isset($GLOBALS['COOKIE_PATH'])) {
650  // use a predefined cookie path from WebAccessChecker
651  $cookie_path = $GLOBALS['COOKIE_PATH'];
652  } else {
653  $cookie_path = dirname($_SERVER['SCRIPT_NAME']);
654  }
655 
656  /* if ilias is called directly within the docroot $cookie_path
657  is set to '/' expecting on servers running under windows..
658  here it is set to '\'.
659  in both cases a further '/' won't be appended due to the following regex
660  */
661  $cookie_path .= (!preg_match("/[\/|\\\\]$/", $cookie_path)) ? "/" : "";
662 
663  if ($cookie_path == "\\") {
664  $cookie_path = '/';
665  }
666 
667  define('IL_COOKIE_HTTPONLY', true); // Default Value
668  define('IL_COOKIE_EXPIRE', 0);
669  define('IL_COOKIE_DOMAIN', '');
670  if (!defined('IL_COOKIE_PATH')) {
671  // Might be already defined by ./public/sso/index.php or other scripts (like those in ./components/ILIAS/SAML/lib/*)
672  define('IL_COOKIE_PATH', $cookie_path);
673  }
674  }
675 
676  private static function setClientIdCookie(): void
677  {
678  if (defined('CLIENT_ID') &&
679  !defined('IL_PHPUNIT_TEST') &&
681  ilUtil::setCookie('ilClientId', CLIENT_ID);
682  }
683  }
684 
688  protected static function setSessionCookieParams(): void
689  {
690  global $ilSetting, $DIC;
691 
692  if (!defined('IL_COOKIE_SECURE')) {
693  // If this code is executed, we can assume that \ilHTTPS::enableSecureCookies was NOT called before
694  // \ilHTTPS::enableSecureCookies already executes session_set_cookie_params()
695 
696  $cookie_secure = !$ilSetting->get('https', '0') && $DIC['https']->isDetected();
697  define('IL_COOKIE_SECURE', $cookie_secure); // Default Value
698 
699  $cookie_parameters = [
700  'lifetime' => IL_COOKIE_EXPIRE,
701  'path' => IL_COOKIE_PATH,
702  'domain' => IL_COOKIE_DOMAIN,
703  'secure' => IL_COOKIE_SECURE,
704  'httponly' => IL_COOKIE_HTTPONLY,
705  ];
706 
707  if (
708  $cookie_secure &&
709  (!isset(session_get_cookie_params()['samesite']) || strtolower(session_get_cookie_params()['samesite']) !== 'strict')
710  ) {
711  $cookie_parameters['samesite'] = 'Lax';
712  }
713 
714  session_set_cookie_params($cookie_parameters);
715  }
716  }
717 
718  protected static function initCron(\ILIAS\DI\Container $c): void
719  {
720  $c['cron.repository'] = static function (\ILIAS\DI\Container $c): ILIAS\Cron\Job\JobRepository {
722  $c->database(),
723  $c->settings(),
724  $c->logger()->cron(),
725  $c['component.repository'],
726  $c['component.factory']
727  );
728  };
729 
730  $c['cron.manager'] = static function (\ILIAS\DI\Container $c): ILIAS\Cron\Job\JobManager {
732  $c['cron.repository'],
733  $c->database(),
734  $c->settings(),
735  $c->logger()->cron(),
736  $c[\ILIAS\Data\Factory::class]->clock(),
737  );
738  };
739  }
740 
744  protected static function initCustomObjectIcons(\ILIAS\DI\Container $c): void
745  {
746  $c["object.customicons.factory"] = function ($c) {
747  return new ilObjectCustomIconFactory(
748  $c->filesystem()->web(),
749  $c->upload(),
750  $c['ilObjDataCache']
751  );
752  };
753  }
754 
755  protected static function initAvatar(\ILIAS\DI\Container $c): void
756  {
757  $c["user.avatar.factory"] = function ($c) {
758  return new \ilUserAvatarFactory($c);
759  };
760  }
761 
762  protected static function initLegalDocuments(Container $c): void
763  {
764  $c['legalDocuments'] = static fn(Container $c) => new Conductor($c);
765  }
766 
767  protected static function initAccessibilityControlConcept(\ILIAS\DI\Container $c): void
768  {
769  $c['acc.criteria.type.factory'] = function (\ILIAS\DI\Container $c) {
770  return new ilAccessibilityCriterionTypeFactory($c->rbac()->review(), $c['ilObjDataCache']);
771  };
772 
773  $c['acc.document.evaluator'] = function (\ILIAS\DI\Container $c) {
776  $c['acc.criteria.type.factory'],
777  $c->user(),
778  $c->logger()->acc()
779  ),
780  $c->user(),
781  $c->logger()->acc(),
782  \ilAccessibilityDocument::orderBy('sorting')->get()
783  );
784  };
785  }
786 
791  protected static function initSettings(): void
792  {
793  global $ilSetting;
794 
795  self::initGlobal(
796  "ilSetting",
797  "ilSetting",
798  "components/ILIAS/Administration/classes/class.ilSetting.php"
799  );
800 
801  // check correct setup
802  if (!$ilSetting->get("setup_ok")) {
803  self::abortAndDie("Setup is not completed. Please run setup routine again.");
804  }
805 
806  // set anonymous user & role id and system role id
807  define("ANONYMOUS_USER_ID", (int) $ilSetting->get("anonymous_user_id"));
808  define("ANONYMOUS_ROLE_ID", (int) $ilSetting->get("anonymous_role_id"));
809  define("SYSTEM_USER_ID", (int) $ilSetting->get("system_user_id"));
810  define("SYSTEM_ROLE_ID", (int) $ilSetting->get("system_role_id"));
811  define("USER_FOLDER_ID", 7);
812 
813  // recovery folder
814  define("RECOVERY_FOLDER_ID", (int) $ilSetting->get("recovery_folder_id"));
815 
816  // installation id
817  define("IL_INST_ID", $ilSetting->get("inst_id", '0'));
818 
819  // define default suffix replacements
820  define("SUFFIX_REPL_DEFAULT", "php,php3,php4,inc,lang,phtml,htaccess");
821  define("SUFFIX_REPL_ADDITIONAL", $ilSetting->get("suffix_repl_additional", ""));
822 
823  if (ilContext::usesHTTP()) {
824  self::buildHTTPPath();
825  }
826  }
827 
831  protected static function initStyle(): void
832  {
833  global $DIC;
834  $component_factory = $DIC["component.factory"];
835 
836  // load style definitions
837  self::initGlobal(
838  "styleDefinition",
839  "ilStyleDefinition",
840  "./components/ILIAS/Style/System/classes/class.ilStyleDefinition.php"
841  );
842 
843  // add user interface hook for style initialisation
844  foreach ($component_factory->getActivePluginsInSlot("uihk") as $ui_plugin) {
845  $gui_class = $ui_plugin->getUIClassInstance();
846  $gui_class->modifyGUI("components/ILIAS/Init", "init_style", array("styleDefinition" => $DIC->systemStyle()));
847  }
848  }
849 
853  public static function initUserAccount(): void
854  {
855  global $DIC;
856 
857  static $context_init;
858 
859  $uid = $GLOBALS['DIC']['ilAuthSession']->getUserId();
860  if ($uid) {
861  $DIC->user()->setId($uid);
862  $DIC->user()->read();
863  if (!isset($context_init)) {
864  if ($DIC->user()->isAnonymous()) {
865  $DIC->globalScreen()->tool()->context()->claim()->external();
866  } else {
867  $DIC->globalScreen()->tool()->context()->claim()->internal();
868  }
869  $context_init = true;
870  }
871  // init console log handler
872  ilLoggerFactory::getInstance()->initUser($DIC->user()->getLogin());
873  \ilOnlineTracking::updateAccess($DIC->user());
874  } else {
875  if (is_object($GLOBALS['ilLog'])) {
876  $GLOBALS['ilLog']->logStack();
877  }
878  self::abortAndDie("Init user account failed");
879  }
880  }
881 
885  protected static function initLocale(): void
886  {
887  global $ilSetting;
888 
889  if ($ilSetting->get("locale") && trim($ilSetting->get("locale")) !== "") {
890  $larr = explode(",", trim($ilSetting->get("locale")));
891  $ls = array();
892  $first = $larr[0];
893  foreach ($larr as $l) {
894  if (trim($l) != "") {
895  $ls[] = $l;
896  }
897  }
898  if (count($ls) > 0) {
899  setlocale(LC_ALL, $ls);
900 
901  // #15347 - making sure that floats are not changed
902  setlocale(LC_NUMERIC, "C");
903  }
904  }
905  }
906 
910  public static function goToPublicSection(): void
911  {
912  global $DIC;
913 
914  if (ANONYMOUS_USER_ID == "") {
915  self::abortAndDie("Public Section enabled, but no Anonymous user found.");
916  }
917 
918  $session_destroyed = false;
919  if ($DIC['ilAuthSession']->isExpired()) {
920  $session_destroyed = true;
922  }
923  if (!$DIC['ilAuthSession']->isAuthenticated()) {
924  $session_destroyed = true;
926  }
927 
928  if ($session_destroyed) {
929  $GLOBALS['DIC']['ilAuthSession']->setAuthenticated(true, ANONYMOUS_USER_ID);
930  }
931 
932  self::initUserAccount();
933 
934  $target = '';
935  if ($DIC->http()->wrapper()->query()->has('target')) {
936  $target = $DIC->http()->wrapper()->query()->retrieve(
937  'target',
938  $DIC->refinery()->kindlyTo()->string()
939  );
940  }
941 
942  // if target given, try to go there
943  if (strlen($target)) {
944  // when we are already "inside" goto.php no redirect is needed
945  $current_script = substr(strrchr($_SERVER["PHP_SELF"], "/"), 1);
946  if ($current_script == "goto.php") {
947  return;
948  }
949  // goto will check if target is accessible or redirect to login
950  self::redirect("goto.php?target=" . $target);
951  }
952 
953  // we do not know if ref_id of request is accesible, so redirecting to root
954  self::redirect(
955  "ilias.php?baseClass=ilrepositorygui&reloadpublic=1&cmd=&ref_id=" . (defined(
956  'ROOT_FOLDER_ID'
957  ) ? (string) ROOT_FOLDER_ID : '0')
958  );
959  }
960 
964  protected static function goToLogin(): void
965  {
966  global $DIC;
967 
968  $session_expired = false;
969  ilLoggerFactory::getLogger('init')->debug('Redirecting to login page.');
970 
971  if ($DIC['ilAuthSession']->isExpired()) {
973  $session_expired = true;
974  }
975  if (!$DIC['ilAuthSession']->isAuthenticated()) {
977  }
978 
979  $target = $DIC->http()->wrapper()->query()->has('target')
980  ? $DIC->http()->wrapper()->query()->retrieve(
981  'target',
982  $DIC->refinery()->kindlyTo()->string()
983  )
984  : '';
985 
986  if (strlen($target)) {
987  $target = "target=" . $target . "&";
988  }
989 
990  $client_id = $DIC->http()->wrapper()->cookie()->retrieve(
991  'ilClientId',
992  $DIC->refinery()->byTrying([
993  $DIC->refinery()->kindlyTo()->string(),
994  $DIC->refinery()->always('')
995  ])
996  );
997 
998  $script = "login.php?" . $target . "client_id=" . $client_id;
999  $script .= $session_expired ? "&session_expired=1" : "";
1000 
1001  self::redirect(
1002  $script,
1003  "init_error_authentication_fail",
1004  array(
1005  "en" => "Authentication failed.",
1006  "de" => "Authentifizierung fehlgeschlagen."
1007  )
1008  );
1009  }
1010 
1014  protected static function initLanguage(bool $a_use_user_language = true): void
1015  {
1016  global $DIC;
1017 
1021  global $rbacsystem;
1022 
1023  if ($a_use_user_language) {
1024  if ($DIC->offsetExists('lng')) {
1025  $DIC->offsetUnset('lng');
1026  }
1027  self::initGlobal('lng', ilLanguage::getGlobalInstance());
1028  } else {
1029  self::initGlobal('lng', ilLanguage::getFallbackInstance());
1030  }
1031  if (is_object($rbacsystem) && $DIC->offsetExists('tree')) {
1032  $rbacsystem->initMemberView();
1033  }
1034  }
1035 
1039  protected static function initAccessHandling(): void
1040  {
1041  self::initGlobal(
1042  "rbacreview",
1043  "ilRbacReview",
1044  "./components/ILIAS/AccessControl/classes/class.ilRbacReview.php",
1045  true
1046  );
1047 
1048  $rbacsystem = ilRbacSystem::getInstance();
1049  self::initGlobal('rbacsystem', $rbacsystem, null, true);
1050 
1051  self::initGlobal(
1052  "rbacadmin",
1053  "ilRbacAdmin",
1054  "./components/ILIAS/AccessControl/classes/class.ilRbacAdmin.php",
1055  true
1056  );
1057 
1058  self::initGlobal(
1059  "ilAccess",
1060  "ilAccess",
1061  "./components/ILIAS/AccessControl/classes/class.ilAccess.php",
1062  true
1063  );
1064  }
1065 
1069  protected static function initLog(): void
1070  {
1072 
1073  self::initGlobal("ilLog", $log);
1074  // deprecated
1075  self::initGlobal("log", $log);
1076  }
1077 
1081  protected static function initGlobal(
1082  string $a_name,
1083  $a_class,
1084  ?string $a_source_file = null,
1085  ?bool $destroy_existing = false
1086  ): void {
1087  global $DIC;
1088 
1089  if ($destroy_existing) {
1090  if (isset($GLOBALS[$a_name])) {
1091  unset($GLOBALS[$a_name]);
1092  }
1093  if (isset($DIC[$a_name])) {
1094  unset($DIC[$a_name]);
1095  }
1096  }
1097 
1098  $GLOBALS[$a_name] = is_object($a_class) ? $a_class : new $a_class();
1099 
1100  $DIC[$a_name] = static function (Container $c) use ($a_name) {
1101  return $GLOBALS[$a_name];
1102  };
1103  }
1104 
1105  protected static function abortAndDie(string $a_message): void
1106  {
1107  if (isset($GLOBALS['ilLog'])) {
1108  $GLOBALS['ilLog']->write("Fatal Error: ilInitialisation - " . $a_message);
1109  $GLOBALS['ilLog']->logStack();
1110  }
1111  die($a_message);
1112  }
1113 
1117  protected static function handleDevMode(): void
1118  {
1119  error_reporting(-1);
1120  }
1121 
1122  protected static bool $already_initialized = false;
1123 
1124  public static function reinitILIAS(): void
1125  {
1126  self::$already_initialized = false;
1127  self::initILIAS();
1128  }
1129 
1130  public static function reInitUser(): void
1131  {
1133  self::initSession();
1134  self::initUser();
1135 
1137  self::resumeUserSession();
1138  }
1139  }
1140  }
1141 
1145  public static function initILIAS(): void
1146  {
1147  if (self::$already_initialized) {
1148  return;
1149  }
1150 
1151  $GLOBALS["DIC"]["ilLoggerFactory"] = function ($c) {
1153  };
1154 
1155  self::$already_initialized = true;
1156 
1157  self::initCore();
1158  self::initHTTPServices($GLOBALS["DIC"]);
1159  if (ilContext::initClient()) {
1160  self::initFileUploadService($GLOBALS["DIC"]);
1161  Init::init($GLOBALS["DIC"]);
1162  self::initClient();
1163  self::initSession();
1164 
1165  if (ilContext::hasUser()) {
1166  self::initUser();
1167 
1169  self::resumeUserSession();
1170  }
1171  }
1172 
1173  // language may depend on user setting
1174  self::initLanguage(true);
1175  $GLOBALS['DIC']['tree']->initLangCode();
1176 
1177  self::initInjector($GLOBALS['DIC']);
1178  self::initBackgroundTasks($GLOBALS['DIC']);
1179  self::initKioskMode($GLOBALS['DIC']);
1180 
1181  if (ilContext::hasHTML()) {
1182  self::initHTML();
1183  }
1184  }
1185 
1186  // this MUST happen after everything else is initialized,
1187  // because this leads to rather unexpected behaviour which
1188  // is super hard to track down to this.
1189  self::replaceSuperGlobals($GLOBALS['DIC']);
1190  }
1191 
1195  protected static function initSession(): void
1196  {
1197  if (isset($GLOBALS['DIC']['ilAuthSession'])) {
1198  unset($GLOBALS['DIC']['ilAuthSession']);
1199  }
1200 
1201  $GLOBALS['DIC']['ilAuthSession'] = static function (Container $c): ilAuthSession {
1202  $auth_session = ilAuthSession::getInstance(
1203  $c['ilLoggerFactory']->getLogger('auth')
1204  );
1205  $auth_session->init();
1206  return $auth_session;
1207  };
1208  }
1209 
1213  public static function handleErrorReporting(): void
1214  {
1215  // push the error level as high as possible / sane
1216  error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
1217 
1218  // see handleDevMode() - error reporting might be overwritten again
1219  // but we need the client ini first
1220  }
1221 
1225  protected static function initCore(): void
1226  {
1227  global $ilErr;
1228 
1229  self::handleErrorReporting();
1230 
1231  // breaks CAS: must be included after CAS context isset in AuthUtils
1232 
1233  self::requireCommonIncludes();
1234  $GLOBALS["DIC"]["ilias.version"] = $GLOBALS["DIC"][\ILIAS\Data\Factory::class]->version(ILIAS_VERSION_NUMERIC);
1235 
1236  // error handler
1237  self::initGlobal(
1238  "ilErr",
1239  "ilErrorHandling",
1240  "./components/ILIAS/Init/classes/class.ilErrorHandling.php"
1241  );
1242 
1243  self::removeUnsafeCharacters();
1244 
1245  self::initIliasIniFile();
1246 
1247  define('IL_INITIAL_WD', getcwd());
1248 
1249  // deprecated
1250  self::initGlobal("ilias", "ILIAS", "./components/ILIAS/Init/classes/class.ilias.php");
1251  }
1252 
1256  protected static function initClient(): void
1257  {
1258  global $https, $ilias, $DIC;
1259 
1260  self::setCookieConstants();
1261 
1262  self::determineClient();
1263 
1264  self::bootstrapFilesystems();
1265 
1266  self::initResourceStorage();
1267 
1268  self::initClientIniFile();
1269 
1270  // --- needs client ini
1271 
1272  $ilias->client_id = (string) CLIENT_ID;
1273 
1274  if (DEVMODE) {
1275  self::handleDevMode();
1276  }
1277 
1278  self::handleMaintenanceMode();
1279 
1280  self::initDatabase();
1281 
1282  self::initGlobalCache();
1283 
1284  self::initComponentService($DIC);
1285 
1286  // init dafault language
1287  self::initLanguage(false);
1288 
1289  // moved after databases
1290  self::initLog();
1291 
1292  self::initGlobal(
1293  "ilAppEventHandler",
1294  "ilAppEventHandler",
1295  "./components/ILIAS/EventHandling/classes/class.ilAppEventHandler.php"
1296  );
1297 
1298  // there are rare cases where initILIAS is called twice for a request
1299  // example goto.php is called and includes ilias.php later
1300  // we must prevent that ilPluginAdmin is initialized twice in
1301  // this case, since this won't get the values out of plugin.php the
1302  // second time properly
1303  if (!isset($DIC["ilPluginAdmin"]) || !$DIC["ilPluginAdmin"] instanceof ilPluginAdmin) {
1304  self::initGlobal(
1305  "ilPluginAdmin",
1306  new ilPluginAdmin($DIC["component.repository"]),
1307  "./components/ILIAS/Component/classes/class.ilPluginAdmin.php"
1308  );
1309  }
1310  self::initGlobal("https", "ilHTTPS", "./components/ILIAS/Http/classes/class.ilHTTPS.php");
1311  self::initSettings();
1312  self::setSessionHandler();
1313  self::initCron($GLOBALS['DIC']);
1314  self::initAvatar($GLOBALS['DIC']);
1315  self::initCustomObjectIcons($GLOBALS['DIC']);
1316  self::initLegalDocuments($GLOBALS['DIC']);
1317  self::initAccessibilityControlConcept($GLOBALS['DIC']);
1318  self::initLearningObjectMetadata($GLOBALS['DIC']);
1319 
1320  // --- needs settings
1321 
1322  self::initLocale();
1323 
1324  if (ilContext::usesHTTP()) {
1325  $https->enableSecureCookies();
1326  $https->checkProtocolAndRedirectIfNeeded();
1327  }
1328 
1329  // --- object handling
1330 
1331  self::initGlobal(
1332  "ilObjDataCache",
1333  "ilObjectDataCache",
1334  "./components/ILIAS/Object/classes/class.ilObjectDataCache.php"
1335  );
1336 
1337  self::initGlobal(
1338  "objDefinition",
1339  "ilObjectDefinition",
1340  "./components/ILIAS/Object/classes/class.ilObjectDefinition.php"
1341  );
1342 
1343  // $tree
1344  $tree = new ilTree(ROOT_FOLDER_ID);
1345  self::initGlobal("tree", $tree);
1346  unset($tree);
1347 
1348  self::setSessionCookieParams();
1349  self::setClientIdCookie();
1350 
1351  (new InitCtrlService())->init($DIC);
1352 
1353  // Init GlobalScreen
1354  self::initGlobalScreen($DIC);
1355  }
1356 
1360  protected static function initUser(): void
1361  {
1362  global $ilias, $ilUser;
1363 
1364  // $ilUser
1365  self::initGlobal(
1366  "ilUser",
1368  "./components/ILIAS/User/classes/class.ilObjUser.php",
1369  true
1370  );
1371  $ilias->account = $ilUser;
1372 
1373  self::initAccessHandling();
1374  }
1375 
1379  public static function resumeUserSession(): void
1380  {
1381  global $DIC;
1382 
1385  }
1386 
1387  if (
1388  !$DIC['ilAuthSession']->isAuthenticated() ||
1389  $DIC['ilAuthSession']->isExpired()
1390  ) {
1391  if ($GLOBALS['DIC']['ilAuthSession']->isExpired()) {
1393  }
1394 
1395  ilLoggerFactory::getLogger('init')->debug('Current session is invalid: ' . $GLOBALS['DIC']['ilAuthSession']->getId());
1396  $current_script = substr(strrchr($_SERVER["PHP_SELF"], "/"), 1);
1397  if (self::blockedAuthentication($current_script)) {
1398  ilLoggerFactory::getLogger('init')->debug('Authentication is started in current script.');
1399  // nothing todo: authentication is done in current script
1400  return;
1401  }
1402 
1403  self::handleAuthenticationFail();
1404  return;
1405  }
1406  // valid session
1407 
1408  self::initUserAccount();
1409  }
1410 
1414  protected static function handleAuthenticationSuccess(): void
1415  {
1419  global $ilUser;
1420 
1422  }
1423 
1427  protected static function handleAuthenticationFail(): void
1428  {
1429  global $DIC;
1430 
1431  ilLoggerFactory::getLogger('init')->debug('Handling of failed authentication.');
1432 
1433  // #10608
1434  if (
1437  throw new Exception("Authentication failed.");
1438  }
1439 
1440  if (($DIC->http()->request()->getQueryParams()['cmdMode'] ?? 0) === 'asynch') {
1441  $DIC->language()->loadLanguageModule('init');
1442  $DIC->http()->saveResponse(
1443  $DIC->http()->response()
1444  ->withStatus(403)
1445  ->withBody(Streams::ofString($DIC->language()->txt('init_error_authentication_fail')))
1446  );
1447  $DIC->http()->sendResponse();
1448  $DIC->http()->close();
1449  }
1450  if (
1451  $DIC['ilAuthSession']->isExpired() &&
1452  !\ilObjUser::_isAnonymous($DIC['ilAuthSession']->getUserId())
1453  ) {
1454  ilLoggerFactory::getLogger('init')->debug('Expired session found -> redirect to login page');
1455  self::goToLogin();
1456  return;
1457  }
1458  if (ilPublicSectionSettings::getInstance()->isEnabledForDomain($_SERVER['SERVER_NAME'])) {
1459  ilLoggerFactory::getLogger('init')->debug('Redirect to public section.');
1460  self::goToPublicSection();
1461  return;
1462  }
1463  ilLoggerFactory::getLogger('init')->debug('Redirect to login page.');
1464  self::goToLogin();
1465  }
1466 
1470  protected static function initHTTPServices(\ILIAS\DI\Container $container): void
1471  {
1472  $init_http = new InitHttpServices();
1473  $init_http->init($container);
1474 
1475  \ILIAS\StaticURL\Init::init($container);
1476  }
1477 
1481  private static function initGlobalScreen(\ILIAS\DI\Container $c): void
1482  {
1483  $c['global_screen'] = function () use ($c) {
1484  return new Services(
1485  new ilGSProviderFactory($c),
1486  $c->ui(),
1487  htmlentities(str_replace([" ", ".", "-"], "_", ILIAS_VERSION_NUMERIC))
1488  );
1489  };
1490  $c->globalScreen()->tool()->context()->stack()->clear();
1491  $c->globalScreen()->tool()->context()->claim()->main();
1492  }
1493 
1499  {
1500  $component_repository = $c["component.repository"];
1501  $component_factory = $c["component.factory"];
1502  foreach ($component_repository->getPlugins() as $pl) {
1503  if (!$pl->isActive()) {
1504  continue;
1505  }
1506  $plugin = $component_factory->getPlugin($pl->getId());
1507  $c['ui.renderer'] = $plugin->exchangeUIRendererAfterInitialization($c);
1508 
1509  foreach ($c->keys() as $key) {
1510  if (strpos($key, "ui.factory") === 0) {
1511  $c[$key] = $plugin->exchangeUIFactoryAfterInitialization($key, $c);
1512  }
1513  }
1514  }
1515  }
1516 
1520  protected static function replaceSuperGlobals(\ILIAS\DI\Container $container): void
1521  {
1523  $client_ini = $container['ilClientIniFile'];
1524 
1525  $replace_super_globals = (
1526  !$client_ini->variableExists('server', 'prevent_super_global_replacement') ||
1527  !(bool) $client_ini->readVariable('server', 'prevent_super_global_replacement')
1528  );
1529 
1530  if ($replace_super_globals) {
1531  $throwOnValueAssignment = defined('DEVMODE') && DEVMODE;
1532 
1533  $_GET = new SuperGlobalDropInReplacement($container['refinery'], $_GET, $throwOnValueAssignment);
1534  $_POST = new SuperGlobalDropInReplacement($container['refinery'], $_POST, $throwOnValueAssignment);
1535  $_COOKIE = new SuperGlobalDropInReplacement($container['refinery'], $_COOKIE, $throwOnValueAssignment);
1536  $_REQUEST = new SuperGlobalDropInReplacement($container['refinery'], $_REQUEST, $throwOnValueAssignment);
1537  }
1538  }
1539 
1540  protected static function initComponentService(\ILIAS\DI\Container $container): void
1541  {
1542  $init = new InitComponentService();
1543  $init->init($container);
1544  }
1545 
1549  protected static function initHTML(): void
1550  {
1551  global $ilUser, $DIC;
1552 
1553  if (ilContext::hasUser()) {
1554  // load style definitions
1555  // use the init function with plugin hook here, too
1556  self::initStyle();
1557 
1558  self::initUploadPolicies($DIC);
1559  }
1560 
1561  self::applyPluginManipulationsToUiFramework($GLOBALS["DIC"]);
1562  $tpl = new ilGlobalPageTemplate($DIC->globalScreen(), $DIC->ui(), $DIC->http());
1563  self::initGlobal("tpl", $tpl);
1564 
1565  if (ilContext::hasUser()) {
1566  $dispatcher = new \ILIAS\Init\StartupSequence\StartUpSequenceDispatcher($DIC);
1567  $dispatcher->dispatch();
1568  }
1569 
1570  self::initGlobal(
1571  "ilNavigationHistory",
1572  "ilNavigationHistory",
1573  "components/ILIAS/Navigation/classes/class.ilNavigationHistory.php"
1574  );
1575 
1576  self::initGlobal(
1577  "ilHelp",
1578  "ilHelpGUI",
1579  "components/ILIAS/Help/classes/class.ilHelpGUI.php"
1580  );
1581 
1582  if (DEVMODE) {
1583  $DIC["help.text_retriever"] = new ILIAS\UI\Help\TextRetriever\Echoing();
1584  } else {
1585  $DIC["help.text_retriever"] = new ilHelpUITextRetriever();
1586  }
1587 
1588  self::initGlobal(
1589  "ilToolbar",
1590  "ilToolbarGUI",
1591  "./components/ILIAS/UIComponent/Toolbar/classes/class.ilToolbarGUI.php"
1592  );
1593 
1594  self::initGlobal(
1595  "ilLocator",
1596  "ilLocatorGUI",
1597  "./components/ILIAS/Locator/classes/class.ilLocatorGUI.php"
1598  );
1599 
1600  self::initGlobal(
1601  "ilTabs",
1602  "ilTabsGUI",
1603  "./components/ILIAS/UIComponent/Tabs/classes/class.ilTabsGUI.php"
1604  );
1605 
1606  if (ilContext::hasUser()) {
1607  // the next line makes it impossible to save the offset somehow in a session for
1608  // a specific table (I tried it for the user administration).
1609  // its not posssible to distinguish whether it has been set to page 1 (=offset = 0)
1610  // or not set at all (then we want the last offset, e.g. being used from a session var).
1611  // So I added the wrapping if statement. Seems to work (hopefully).
1612  // Alex April 14th 2006
1613  // @todo not replaced by refinery due to unknown sideeffects
1614  if (isset($_GET['offset']) && $_GET['offset'] != "") {
1615  $_GET['offset'] = (int) $_GET['offset']; // old code
1616  }
1617 
1618  self::initGlobal("lti", "ilLTIViewGUI", "./components/ILIAS/LTIProvider/classes/class.ilLTIViewGUI.php");
1619  $GLOBALS["DIC"]["lti"]->init();
1620  self::initKioskMode($GLOBALS["DIC"]);
1621  }
1622  }
1623 
1627  protected static function blockedAuthentication(string $a_current_script): bool
1628  {
1629  global $DIC;
1630 
1632  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for WAC request.');
1633  return true;
1634  }
1636  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for sso request.');
1637  return true;
1638  }
1640  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for webdav request');
1641  return true;
1642  }
1644  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for shibboleth request.');
1645  return true;
1646  }
1648  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for lti provider requests.');
1649  return true;
1650  }
1652  ilLoggerFactory::getLogger('init')->debug('Blocked authentication for SAML request.');
1653  return true;
1654  }
1655  if (
1656  $a_current_script == "register.php" ||
1657  $a_current_script == "pwassist.php" ||
1658  $a_current_script == "confirmReg.php" ||
1659  $a_current_script == "il_securimage_play.php" ||
1660  $a_current_script == "il_securimage_show.php" ||
1661  $a_current_script == 'login.php'
1662  ) {
1663  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for script: ' . $a_current_script);
1664  return true;
1665  }
1666 
1667  // @todo refinery undefined
1668  $requestBaseClass = strtolower((string) ($_GET['baseClass'] ?? ''));
1669  if ($requestBaseClass == strtolower(ilStartUpGUI::class)) {
1670  $requestCmdClass = strtolower((string) ($_GET['cmdClass'] ?? ''));
1671  if (
1672  $requestCmdClass == strtolower(ilAccountRegistrationGUI::class) ||
1673  $requestCmdClass == strtolower(ilPasswordAssistanceGUI::class)
1674  ) {
1675  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for cmdClass: ' . $requestCmdClass);
1676  return true;
1677  }
1678  $cmd = $DIC->ctrl()->getCmd();
1679 
1680  if (in_array($cmd, [
1681  'showLegalDocuments',
1682  'showAccountMigration',
1683  'migrateAccount',
1684  'processCode',
1685  'showLoginPage',
1686  'showLogout',
1687  'doStandardAuthentication',
1688  'doCasAuthentication',
1689  ], true)) {
1690  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for cmd: ' . $cmd);
1691  return true;
1692  }
1693  }
1694 
1695  $target = '';
1696  if ($DIC->http()->wrapper()->query()->has('target')) {
1697  // @todo refinery undefined
1698  $target = $_GET['target'];
1699  }
1700 
1701  // #12884
1702  if (
1703  ($a_current_script == "goto.php" && $target == "impr_0") ||
1704  $requestBaseClass == strtolower(ilImprintGUI::class)
1705  ) {
1706  // @todo refinery undefind
1707  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for baseClass: ' . ($_GET['baseClass'] ?? ""));
1708  return true;
1709  }
1710 
1711  if (
1712  (strtolower($requestCmdClass ?? "") === strtolower(ilAccessibilityControlConceptGUI::class))
1713  ) {
1714  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for cmdClass: ' . $requestCmdClass);
1715  return true;
1716  }
1717 
1718  if ($a_current_script == 'goto.php' && in_array($target, array(
1719  'usr_registration',
1720  'usr_nameassist',
1721  'usr_pwassist',
1722  'usr_agreement'
1723  ))) {
1724  ilLoggerFactory::getLogger('auth')->debug('Blocked authentication for goto target: ' . $target);
1725  return true;
1726  }
1727 
1728 
1729  $current_ref_id = $DIC->http()->wrapper()->query()->has('ref_id')
1730  ? $DIC->http()->wrapper()->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int())
1731  : null;
1732 
1733  if (null !== $current_ref_id
1734  && $DIC->user()->getId() === 0
1735  && $DIC->access()->checkAccessOfUser(
1737  'visible',
1738  '',
1739  $current_ref_id
1740  )) {
1741  return true;
1742  }
1743 
1744 
1745  ilLoggerFactory::getLogger('auth')->debug('Authentication required');
1746  return false;
1747  }
1748 
1752  protected static function translateMessage(string $a_message_id, ?array $a_message_static = null): string
1753  {
1754  global $ilDB, $lng, $ilSetting, $ilClientIniFile, $ilUser;
1755 
1756  // current language
1757  if (!$lng) {
1758  $lang = "en";
1759  if ($ilUser) {
1760  $lang = $ilUser->getLanguage();
1761  } elseif (isset($_REQUEST["lang"])) {
1762  $lang = (string) $_REQUEST["lang"];
1763  } elseif ($ilSetting) {
1764  $lang = $ilSetting->get("language", '');
1765  } elseif ($ilClientIniFile) {
1766  $lang = $ilClientIniFile->readVariable("language", "default");
1767  }
1768  } else {
1769  $lang = $lng->getLangKey();
1770  }
1771 
1772  $message = "";
1773  if ($ilDB && $a_message_id) {
1774  if (!$lng) {
1775  $lng = new ilLanguage($lang);
1776  }
1777 
1778  $lng->loadLanguageModule("init");
1779  $message = $lng->txt($a_message_id);
1780  } elseif (is_array($a_message_static)) {
1781  if (!isset($a_message_static[$lang])) {
1782  $lang = "en";
1783  }
1784  $message = $a_message_static[$lang];
1785  }
1786  return $message;
1787  }
1788 
1792  protected static function redirect(
1793  string $a_target,
1794  string $a_message_id = '',
1795  ?array $a_message_static = null
1796  ): void {
1797  // #12739
1798  if (defined("ILIAS_HTTP_PATH") &&
1799  !stristr($a_target, ILIAS_HTTP_PATH)) {
1800  $a_target = ILIAS_HTTP_PATH . "/" . $a_target;
1801  }
1802 
1803  foreach (['ext_uid', 'soap_pw'] as $param) {
1804  if (false === strpos(
1805  $a_target,
1806  $param . '='
1807  ) && isset($GLOBALS['DIC']->http()->request()->getQueryParams()[$param])) {
1808  $a_target = \ilUtil::appendUrlParameterString($a_target, $param . '=' . \ilUtil::stripSlashes(
1809  $GLOBALS['DIC']->http()->request()->getQueryParams()[$param]
1810  ));
1811  }
1812  }
1813 
1815  ilUtil::redirect($a_target);
1816  } else {
1817  $message = self::translateMessage($a_message_id, $a_message_static);
1818 
1819  // user-directed linked message
1821  $link = self::translateMessage(
1822  "init_error_redirect_click",
1823  array("en" => 'Please click to continue.',
1824  "de" => 'Bitte klicken um fortzufahren.'
1825  )
1826  );
1827  $mess = $message .
1828  '<br /><a href="' . $a_target . '">' . $link . '</a>';
1829  } // plain text
1830  else {
1831  // not much we can do here
1832  $mess = $message;
1833 
1834  if (!trim($mess)) {
1835  $mess = self::translateMessage(
1836  "init_error_redirect_info",
1837  array("en" => 'Redirect not supported by context.',
1838  "de" => 'Weiterleitungen werden durch Kontext nicht unterstützt.'
1839  )
1840  ) .
1841  ' (' . $a_target . ')';
1842  }
1843  }
1844 
1845  self::abortAndDie($mess);
1846  }
1847  }
1848 
1849  public static function redirectToStartingPage(string $target = ''): void
1850  {
1851  global $DIC;
1852 
1853  // fallback, should never happen
1854  if ($DIC->user()->getId() === ANONYMOUS_USER_ID) {
1855  self::goToPublicSection();
1856  return;
1857  }
1858 
1859  if (
1860  $target === '' &&
1861  $DIC->http()->wrapper()->query()->has('target')
1862  ) {
1863  $target = $DIC->http()->wrapper()->query()->retrieve(
1864  'target',
1865  $DIC->refinery()->kindlyTo()->string()
1866  );
1867  }
1868 
1869  // for password change and incomplete profile
1870  // see ilDashboardGUI
1871  if ($target === '') {
1872  ilLoggerFactory::getLogger('init')->debug('Redirect to default starting page');
1873  $DIC->ctrl()->redirectToURL(ilUserUtil::getStartingPointAsUrl());
1874  } else {
1875  ilLoggerFactory::getLogger('init')->debug('Redirect to target: ' . $target);
1876  $DIC->ctrl()->redirectToURL("goto.php?target=" . $target);
1877  }
1878  }
1879 
1880  private static function initBackgroundTasks(\ILIAS\DI\Container $c): void
1881  {
1882  global $ilIliasIniFile;
1883 
1884  $n_of_tasks = $ilIliasIniFile->readVariable("background_tasks", "number_of_concurrent_tasks");
1885  $sync = $ilIliasIniFile->readVariable("background_tasks", "concurrency");
1886 
1887  $n_of_tasks = $n_of_tasks ?: 5;
1888  $sync = $sync ?: 'sync'; // The default value is sync.
1889 
1890  $c["bt.task_factory"] = function ($c) {
1891  return new \ILIAS\BackgroundTasks\Implementation\Tasks\BasicTaskFactory($c["di.injector"]);
1892  };
1893 
1894  $c["bt.persistence"] = function ($c) {
1895  return \ILIAS\BackgroundTasks\Implementation\Persistence\BasicPersistence::instance($c->database());
1896  };
1897 
1898  $c["bt.injector"] = function ($c) {
1899  return new \ILIAS\BackgroundTasks\Dependencies\Injector($c, new BaseDependencyMap());
1900  };
1901 
1902  $c["bt.task_manager"] = function ($c) use ($sync) {
1903  if ($sync == 'sync') {
1904  return new \ILIAS\BackgroundTasks\Implementation\TaskManager\SyncTaskManager($c["bt.persistence"]);
1905  } elseif ($sync == 'async') {
1906  return new \ILIAS\BackgroundTasks\Implementation\TaskManager\AsyncTaskManager($c["bt.persistence"]);
1907  } else {
1908  throw new ilException("The supported Background Task Managers are sync and async. $sync given.");
1909  }
1910  };
1911  }
1912 
1913  private static function initInjector(\ILIAS\DI\Container $c): void
1914  {
1915  $c["di.dependency_map"] = function ($c) {
1916  return new \ILIAS\BackgroundTasks\Dependencies\DependencyMap\BaseDependencyMap();
1917  };
1918 
1919  $c["di.injector"] = function ($c) {
1920  return new \ILIAS\BackgroundTasks\Dependencies\Injector($c, $c["di.dependency_map"]);
1921  };
1922  }
1923 
1924  private static function initKioskMode(\ILIAS\DI\Container $c): void
1925  {
1926  $c["service.kiosk_mode"] = function ($c) {
1927  return new ilKioskModeService(
1928  $c['ilCtrl'],
1929  $c['lng'],
1930  $c['ilAccess'],
1931  $c['objDefinition']
1932  );
1933  };
1934  }
1935 
1936  private static function initLearningObjectMetadata(\ILIAS\DI\Container $c): void
1937  {
1938  $c['learning_object_metadata'] = function ($c) {
1939  return new \ILIAS\MetaData\Services\Services($c);
1940  };
1941  }
1942 }
static initHTTPServices(\ILIAS\DI\Container $container)
then(callable $f)
Get a new result from the callable or do nothing if this is an error.
static initAvatar(\ILIAS\DI\Container $c)
static handleMaintenanceMode()
handle maintenance mode
$_GET["client_id"]
Definition: webdav.php:30
static hasUser()
Based on user authentication?
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
const CONTEXT_WAC
const CONTEXT_HTTP
HTTP Auth used for WebDAV and CalDAV If a special handling for WebDAV or CalDAV is required overwrite...
Class InitCtrlService wraps the initialization of ilCtrl.
const ANONYMOUS_USER_ID
Definition: constants.php:27
static getLogger(string $a_component_id)
Get component logger.
This describes a facility that the UI framework can use to retrieve some help text.
static applyPluginManipulationsToUiFramework(\ILIAS\DI\Container $c)
static usesHTTP()
Uses HTTP aka browser.
static initFileUploadService(\ILIAS\DI\Container $dic)
Initializes the file upload service.
const ROOT_FOLDER_ID
Definition: constants.php:32
static initHTML()
init HTML output (level 3)
static orderBy(string $orderBy, string $orderDirection='ASC')
const CONTEXT_WEBDAV
static _exists(string $a_session_id)
Check whether session exists.
Interface Observer Contains several chained tasks and infos about them.
static initKioskMode(\ILIAS\DI\Container $c)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Database Session Handling.
static abortAndDie(string $a_message)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static updateAccess(ilObjUser $user)
Responsible for loading the Resource Storage into the dependency injection container of ILIAS...
const SESSION_CLOSE_LOGIN
static determineClient()
This method determines the current client and sets the constant CLIENT_ID.
static init(Container $c)
Definition: Init.php:36
static isAuthenticationForced()
Check if authentication is should be forced.
const CONTEXT_LTI_PROVIDER
static initDefaultTimeZone(ilIniFile $ini)
Initialize default timezone from system settings.
const CONTEXT_SHIBBOLETH
static goToPublicSection()
go to public section
static blockedAuthentication(string $a_current_script)
Block authentication based on current request.
$c
Definition: deliver.php:25
static resumeUserSession()
Resume an existing user session.
static setSessionHandler()
set session handler to db Used in Soap/CAS
static initSession()
Init auth session.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
Class SuperGlobalDropInReplacement This Class wraps SuperGlobals such as $_GET and $_POST to prevent ...
static getGlobalInstance()
Builds the global language object.
$ilErr
Definition: raiseError.php:33
$container
Definition: wac.php:36
static initBackgroundTasks(\ILIAS\DI\Container $c)
static initAccessHandling()
$ilAccess and $rbac...
static getWrapper(string $a_type)
const SESSION_CLOSE_EXPIRE
static initLegalDocuments(Container $c)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static initCron(\ILIAS\DI\Container $c)
static redirect(string $a_target, string $a_message_id='', ?array $a_message_static=null)
Redirects to target url if context supports it.
static initILIAS()
ilias initialisation
static handleForcedAuthentication()
$ilIliasIniFile
Definition: server.php:35
const ILIAS_VERSION_NUMERIC
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static initDatabase()
initialise database object $ilDB
static initCustomObjectIcons(\ILIAS\DI\Container $c)
const CONTEXT_SAML
$GLOBALS["DIC"]
Definition: wac.php:53
$log
Definition: result.php:32
static initClientIniFile()
This method provides a global instance of class ilIniFile for the client.ini.php file in variable $il...
static setCookie(string $a_cookie_name, string $a_cookie_value='', bool $a_also_set_super_global=true, bool $a_set_cookie_invalid=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static hasHTML()
Has HTML output.
Class HTTPServicesTest.
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
$param
Definition: xapitoken.php:46
const CLIENT_ID
Definition: constants.php:41
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Ok.php:30
global $DIC
Definition: shib_login.php:22
static initLearningObjectMetadata(\ILIAS\DI\Container $c)
static initGlobal(string $a_name, $a_class, ?string $a_source_file=null, ?bool $destroy_existing=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static initLocale()
Init Locale.
static requireCommonIncludes()
get common include code files
const CLIENT_WEB_DIR
Definition: constants.php:47
static initLog()
Init log instance.
static initStyle()
provide $styleDefinition object
static getFallbackInstance()
Builds a global default language instance.
static initClient()
Init client-based objects (level 1)
const ILIAS_DATA_DIR
Definition: constants.php:44
static initIliasIniFile()
This method provides a global instance of class ilIniFile for the ilias.ini.php file in variable $ilI...
Class ilFileServicesFilenameSanitizer.
static _isAnonymous(int $usr_id)
static redirect(string $a_script)
const SESSION_CLOSE_PUBLIC
static _destroy($a_session_id, ?int $a_closing_context=null, $a_expired_at=null)
Destroy session.
$lang
Definition: xapiexit.php:25
static initUploadPolicies(\ILIAS\DI\Container $dic)
static translateMessage(string $a_message_id, ?array $a_message_static=null)
Translate message if possible.
static removeUnsafeCharacters()
Remove unsafe characters from GET.
static initCore()
Init core objects (level 0)
static setSessionCookieParams()
set session cookie params
static supportsPersistentSessions()
Check if context supports persistent session handling.
static redirectToStartingPage(string $target='')
Central entry point for users of the service.
global $ilSetting
Definition: privfeed.php:31
static setClosingContext(int $a_context)
set closing context (for statistics)
static initClient()
Init client.
global $lng
Definition: privfeed.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A transformation is a function from one datatype to another.
static initInjector(\ILIAS\DI\Container $c)
static getClientIdTransformation()
Refinery is not initialized early enough to provide a transformation to be used with the implementat...
static initComponentService(\ILIAS\DI\Container $container)
$dic
Definition: result.php:31
$client_id
Definition: ltiauth.php:66
$message
Definition: xapiexit.php:31
static goToLogin()
go to login
static initAccessibilityControlConcept(\ILIAS\DI\Container $c)
static getInstance(\ilLogger $logger)
Get instance.
static getType()
Get context type.
static initGlobalScreen(\ILIAS\DI\Container $c)
static initUserAccount()
Init user with current account id.
$_COOKIE[session_name()]
Definition: xapitoken.php:54
static recursivelyRemoveUnsafeCharacters($var)
$cookie_path
Definition: index.php:29
const CONTEXT_SOAP
static handleErrorReporting()
Set error reporting level.
static initSettings()
initialise $ilSettings object and define constants Used in Soap
const CONTEXT_APACHE_SSO
static initUser()
Init user / authentification (level 2)
const IL_COOKIE_PATH(isset($_GET['client_id']))
Definition: index.php:47
Responsible for loading the HTTP Service into the dependency injection container of ILIAS...
static getRootLogger()
The unique root logger has a fixed error level.
const ILIAS_WEB_DIR
Definition: constants.php:45
static supportsRedirects()
Are redirects supported?
static handleDevMode()
Prepare developer tools.