2019-07-20 23:22:10 +00:00
|
|
|
<?php
|
2020-02-09 15:34:23 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
* The configuration defines "complex" dependencies inside Friendica
|
|
|
|
* So this classes shouldn't be simple or their dependencies are already defined here.
|
|
|
|
*
|
|
|
|
* This kind of dependencies are NOT required to be defined here:
|
|
|
|
* - $a = new ClassA(new ClassB());
|
|
|
|
* - $a = new ClassA();
|
|
|
|
* - $a = new ClassA(Configuration $configuration);
|
|
|
|
*
|
|
|
|
* This kind of dependencies SHOULD be defined here:
|
|
|
|
* - $a = new ClassA();
|
|
|
|
* $b = $a->create();
|
|
|
|
*
|
|
|
|
* - $a = new ClassA($creationPassedVariable);
|
|
|
|
*
|
|
|
|
*/
|
2019-07-20 23:22:10 +00:00
|
|
|
|
|
|
|
use Dice\Dice;
|
|
|
|
use Friendica\App;
|
2019-08-03 18:48:56 +00:00
|
|
|
use Friendica\Core\Cache;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Core\Config;
|
2021-10-23 09:29:16 +00:00
|
|
|
use Friendica\Core\PConfig;
|
2020-01-18 19:59:39 +00:00
|
|
|
use Friendica\Core\L10n;
|
2021-10-23 09:36:37 +00:00
|
|
|
use Friendica\Core\Lock;
|
2021-10-26 19:44:29 +00:00
|
|
|
use Friendica\Core\Session\Capability\IHandleSessions;
|
2022-10-18 20:20:04 +00:00
|
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
2021-10-23 10:11:38 +00:00
|
|
|
use Friendica\Core\Storage\Repository\StorageManager;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Database\Database;
|
2022-07-12 21:21:16 +00:00
|
|
|
use Friendica\Database\Definition\DbaDefinition;
|
|
|
|
use Friendica\Database\Definition\ViewDefinition;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Factory;
|
2021-10-23 10:11:38 +00:00
|
|
|
use Friendica\Core\Storage\Capability\ICanWriteToStorage;
|
2020-01-01 15:56:56 +00:00
|
|
|
use Friendica\Model\User\Cookie;
|
2021-08-19 11:03:45 +00:00
|
|
|
use Friendica\Model\Log\ParsedLogIterator;
|
2020-03-04 21:56:16 +00:00
|
|
|
use Friendica\Network;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Util;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
return [
|
2019-08-12 16:13:58 +00:00
|
|
|
'*' => [
|
2019-07-24 09:17:55 +00:00
|
|
|
// marks all class result as shared for other creations, so there's just
|
|
|
|
// one instance for the whole execution
|
|
|
|
'shared' => true,
|
|
|
|
],
|
2019-08-12 16:13:58 +00:00
|
|
|
'$basepath' => [
|
|
|
|
'instanceOf' => Util\BasePath::class,
|
|
|
|
'call' => [
|
2019-07-20 23:22:10 +00:00
|
|
|
['getPath', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
'constructParams' => [
|
|
|
|
dirname(__FILE__, 2),
|
|
|
|
$_SERVER
|
|
|
|
]
|
|
|
|
],
|
2020-01-19 21:23:44 +00:00
|
|
|
Util\BasePath::class => [
|
2019-07-20 23:22:10 +00:00
|
|
|
'constructParams' => [
|
|
|
|
dirname(__FILE__, 2),
|
|
|
|
$_SERVER
|
|
|
|
]
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Config\Util\ConfigFileLoader::class => [
|
|
|
|
'instanceOf' => Config\Factory\Config::class,
|
2021-09-12 11:44:29 +00:00
|
|
|
'call' => [
|
|
|
|
['createConfigFileLoader', [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
$_SERVER,
|
|
|
|
], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
],
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Config\ValueObject\Cache::class => [
|
|
|
|
'instanceOf' => Config\Factory\Config::class,
|
2019-07-20 23:22:10 +00:00
|
|
|
'call' => [
|
2020-10-06 18:06:52 +00:00
|
|
|
['createCache', [$_SERVER], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
],
|
|
|
|
],
|
2020-01-19 21:23:44 +00:00
|
|
|
App\Mode::class => [
|
2019-08-12 16:13:58 +00:00
|
|
|
'call' => [
|
2019-09-17 14:47:00 +00:00
|
|
|
['determineRunMode', [true, $_SERVER], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
['determine', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Config\Capability\IManageConfigValues::class => [
|
|
|
|
'instanceOf' => Config\Factory\Config::class,
|
2019-08-12 16:13:58 +00:00
|
|
|
'call' => [
|
2021-10-23 09:29:16 +00:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
],
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
PConfig\Capability\IManagePersonalConfigValues::class => [
|
|
|
|
'instanceOf' => PConfig\Factory\PConfig::class,
|
2019-08-12 16:13:58 +00:00
|
|
|
'call' => [
|
2021-10-23 09:29:16 +00:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
]
|
|
|
|
],
|
2022-07-12 21:21:16 +00:00
|
|
|
DbaDefinition::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
],
|
|
|
|
'call' => [
|
|
|
|
['load', [false], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
ViewDefinition::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
],
|
|
|
|
'call' => [
|
|
|
|
['load', [false], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2020-01-19 21:23:44 +00:00
|
|
|
Database::class => [
|
2019-07-20 23:22:10 +00:00
|
|
|
'constructParams' => [
|
2020-01-01 15:56:56 +00:00
|
|
|
[Dice::INSTANCE => \Psr\Log\NullLogger::class],
|
2019-07-20 23:22:10 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
/**
|
2019-08-15 15:23:00 +00:00
|
|
|
* Creates the App\BaseURL
|
2019-07-20 23:22:10 +00:00
|
|
|
*
|
|
|
|
* Same as:
|
2019-08-15 15:23:00 +00:00
|
|
|
* $baseURL = new App\BaseURL($configuration, $_SERVER);
|
2019-07-20 23:22:10 +00:00
|
|
|
*/
|
2019-08-15 15:23:00 +00:00
|
|
|
App\BaseURL::class => [
|
2019-07-20 23:22:10 +00:00
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER,
|
|
|
|
],
|
|
|
|
],
|
2019-08-15 18:52:42 +00:00
|
|
|
App\Page::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
],
|
|
|
|
],
|
2019-07-20 23:22:10 +00:00
|
|
|
/**
|
|
|
|
* Create a Logger, which implements the LoggerInterface
|
|
|
|
*
|
|
|
|
* Same as:
|
|
|
|
* $loggerFactory = new Factory\LoggerFactory();
|
|
|
|
* $logger = $loggerFactory->create($channel, $configuration, $profiler);
|
|
|
|
*
|
|
|
|
* Attention1: We can use DICE for detecting dependencies inside "chained" calls too
|
|
|
|
* Attention2: The variable "$channel" is passed inside the creation of the dependencies per:
|
|
|
|
* $app = $dice->create(App::class, [], ['$channel' => 'index']);
|
|
|
|
* and is automatically passed as an argument with the same name
|
|
|
|
*/
|
2019-08-12 16:13:58 +00:00
|
|
|
LoggerInterface::class => [
|
2021-10-23 10:22:27 +00:00
|
|
|
'instanceOf' => \Friendica\Core\Logger\Factory\Logger::class,
|
2019-09-17 14:47:00 +00:00
|
|
|
'constructParams' => [
|
|
|
|
'index',
|
|
|
|
],
|
2019-07-20 23:22:10 +00:00
|
|
|
'call' => [
|
2021-10-29 06:03:59 +00:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
2019-07-20 23:22:10 +00:00
|
|
|
],
|
|
|
|
],
|
2019-08-12 16:13:58 +00:00
|
|
|
'$devLogger' => [
|
2021-10-23 10:22:27 +00:00
|
|
|
'instanceOf' => \Friendica\Core\Logger\Factory\Logger::class,
|
2019-09-17 14:47:00 +00:00
|
|
|
'constructParams' => [
|
|
|
|
'dev',
|
|
|
|
],
|
2019-07-20 23:22:10 +00:00
|
|
|
'call' => [
|
|
|
|
['createDev', [], Dice::CHAIN_CALL],
|
|
|
|
]
|
2019-07-24 09:17:55 +00:00
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Cache\Capability\ICanCache::class => [
|
|
|
|
'instanceOf' => Cache\Factory\Cache::class,
|
2019-08-04 08:26:53 +00:00
|
|
|
'call' => [
|
2021-12-13 18:40:38 +00:00
|
|
|
['createLocal', [], Dice::CHAIN_CALL],
|
2019-08-03 18:48:56 +00:00
|
|
|
],
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Cache\Capability\ICanCacheInMemory::class => [
|
|
|
|
'instanceOf' => Cache\Factory\Cache::class,
|
2019-08-04 13:42:39 +00:00
|
|
|
'call' => [
|
2021-12-13 18:40:38 +00:00
|
|
|
['createLocal', [], Dice::CHAIN_CALL],
|
2019-08-04 13:42:39 +00:00
|
|
|
],
|
2019-08-03 18:48:56 +00:00
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
Lock\Capability\ICanLock::class => [
|
|
|
|
'instanceOf' => Lock\Factory\Lock::class,
|
2019-08-04 08:26:53 +00:00
|
|
|
'call' => [
|
2019-08-03 18:48:56 +00:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2019-08-12 16:13:58 +00:00
|
|
|
App\Arguments::class => [
|
|
|
|
'instanceOf' => App\Arguments::class,
|
|
|
|
'call' => [
|
|
|
|
['determine', [$_SERVER, $_GET], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2021-10-24 18:43:59 +00:00
|
|
|
\Friendica\Core\System::class => [
|
2019-08-16 09:06:37 +00:00
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
],
|
|
|
|
],
|
2019-09-26 19:18:01 +00:00
|
|
|
App\Router::class => [
|
|
|
|
'constructParams' => [
|
2020-07-27 05:57:44 +00:00
|
|
|
$_SERVER,
|
|
|
|
__DIR__ . '/routes.config.php',
|
2021-11-19 21:47:49 +00:00
|
|
|
[Dice::INSTANCE => Dice::SELF],
|
2020-07-27 05:57:44 +00:00
|
|
|
null
|
2019-09-26 19:18:01 +00:00
|
|
|
],
|
|
|
|
],
|
2019-10-10 14:39:04 +00:00
|
|
|
L10n::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER, $_GET
|
|
|
|
],
|
|
|
|
],
|
2021-10-26 19:44:29 +00:00
|
|
|
IHandleSessions::class => [
|
|
|
|
'instanceOf' => \Friendica\Core\Session\Factory\Session::class,
|
2019-12-09 23:44:56 +00:00
|
|
|
'call' => [
|
|
|
|
['createSession', [$_SERVER], Dice::CHAIN_CALL],
|
|
|
|
['start', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2022-10-18 20:20:04 +00:00
|
|
|
IHandleUserSessions::class => [
|
|
|
|
'instanceOf' => \Friendica\Core\Session\Model\UserSession::class,
|
|
|
|
],
|
2020-01-01 15:56:56 +00:00
|
|
|
Cookie::class => [
|
|
|
|
'constructParams' => [
|
2022-06-23 20:42:35 +00:00
|
|
|
$_COOKIE
|
2020-01-01 15:56:56 +00:00
|
|
|
],
|
2020-01-05 00:58:49 +00:00
|
|
|
],
|
2021-10-23 10:11:38 +00:00
|
|
|
ICanWriteToStorage::class => [
|
2020-01-05 00:58:49 +00:00
|
|
|
'instanceOf' => StorageManager::class,
|
|
|
|
'call' => [
|
|
|
|
['getBackend', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2021-10-29 06:03:59 +00:00
|
|
|
Network\HTTPClient\Capability\ICanSendHttpRequests::class => [
|
2021-10-23 10:50:31 +00:00
|
|
|
'instanceOf' => Network\HTTPClient\Factory\HttpClient::class,
|
2021-08-22 22:14:18 +00:00
|
|
|
'call' => [
|
|
|
|
['createClient', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
2021-06-05 20:36:45 +00:00
|
|
|
],
|
|
|
|
Factory\Api\Mastodon\Error::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER
|
|
|
|
],
|
|
|
|
],
|
2021-08-19 11:03:45 +00:00
|
|
|
ParsedLogIterator::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => Util\ReversedFileReader::class],
|
|
|
|
]
|
2021-08-22 22:14:18 +00:00
|
|
|
],
|
2021-11-06 19:21:01 +00:00
|
|
|
\Friendica\Core\Worker\Repository\Process::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER
|
|
|
|
],
|
|
|
|
],
|
2022-06-23 20:42:35 +00:00
|
|
|
App\Request::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER
|
|
|
|
],
|
|
|
|
]
|
2019-07-20 23:22:10 +00:00
|
|
|
];
|