2010-07-01 16:48:07 -07:00
|
|
|
<?php
|
2024-08-23 15:11:15 +02:00
|
|
|
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
2010-07-01 16:48:07 -07:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
use Dice\Dice;
|
|
|
|
|
2020-12-09 22:10:27 +00:00
|
|
|
$start_time = microtime(true);
|
|
|
|
|
2019-01-18 19:10:05 +00:00
|
|
|
if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
|
|
die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
|
|
|
|
}
|
|
|
|
|
2018-12-27 17:17:02 +00:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
2010-07-01 16:48:07 -07:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
|
2023-07-23 03:21:41 +02:00
|
|
|
/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */
|
|
|
|
$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class);
|
2023-07-02 23:56:56 +02:00
|
|
|
$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies'));
|
2019-09-17 16:47:00 +02:00
|
|
|
$dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $_SERVER], Dice::CHAIN_CALL]]]);
|
2016-07-02 08:54:57 +02:00
|
|
|
|
2019-12-15 23:28:01 +01:00
|
|
|
\Friendica\DI::init($dice);
|
2019-07-21 20:24:16 +02:00
|
|
|
|
2021-10-23 20:46:17 +02:00
|
|
|
\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
|
|
|
|
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = \Friendica\DI::app();
|
2019-02-19 01:56:41 +01:00
|
|
|
|
2021-01-01 19:35:29 +00:00
|
|
|
\Friendica\DI::mode()->setExecutor(\Friendica\App\Mode::INDEX);
|
|
|
|
|
2019-08-12 18:13:58 +02:00
|
|
|
$a->runFrontend(
|
|
|
|
$dice->create(\Friendica\App\Router::class),
|
2021-10-26 21:44:29 +02:00
|
|
|
$dice->create(\Friendica\Core\PConfig\Capability\IManagePersonalConfigValues::class),
|
2020-09-30 16:53:18 +02:00
|
|
|
$dice->create(\Friendica\Security\Authentication::class),
|
2020-12-09 22:10:27 +00:00
|
|
|
$dice->create(\Friendica\App\Page::class),
|
2023-01-08 01:17:06 -05:00
|
|
|
$dice->create(\Friendica\Content\Nav::class),
|
2022-12-26 21:17:32 +01:00
|
|
|
$dice->create(Friendica\Module\Special\HTTPException::class),
|
2021-11-28 14:01:13 +01:00
|
|
|
new \Friendica\Util\HTTPInputData($_SERVER),
|
2023-02-18 20:47:52 +01:00
|
|
|
$start_time,
|
|
|
|
$_SERVER
|
2019-08-12 18:13:58 +02:00
|
|
|
);
|