friendica-github/index.php

33 lines
1.1 KiB
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
// 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 23:48:07 +00:00
2019-08-05 07:02:55 +00:00
use Dice\Dice;
2020-12-09 22:10:27 +00:00
$start_time = microtime(true);
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 23:48:07 +00:00
2024-12-19 20:07:37 +00:00
$request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
2019-08-05 07:02:55 +00:00
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
2023-07-23 01:21:41 +00:00
/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */
$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class);
$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies'));
2024-12-19 20:07:37 +00:00
$dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $request->getServerParams()], Dice::CHAIN_CALL]]]);
\Friendica\DI::init($dice);
2021-10-23 18:46:17 +00:00
\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
2024-12-18 22:16:34 +00:00
$a = \Friendica\App::fromDice($dice);
$a->processRequest($request, $start_time);