X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=930fa853c70ff00cc6428d9d4917fd0a13bb1e02;hb=79803a6546dd251f6fee557434816a39bc1fb7ce;hp=901d4a4ceb68bb37873a9bd136ff4ab17ed17743;hpb=346697d771e2656b4bcd12a5e84045710e9b2b55;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index 901d4a4ceb..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,10 +49,10 @@ * */ -use Friendica\App; -use Friendica\BaseObject; -use Friendica\Core\Config; +use Dice\Dice; +use Friendica\App\Mode; use Friendica\Util\ExAuth; +use Psr\Log\LoggerInterface; if (sizeof($_SERVER["argv"]) == 0) { die(); @@ -51,16 +68,16 @@ $directory = realpath($directory . DIRECTORY_SEPARATOR . ".."); chdir($directory); -require_once "boot.php"; -require_once "include/dba.php"; +require dirname(__DIR__) . '/vendor/autoload.php'; -$a = new App(dirname(__DIR__)); -BaseObject::setApp($a); +$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php'); +$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]); -@include "config/.htconfig.php"; -dba::connect($db_host, $db_user, $db_pass, $db_data); -unset($db_host, $db_user, $db_pass, $db_data); +\Friendica\DI::init($dice); -$oAuth = new ExAuth(); +$appMode = $dice->create(Mode::class); -$oAuth->readStdin(); +if ($appMode->isNormal()) { + $oAuth = new ExAuth(); + $oAuth->readStdin(); +}