friendica/bin/console.php

42 lines
1.4 KiB
PHP
Raw Normal View History

2018-03-18 18:26:51 +01:00
#!/usr/bin/env php
2018-03-18 10:12:39 +01:00
<?php
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2018-03-18 10:12:39 +01:00
if (php_sapi_name() !== 'cli') {
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
exit();
}
2019-08-05 09:02:55 +02:00
use Dice\Dice;
2022-10-17 21:25:04 +02:00
use Friendica\DI;
2019-09-17 16:47:00 +02:00
use Psr\Log\LoggerInterface;
2019-08-05 09:02:55 +02:00
require dirname(__DIR__) . '/vendor/autoload.php';
2018-03-18 10:12:39 +01:00
2019-08-05 09:02:55 +02:00
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
2019-09-17 16:47:00 +02:00
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['console']]);
2022-10-17 21:25:04 +02:00
/// @fixme Necessary until Hooks inside the Logger can get loaded without the DI-class
DI::init($dice);
2021-10-23 20:46:17 +02:00
\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
(new Friendica\Core\Console($dice, $argv))->execute();