X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=e34df7b669382deebb3804f8228da7ecc8b42af9;hb=aacaa3c2cf7ac4189ae6b41701d66ee3cd7f8535;hp=9ed0c5b24d353f5ed5c1c124c31eae1ebce86cd5;hpb=f10062dfdbacb48910482678d919ad37de57015f;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 9ed0c5b24d..e34df7b669 100644 --- a/src/DI.php +++ b/src/DI.php @@ -1,6 +1,6 @@ create(App\Authentication::class); - } - /** * @return App\Arguments */ @@ -95,14 +98,6 @@ abstract class DI return self::$dice->create(App\Mode::class); } - /** - * @return App\Module - */ - public static function module() - { - return self::$dice->create(App\Module::class); - } - /** * @return App\Page */ @@ -131,6 +126,14 @@ abstract class DI return self::$dice->create(Content\Item::class); } + /** + * @return Content\Conversation + */ + public static function conversation() + { + return self::$dice->create(Content\Conversation::class); + } + /** * @return Content\Text\BBCode\Video */ @@ -144,35 +147,35 @@ abstract class DI // /** - * @return Core\Cache\ICache + * @return Core\Cache\Capability\ICanCache */ public static function cache() { - return self::$dice->create(Core\Cache\ICache::class); + return self::$dice->create(Core\Cache\Capability\ICanCache::class); } /** - * @return Core\Config\IConfig + * @return Core\Config\Capability\IManageConfigValues */ public static function config() { - return self::$dice->create(Core\Config\IConfig::class); + return self::$dice->create(Core\Config\Capability\IManageConfigValues::class); } /** - * @return Core\PConfig\IPConfig + * @return Core\PConfig\Capability\IManagePersonalConfigValues */ public static function pConfig() { - return self::$dice->create(Core\PConfig\IPConfig::class); + return self::$dice->create(Core\PConfig\Capability\IManagePersonalConfigValues::class); } /** - * @return Core\Lock\ILock + * @return Core\Lock\Capability\ICanLock */ public static function lock() { - return self::$dice->create(Core\Lock\ILock::class); + return self::$dice->create(Core\Lock\Capability\ICanLock::class); } /** @@ -184,33 +187,53 @@ abstract class DI } /** - * @return Core\Process + * @return Core\Worker\Repository\Process */ public static function process() { - return self::$dice->create(Core\Process::class); + return self::$dice->create(Core\Worker\Repository\Process::class); } /** - * @return Core\Session\ISession + * @return Core\Session\Capability\IHandleSessions */ public static function session() { - return self::$dice->create(Core\Session\ISession::class); + return self::$dice->create(Core\Session\Capability\IHandleSessions::class); } /** - * @return Core\StorageManager + * @return \Friendica\Core\Storage\Repository\StorageManager */ public static function storageManager() { - return self::$dice->create(Core\StorageManager::class); + return self::$dice->create(Core\Storage\Repository\StorageManager::class); + } + + /** + * @return \Friendica\Core\System + */ + public static function system() + { + return self::$dice->create(Core\System::class); } // // "LoggerInterface" instances // + /** + * Flushes the Logger instance, so the factory is called again + * (creates a new id and retrieves the current PID) + */ + public static function flushLogger() + { + $flushDice = self::$dice + ->addRule(LoggerInterface::class, self::$dice->getRule(LoggerInterface::class)) + ->addRule('$devLogger', self::$dice->getRule('$devLogger')); + static::init($flushDice); + } + /** * @return LoggerInterface */ @@ -232,7 +255,7 @@ abstract class DI */ public static function workerLogger() { - return self::$dice->create(Util\Logger\WorkerLogger::class); + return self::$dice->create(Core\Logger\Type\WorkerLogger::class); } // @@ -247,6 +270,38 @@ abstract class DI return self::$dice->create(Factory\Api\Mastodon\Account::class); } + /** + * @return Factory\Api\Mastodon\Application + */ + public static function mstdnApplication() + { + return self::$dice->create(Factory\Api\Mastodon\Application::class); + } + + /** + * @return Factory\Api\Mastodon\Attachment + */ + public static function mstdnAttachment() + { + return self::$dice->create(Factory\Api\Mastodon\Attachment::class); + } + + /** + * @return Factory\Api\Mastodon\Card + */ + public static function mstdnCard() + { + return self::$dice->create(Factory\Api\Mastodon\Card::class); + } + + /** + * @return Factory\Api\Mastodon\Conversation + */ + public static function mstdnConversation() + { + return self::$dice->create(Factory\Api\Mastodon\Conversation::class); + } + /** * @return Factory\Api\Mastodon\Emoji */ @@ -256,11 +311,11 @@ abstract class DI } /** - * @return Factory\Api\Mastodon\Field + * @return Factory\Api\Mastodon\Error */ - public static function mstdnField() + public static function mstdnError() { - return self::$dice->create(Factory\Api\Mastodon\Field::class); + return self::$dice->create(Factory\Api\Mastodon\Error::class); } /** @@ -271,6 +326,14 @@ abstract class DI return self::$dice->create(Factory\Api\Mastodon\FollowRequest::class); } + /** + * @return Factory\Api\Mastodon\Poll + */ + public static function mstdnPoll() + { + return self::$dice->create(Factory\Api\Mastodon\Poll::class); + } + /** * @return Factory\Api\Mastodon\Relationship */ @@ -280,32 +343,76 @@ abstract class DI } /** - * @return Factory\Api\Twitter\User + * @return Factory\Api\Mastodon\Status */ - public static function twitterUser() + public static function mstdnStatus() { - return self::$dice->create(Factory\Api\Twitter\User::class); + return self::$dice->create(Factory\Api\Mastodon\Status::class); + } + + /** + * @return Factory\Api\Mastodon\ScheduledStatus + */ + public static function mstdnScheduledStatus() + { + return self::$dice->create(Factory\Api\Mastodon\ScheduledStatus::class); } /** - * @return Factory\Notification\Notification + * @return Factory\Api\Mastodon\Subscription */ - public static function notification() + public static function mstdnSubscription() { - return self::$dice->create(Factory\Notification\Notification::class); + return self::$dice->create(Factory\Api\Mastodon\Subscription::class); } /** - * @return Factory\Notification\Introduction + * @return Factory\Api\Mastodon\ListEntity */ - public static function notificationIntro() + public static function mstdnList() { - return self::$dice->create(Factory\Notification\Introduction::class); + return self::$dice->create(Factory\Api\Mastodon\ListEntity::class); + } + + /** + * @return Factory\Api\Mastodon\Notification + */ + public static function mstdnNotification() + { + return self::$dice->create(Factory\Api\Mastodon\Notification::class); + } + + /** + * @return Factory\Api\Twitter\Status + */ + public static function twitterStatus() + { + return self::$dice->create(Factory\Api\Twitter\Status::class); + } + + /** + * @return Factory\Api\Twitter\User + */ + public static function twitterUser() + { + return self::$dice->create(Factory\Api\Twitter\User::class); + } + + public static function notificationIntro(): Navigation\Notifications\Factory\Introduction + { + return self::$dice->create(Navigation\Notifications\Factory\Introduction::class); } // // "Model" namespace instances // + /** + * @return \Friendica\Core\Worker\Repository\Process + */ + public static function modelProcess() + { + return self::$dice->create(Core\Worker\Repository\Process::class); + } /** * @return Model\User\Cookie @@ -316,55 +423,131 @@ abstract class DI } /** - * @return Model\Storage\IStorage + * @return Core\Storage\Capability\ICanWriteToStorage */ public static function storage() { - return self::$dice->create(Model\Storage\IStorage::class); + return self::$dice->create(Core\Storage\Capability\ICanWriteToStorage::class); + } + + /** + * @return Model\Log\ParsedLogIterator + */ + public static function parsedLogIterator() + { + return self::$dice->create(Model\Log\ParsedLogIterator::class); } // - // "Repository" namespace + // "Module" namespace + // + + public static function apiResponse(): Module\Api\ApiResponse + { + return self::$dice->create(Module\Api\ApiResponse::class); + } + + // + // "Network" namespace // /** - * @return Repository\FSuggest; + * @return Network\HTTPClient\Capability\ICanSendHttpRequests */ - public static function fsuggest() + public static function httpClient() { - return self::$dice->create(Repository\FSuggest::class); + return self::$dice->create(Network\HTTPClient\Capability\ICanSendHttpRequests::class); } + // + // "Repository" namespace + // + /** - * @return Repository\Introduction + * @return Contact\FriendSuggest\Repository\FriendSuggest; */ - public static function intro() + public static function fsuggest() { - return self::$dice->create(Repository\Introduction::class); + return self::$dice->create(Contact\FriendSuggest\Repository\FriendSuggest::class); } /** - * @return Repository\PermissionSet + * @return Contact\FriendSuggest\Factory\FriendSuggest; */ - public static function permissionSet() + public static function fsuggestFactory() { - return self::$dice->create(Repository\PermissionSet::class); + return self::$dice->create(Contact\FriendSuggest\Factory\FriendSuggest::class); } /** - * @return Repository\ProfileField + * @return Contact\Introduction\Repository\Introduction */ - public static function profileField() + public static function intro() { - return self::$dice->create(Repository\ProfileField::class); + return self::$dice->create(Contact\Introduction\Repository\Introduction::class); } /** - * @return Repository\Notify + * @return Contact\Introduction\Factory\Introduction */ - public static function notify() + public static function introFactory() { - return self::$dice->create(Repository\Notify::class); + return self::$dice->create(Contact\Introduction\Factory\Introduction::class); + } + + public static function localRelationship(): Contact\LocalRelationship\Repository\LocalRelationship + { + return self::$dice->create(Contact\LocalRelationship\Repository\LocalRelationship::class); + } + + public static function permissionSet(): Security\PermissionSet\Repository\PermissionSet + { + return self::$dice->create(Security\PermissionSet\Repository\PermissionSet::class); + } + + public static function permissionSetFactory(): Security\PermissionSet\Factory\PermissionSet + { + return self::$dice->create(Security\PermissionSet\Factory\PermissionSet::class); + } + + public static function profileField(): Profile\ProfileField\Repository\ProfileField + { + return self::$dice->create(Profile\ProfileField\Repository\ProfileField::class); + } + + public static function profileFieldFactory(): Profile\ProfileField\Factory\ProfileField + { + return self::$dice->create(Profile\ProfileField\Factory\ProfileField::class); + } + + public static function notification(): Navigation\Notifications\Repository\Notification + { + return self::$dice->create(Navigation\Notifications\Repository\Notification::class); + } + + public static function notificationFactory(): Navigation\Notifications\Factory\Notification + { + return self::$dice->create(Navigation\Notifications\Factory\Notification::class); + } + + public static function notify(): Navigation\Notifications\Repository\Notify + { + return self::$dice->create(Navigation\Notifications\Repository\Notify::class); + } + + public static function notifyFactory(): Navigation\Notifications\Factory\Notify + { + return self::$dice->create(Navigation\Notifications\Factory\Notify::class); + } + + public static function formattedNotificationFactory(): Navigation\Notifications\Factory\FormattedNotify + { + return self::$dice->create(Navigation\Notifications\Factory\FormattedNotify::class); + } + + public static function formattedNavNotificationFactory(): Navigation\Notifications\Factory\FormattedNavNotification + { + return self::$dice->create(Navigation\Notifications\Factory\FormattedNavNotification::class); } // @@ -379,6 +562,18 @@ abstract class DI return self::$dice->create(Protocol\Activity::class); } + // + // "Security" namespace instances + // + + /** + * @return \Friendica\Security\Authentication + */ + public static function auth() + { + return self::$dice->create(Security\Authentication::class); + } + // // "Util" namespace instances //