2019-07-20 19:22:10 -04:00
|
|
|
<?php
|
2020-02-09 10:34:23 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 10:34:23 -05: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 19:22:10 -04:00
|
|
|
|
|
|
|
use Dice\Dice;
|
|
|
|
use Friendica\App;
|
2019-08-03 14:48:56 -04:00
|
|
|
use Friendica\Core\Cache;
|
2019-07-20 19:22:10 -04:00
|
|
|
use Friendica\Core\Config;
|
2020-01-18 14:59:39 -05:00
|
|
|
use Friendica\Core\L10n;
|
2019-08-04 04:26:53 -04:00
|
|
|
use Friendica\Core\Lock\ILock;
|
2020-01-01 10:56:56 -05:00
|
|
|
use Friendica\Core\Process;
|
2019-12-09 18:44:56 -05:00
|
|
|
use Friendica\Core\Session\ISession;
|
2020-01-04 19:58:49 -05:00
|
|
|
use Friendica\Core\StorageManager;
|
2019-07-20 19:22:10 -04:00
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Factory;
|
2020-01-04 19:58:49 -05:00
|
|
|
use Friendica\Model\Storage\IStorage;
|
2020-01-01 10:56:56 -05:00
|
|
|
use Friendica\Model\User\Cookie;
|
2020-03-04 16:56:16 -05:00
|
|
|
use Friendica\Network;
|
2019-07-20 19:22:10 -04:00
|
|
|
use Friendica\Util;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
return [
|
2019-08-12 12:13:58 -04:00
|
|
|
'*' => [
|
2019-07-24 05:17:55 -04: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 12:13:58 -04:00
|
|
|
'$basepath' => [
|
|
|
|
'instanceOf' => Util\BasePath::class,
|
|
|
|
'call' => [
|
2019-07-20 19:22:10 -04:00
|
|
|
['getPath', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
'constructParams' => [
|
|
|
|
dirname(__FILE__, 2),
|
|
|
|
$_SERVER
|
|
|
|
]
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
Util\BasePath::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'constructParams' => [
|
|
|
|
dirname(__FILE__, 2),
|
|
|
|
$_SERVER
|
|
|
|
]
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
Util\ConfigFileLoader::class => [
|
2019-08-12 12:13:58 -04:00
|
|
|
'shared' => true,
|
2019-07-20 19:22:10 -04:00
|
|
|
'constructParams' => [
|
2020-10-06 14:56:20 -04:00
|
|
|
[Dice::INSTANCE => '$basepath'],
|
2019-07-20 19:22:10 -04:00
|
|
|
],
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
Config\Cache::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'instanceOf' => Factory\ConfigFactory::class,
|
|
|
|
'call' => [
|
2020-10-06 14:06:52 -04:00
|
|
|
['createCache', [$_SERVER], Dice::CHAIN_CALL],
|
2019-07-20 19:22:10 -04:00
|
|
|
],
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
App\Mode::class => [
|
2019-08-12 12:13:58 -04:00
|
|
|
'call' => [
|
2019-09-17 10:47:00 -04:00
|
|
|
['determineRunMode', [true, $_SERVER], Dice::CHAIN_CALL],
|
2019-07-20 19:22:10 -04:00
|
|
|
['determine', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
Config\IConfig::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'instanceOf' => Factory\ConfigFactory::class,
|
2019-08-12 12:13:58 -04:00
|
|
|
'call' => [
|
2019-07-20 19:22:10 -04:00
|
|
|
['createConfig', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
\Friendica\Core\PConfig\IPConfig::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'instanceOf' => Factory\ConfigFactory::class,
|
2019-08-12 12:13:58 -04:00
|
|
|
'call' => [
|
2019-07-20 19:22:10 -04:00
|
|
|
['createPConfig', [], Dice::CHAIN_CALL],
|
|
|
|
]
|
|
|
|
],
|
2020-01-19 16:23:44 -05:00
|
|
|
Database::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'constructParams' => [
|
2020-01-01 10:56:56 -05:00
|
|
|
[Dice::INSTANCE => \Psr\Log\NullLogger::class],
|
2019-07-20 19:22:10 -04:00
|
|
|
],
|
|
|
|
],
|
|
|
|
/**
|
2019-08-15 11:23:00 -04:00
|
|
|
* Creates the App\BaseURL
|
2019-07-20 19:22:10 -04:00
|
|
|
*
|
|
|
|
* Same as:
|
2019-08-15 11:23:00 -04:00
|
|
|
* $baseURL = new App\BaseURL($configuration, $_SERVER);
|
2019-07-20 19:22:10 -04:00
|
|
|
*/
|
2019-08-15 11:23:00 -04:00
|
|
|
App\BaseURL::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER,
|
|
|
|
],
|
|
|
|
],
|
2019-08-15 14:52:42 -04:00
|
|
|
App\Page::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
|
|
|
],
|
|
|
|
],
|
2019-07-20 19:22:10 -04: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 12:13:58 -04:00
|
|
|
LoggerInterface::class => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'instanceOf' => Factory\LoggerFactory::class,
|
2019-09-17 10:47:00 -04:00
|
|
|
'constructParams' => [
|
|
|
|
'index',
|
|
|
|
],
|
2019-07-20 19:22:10 -04:00
|
|
|
'call' => [
|
2019-09-17 10:47:00 -04:00
|
|
|
['create', ['index'], Dice::CHAIN_CALL],
|
2019-07-20 19:22:10 -04:00
|
|
|
],
|
|
|
|
],
|
2019-08-12 12:13:58 -04:00
|
|
|
'$devLogger' => [
|
2019-07-20 19:22:10 -04:00
|
|
|
'instanceOf' => Factory\LoggerFactory::class,
|
2019-09-17 10:47:00 -04:00
|
|
|
'constructParams' => [
|
|
|
|
'dev',
|
|
|
|
],
|
2019-07-20 19:22:10 -04:00
|
|
|
'call' => [
|
|
|
|
['createDev', [], Dice::CHAIN_CALL],
|
|
|
|
]
|
2019-07-24 05:17:55 -04:00
|
|
|
],
|
2019-08-12 12:13:58 -04:00
|
|
|
Cache\ICache::class => [
|
2019-08-04 09:42:39 -04:00
|
|
|
'instanceOf' => Factory\CacheFactory::class,
|
2019-08-04 04:26:53 -04:00
|
|
|
'call' => [
|
2019-08-03 14:48:56 -04:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2019-08-12 12:13:58 -04:00
|
|
|
Cache\IMemoryCache::class => [
|
2019-08-04 09:42:39 -04:00
|
|
|
'instanceOf' => Factory\CacheFactory::class,
|
|
|
|
'call' => [
|
|
|
|
['create', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
2019-08-03 14:48:56 -04:00
|
|
|
],
|
2019-08-12 12:13:58 -04:00
|
|
|
ILock::class => [
|
2019-08-04 09:42:39 -04:00
|
|
|
'instanceOf' => Factory\LockFactory::class,
|
2019-08-04 04:26:53 -04:00
|
|
|
'call' => [
|
2019-08-03 14:48:56 -04:00
|
|
|
['create', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2019-08-12 12:13:58 -04:00
|
|
|
App\Arguments::class => [
|
|
|
|
'instanceOf' => App\Arguments::class,
|
|
|
|
'call' => [
|
|
|
|
['determine', [$_SERVER, $_GET], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
App\Module::class => [
|
|
|
|
'instanceOf' => App\Module::class,
|
|
|
|
'call' => [
|
2019-08-12 15:51:51 -04:00
|
|
|
['determineModule', [], Dice::CHAIN_CALL],
|
2019-08-12 12:13:58 -04:00
|
|
|
],
|
|
|
|
],
|
2020-01-01 10:56:56 -05:00
|
|
|
Process::class => [
|
2019-08-16 05:06:37 -04:00
|
|
|
'constructParams' => [
|
|
|
|
[Dice::INSTANCE => '$basepath'],
|
2020-09-19 14:28:01 -04:00
|
|
|
getmypid(),
|
2019-08-16 05:06:37 -04:00
|
|
|
],
|
|
|
|
],
|
2019-09-26 15:18:01 -04:00
|
|
|
App\Router::class => [
|
|
|
|
'constructParams' => [
|
2020-07-27 01:57:44 -04:00
|
|
|
$_SERVER,
|
|
|
|
__DIR__ . '/routes.config.php',
|
|
|
|
null
|
2019-09-26 15:18:01 -04:00
|
|
|
],
|
|
|
|
],
|
2019-10-10 10:39:04 -04:00
|
|
|
L10n::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER, $_GET
|
|
|
|
],
|
|
|
|
],
|
2019-12-09 18:44:56 -05:00
|
|
|
ISession::class => [
|
|
|
|
'instanceOf' => Factory\SessionFactory::class,
|
|
|
|
'call' => [
|
|
|
|
['createSession', [$_SERVER], Dice::CHAIN_CALL],
|
|
|
|
['start', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2020-01-01 10:56:56 -05:00
|
|
|
Cookie::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER, $_COOKIE
|
|
|
|
],
|
2020-01-04 19:58:49 -05:00
|
|
|
],
|
|
|
|
IStorage::class => [
|
|
|
|
'instanceOf' => StorageManager::class,
|
|
|
|
'call' => [
|
|
|
|
['getBackend', [], Dice::CHAIN_CALL],
|
|
|
|
],
|
|
|
|
],
|
2020-03-04 16:56:16 -05:00
|
|
|
Network\IHTTPRequest::class => [
|
|
|
|
'instanceOf' => Network\HTTPRequest::class,
|
2021-06-05 16:36:45 -04:00
|
|
|
],
|
|
|
|
Factory\Api\Mastodon\Error::class => [
|
|
|
|
'constructParams' => [
|
|
|
|
$_SERVER
|
|
|
|
],
|
|
|
|
],
|
2019-07-20 19:22:10 -04:00
|
|
|
];
|