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