X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=13dc6eeba0004d5b99b05a36807a7a4febdf1e8e;hb=4a3544582c570d43f7d274ddbae7ea835176cbd9;hp=06d8488df84d82d64813deb2037b247bf5a0d2e1;hpb=7acb4b04343df31c2cc78214fae5429c66d95fb2;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index 06d8488df8..13dc6eeba0 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -32,10 +32,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 +51,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 ".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(); +}