]> git.mxchange.org Git - friendica.git/blobdiff - static/dependencies.config.php
Reduce the amount of "UpdateContact" worker calls
[friendica.git] / static / dependencies.config.php
index 28d26b4e7b6cc71f3c7a74fb4492353abf8557f4..a4c52e004303a39e409afbc2a5e7febaa04b21bf 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -41,8 +41,11 @@ use Friendica\Core\PConfig;
 use Friendica\Core\L10n;
 use Friendica\Core\Lock;
 use Friendica\Core\Session\Capability\IHandleSessions;
+use Friendica\Core\Session\Capability\IHandleUserSessions;
 use Friendica\Core\Storage\Repository\StorageManager;
 use Friendica\Database\Database;
+use Friendica\Database\Definition\DbaDefinition;
+use Friendica\Database\Definition\ViewDefinition;
 use Friendica\Factory;
 use Friendica\Core\Storage\Capability\ICanWriteToStorage;
 use Friendica\Model\User\Cookie;
@@ -106,6 +109,22 @@ return [
                        ['create', [], Dice::CHAIN_CALL],
                ]
        ],
+       DbaDefinition::class => [
+               'constructParams' => [
+                       [Dice::INSTANCE => '$basepath'],
+               ],
+               'call' => [
+                       ['load', [false], Dice::CHAIN_CALL],
+               ],
+       ],
+       ViewDefinition::class => [
+               'constructParams' => [
+                       [Dice::INSTANCE => '$basepath'],
+               ],
+               'call' => [
+                       ['load', [false], Dice::CHAIN_CALL],
+               ],
+       ],
        Database::class                         => [
                'constructParams' => [
                        [Dice::INSTANCE => \Psr\Log\NullLogger::class],
@@ -157,16 +176,22 @@ return [
                        ['createDev', [], Dice::CHAIN_CALL],
                ]
        ],
+       \Friendica\Core\Logger\Capabilities\IHaveCallIntrospections::class => [
+               'instanceOf' => \Friendica\Core\Logger\Util\Introspection::class,
+               'constructParams' => [
+                       \Friendica\Core\Logger\Util\Introspection::IGNORE_CLASS_LIST,
+               ],
+       ],
        Cache\Capability\ICanCache::class => [
                'instanceOf' => Cache\Factory\Cache::class,
                'call'       => [
-                       ['create', [], Dice::CHAIN_CALL],
+                       ['createLocal', [], Dice::CHAIN_CALL],
                ],
        ],
        Cache\Capability\ICanCacheInMemory::class => [
                'instanceOf' => Cache\Factory\Cache::class,
                'call'       => [
-                       ['create', [], Dice::CHAIN_CALL],
+                       ['createLocal', [], Dice::CHAIN_CALL],
                ],
        ],
        Lock\Capability\ICanLock::class => [
@@ -181,12 +206,6 @@ return [
                        ['determine', [$_SERVER, $_GET], Dice::CHAIN_CALL],
                ],
        ],
-       App\ModuleController::class => [
-               'instanceOf' => App\ModuleController::class,
-               'call' => [
-                       ['determineName', [], Dice::CHAIN_CALL],
-               ],
-       ],
        \Friendica\Core\System::class => [
                'constructParams' => [
                        [Dice::INSTANCE => '$basepath'],
@@ -196,6 +215,7 @@ return [
                'constructParams' => [
                        $_SERVER,
                        __DIR__ . '/routes.config.php',
+                       [Dice::INSTANCE => Dice::SELF],
                        null
                ],
        ],
@@ -211,9 +231,12 @@ return [
                        ['start', [], Dice::CHAIN_CALL],
                ],
        ],
+       IHandleUserSessions::class => [
+               'instanceOf' => \Friendica\Core\Session\Model\UserSession::class,
+       ],
        Cookie::class => [
                'constructParams' => [
-                       $_SERVER, $_COOKIE
+                       $_COOKIE
                ],
        ],
        ICanWriteToStorage::class => [
@@ -243,4 +266,17 @@ return [
                        $_SERVER
                ],
        ],
+       App\Request::class => [
+               'constructParams' => [
+                       $_SERVER
+               ],
+       ],
+       \Psr\Clock\ClockInterface::class => [
+               'instanceOf' => Util\Clock\SystemClock::class
+       ],
+       \Friendica\Module\Special\HTTPException::class => [
+               'constructParams' => [
+                       $_SERVER
+               ],
+       ],
 ];