2017-11-23 15:46:04 +01:00
|
|
|
#!/usr/bin/env php
|
2013-06-22 17:34:52 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* ejabberd extauth script for the integration with friendica
|
|
|
|
*
|
|
|
|
* Originally written for joomla by Dalibor Karlovic <dado@krizevci.info>
|
|
|
|
* modified for Friendica by Michael Vogel <icarus@dabo.de>
|
|
|
|
* published under GPL
|
|
|
|
*
|
|
|
|
* Latest version of the original script for joomla is available at:
|
|
|
|
* http://87.230.15.86/~dado/ejabberd/joomla-login
|
|
|
|
*
|
|
|
|
* Installation:
|
|
|
|
*
|
2017-11-23 15:46:04 +01:00
|
|
|
* - Change it's owner to whichever user is running the server, ie. ejabberd
|
2018-03-19 04:17:31 +01:00
|
|
|
* $ chown ejabberd:ejabberd /path/to/friendica/bin/auth_ejabberd.php
|
2013-06-22 17:34:52 +02:00
|
|
|
*
|
|
|
|
* - Change the access mode so it is readable only to the user ejabberd and has exec
|
2018-03-19 04:17:31 +01:00
|
|
|
* $ chmod 700 /path/to/friendica/bin/auth_ejabberd.php
|
2013-06-22 17:34:52 +02:00
|
|
|
*
|
2017-11-23 15:46:04 +01:00
|
|
|
* - Edit your ejabberd.cfg file, comment out your auth_method and add:
|
|
|
|
* {auth_method, external}.
|
2018-03-19 04:17:31 +01:00
|
|
|
* {extauth_program, "/path/to/friendica/bin/auth_ejabberd.php"}.
|
2013-06-22 17:34:52 +02:00
|
|
|
*
|
2017-11-23 15:46:04 +01:00
|
|
|
* - Restart your ejabberd service, you should be able to login with your friendica auth info
|
2013-06-22 17:34:52 +02:00
|
|
|
*
|
|
|
|
* Other hints:
|
2017-11-23 15:46:04 +01:00
|
|
|
* - if your users have a space or a @ in their nickname, they'll run into trouble
|
|
|
|
* registering with any client so they should be instructed to replace these chars
|
|
|
|
* " " (space) is replaced with "%20"
|
|
|
|
* "@" is replaced with "(a)"
|
2013-06-22 17:34:52 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
use Dice\Dice;
|
2019-07-28 00:02:51 +02:00
|
|
|
use Friendica\App\Mode;
|
|
|
|
use Friendica\BaseObject;
|
2017-11-23 15:46:04 +01:00
|
|
|
use Friendica\Util\ExAuth;
|
2019-09-17 16:47:00 +02:00
|
|
|
use Psr\Log\LoggerInterface;
|
2017-04-30 06:01:26 +02:00
|
|
|
|
2017-11-23 15:46:04 +01:00
|
|
|
if (sizeof($_SERVER["argv"]) == 0) {
|
2013-06-22 17:34:52 +02:00
|
|
|
die();
|
2017-11-23 15:46:04 +01:00
|
|
|
}
|
2013-06-22 17:34:52 +02:00
|
|
|
|
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
|
|
|
|
2017-11-23 15:46:04 +01:00
|
|
|
if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) {
|
|
|
|
$directory = $_SERVER["PWD"] . DIRECTORY_SEPARATOR . $directory;
|
|
|
|
}
|
2013-06-22 17:34:52 +02:00
|
|
|
|
2017-11-23 15:46:04 +01:00
|
|
|
$directory = realpath($directory . DIRECTORY_SEPARATOR . "..");
|
2013-06-22 17:34:52 +02:00
|
|
|
|
|
|
|
chdir($directory);
|
|
|
|
|
2018-12-24 15:56:48 +01:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2013-06-22 17:34:52 +02:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
2019-09-17 16:47:00 +02:00
|
|
|
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]);
|
|
|
|
|
2019-07-28 00:02:51 +02:00
|
|
|
BaseObject::setDependencyInjection($dice);
|
2019-07-21 01:22:10 +02:00
|
|
|
|
2019-07-28 00:02:51 +02:00
|
|
|
$appMode = $dice->create(Mode::class);
|
2013-06-22 17:34:52 +02:00
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
if ($appMode->isNormal()) {
|
2018-06-26 02:57:57 +02:00
|
|
|
$oAuth = new ExAuth();
|
|
|
|
$oAuth->readStdin();
|
2018-10-06 16:27:20 +02:00
|
|
|
}
|