X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=930fa853c70ff00cc6428d9d4917fd0a13bb1e02;hb=79803a6546dd251f6fee557434816a39bc1fb7ce;hp=bf6d069d12bb58f1507f9d9ee6e0c14763c6e08e;hpb=74edf9994fca81be56ea893a449add5e61357e25;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index bf6d069d12..930fa853c7 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -1,6 +1,23 @@ #!/usr/bin/env php . + * * ejabberd extauth script for the integration with friendica * * Originally written for joomla by Dalibor Karlovic @@ -32,8 +49,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 +70,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']]); + +\Friendica\DI::init($dice); + +$appMode = $dice->create(Mode::class); -if ($a->getMode()->isNormal()) { +if ($appMode->isNormal()) { $oAuth = new ExAuth(); $oAuth->readStdin(); }