X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=13dc6eeba0004d5b99b05a36807a7a4febdf1e8e;hb=4a3544582c570d43f7d274ddbae7ea835176cbd9;hp=bf6d069d12bb58f1507f9d9ee6e0c14763c6e08e;hpb=d6944eb894df3f245e2a5bb691da2f9b306e253a;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index bf6d069d12..13dc6eeba0 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -32,8 +32,10 @@ * */ -use Friendica\Factory; +use Dice\Dice; +use Friendica\App\Mode; use Friendica\Util\ExAuth; +use Psr\Log\LoggerInterface; if (sizeof($_SERVER["argv"]) == 0) { die(); @@ -51,9 +53,14 @@ chdir($directory); require dirname(__DIR__) . '/vendor/autoload.php'; -$a = Factory\DependencyFactory::setUp('auth_ejabbered', dirname(__DIR__)); +$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php'); +$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]); -if ($a->getMode()->isNormal()) { +\Friendica\DI::init($dice); + +$appMode = $dice->create(Mode::class); + +if ($appMode->isNormal()) { $oAuth = new ExAuth(); $oAuth->readStdin(); }