X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=930fa853c70ff00cc6428d9d4917fd0a13bb1e02;hb=0e05ff68686270d87447c570e28543a5bcc7e755;hp=1f7ddefc610c5092136619b78b2d03c643d8d02f;hpb=6c2cf494b553833d116dbdbceea349d7f17cc728;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index 1f7ddefc61..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,7 +49,10 @@ * */ +use Dice\Dice; +use Friendica\App\Mode; use Friendica\Util\ExAuth; +use Psr\Log\LoggerInterface; if (sizeof($_SERVER["argv"]) == 0) { die(); @@ -50,10 +70,12 @@ chdir($directory); require dirname(__DIR__) . '/vendor/autoload.php'; -$dice = new \Dice\Dice(); -$dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php'); +$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(\Friendica\App\Mode::class); +$appMode = $dice->create(Mode::class); if ($appMode->isNormal()) { $oAuth = new ExAuth();