2019-12-15 21:34:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica;
|
|
|
|
|
|
|
|
use Dice\Dice;
|
2019-12-15 22:28:01 +00:00
|
|
|
use Friendica\Core\Cache\ICache;
|
|
|
|
use Friendica\Core\Config\Configuration;
|
|
|
|
use Friendica\Core\Config\PConfiguration;
|
|
|
|
use Friendica\Core\L10n\L10n;
|
|
|
|
use Friendica\Core\Lock\ILock;
|
|
|
|
use Friendica\Core\Session\ISession;
|
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Model\Notify;
|
|
|
|
use Friendica\Protocol\Activity;
|
|
|
|
use Friendica\Util\ACLFormatter;
|
2019-12-15 22:37:49 +00:00
|
|
|
use Friendica\Content;
|
2019-12-15 22:28:01 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\FileSystem;
|
|
|
|
use Friendica\Util\Logger\WorkerLogger;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2019-12-15 21:34:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is capable of getting all dynamic created classes
|
|
|
|
*
|
|
|
|
* There has to be a "method" phpDoc for each new class, containing result class for a proper matching
|
|
|
|
*
|
|
|
|
* @method static App app()
|
2019-12-15 22:28:01 +00:00
|
|
|
* @method static ACLFormatter aclFormatter()
|
|
|
|
* @method static Notify notify()
|
|
|
|
* @method static Activity activity()
|
2019-12-15 22:37:49 +00:00
|
|
|
* @method static Content\Item contentItem()
|
|
|
|
* @method static Content\Text\BBCode\Video bbCodeVideo()
|
2019-12-15 22:28:01 +00:00
|
|
|
* @method static DateTimeFormat dtFormat()
|
|
|
|
* @method static ICache cache()
|
|
|
|
* @method static Configuration config()
|
|
|
|
* @method static PConfiguration pConfig()
|
|
|
|
* @method static ILock lock()
|
|
|
|
* @method static L10n l10n()
|
|
|
|
* @method static LoggerInterface logger()
|
|
|
|
* @method static LoggerInterface devLogger()
|
|
|
|
* @method static LoggerInterface workerLogger()
|
|
|
|
* @method static ISession session()
|
|
|
|
* @method static App\Authentication auth()
|
|
|
|
* @method static App\Arguments args()
|
|
|
|
* @method static App\BaseURL baseUrl()
|
|
|
|
* @method static App\Mode mode()
|
|
|
|
* @method static App\Module module()
|
|
|
|
* @method static App\Page page()
|
|
|
|
* @method static App\Router router()
|
|
|
|
* @method static Database dba()
|
|
|
|
* @method static FileSystem fs()
|
|
|
|
*
|
2019-12-15 21:34:11 +00:00
|
|
|
*/
|
|
|
|
class DI
|
|
|
|
{
|
2019-12-15 22:37:49 +00:00
|
|
|
const CLASS_MAPPING = [
|
|
|
|
'app' => App::class,
|
|
|
|
'aclFormatter' => ACLFormatter::class,
|
|
|
|
'auth' => App\Authentication::class,
|
|
|
|
'args' => App\Arguments::class,
|
|
|
|
'baseUrl' => App\BaseURL::class,
|
|
|
|
'mode' => App\Mode::class,
|
|
|
|
'module' => App\Module::class,
|
|
|
|
'page' => App\Page::class,
|
|
|
|
'router' => App\Router::class,
|
|
|
|
'notify' => Notify::class,
|
|
|
|
'activity' => Activity::class,
|
|
|
|
'contentItem' => Content\Item::class,
|
|
|
|
'bbCodeVideo' => Content\Text\BBCode\Video::class,
|
|
|
|
'dtFormat' => DateTimeFormat::class,
|
|
|
|
'cache' => ICache::class,
|
|
|
|
'config' => Configuration::class,
|
|
|
|
'pConfig' => PConfiguration::class,
|
|
|
|
'l10n' => L10n::class,
|
|
|
|
'lock' => ILock::class,
|
|
|
|
'logger' => LoggerInterface::class,
|
|
|
|
'workerLogger' => WorkerLogger::class,
|
|
|
|
'devLogger' => '$devLogger',
|
|
|
|
'session' => ISession::class,
|
|
|
|
'dba' => Database::class,
|
|
|
|
'fs' => FileSystem::class,
|
|
|
|
];
|
|
|
|
|
2019-12-15 21:34:11 +00:00
|
|
|
/** @var Dice */
|
|
|
|
private static $dice;
|
|
|
|
|
|
|
|
public static function init(Dice $dice)
|
|
|
|
{
|
|
|
|
self::$dice = $dice;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function __callStatic($name, $arguments)
|
|
|
|
{
|
2019-12-15 22:37:49 +00:00
|
|
|
return self::$dice->create(self::CLASS_MAPPING[$name], $arguments);
|
2019-12-15 21:34:11 +00:00
|
|
|
}
|
|
|
|
}
|