2017-11-23 14:46:04 +00:00
|
|
|
#!/usr/bin/env php
|
2013-06-22 15:34:52 +00:00
|
|
|
<?php
|
2020-02-09 15:34:23 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2013-06-22 15:34:52 +00:00
|
|
|
* 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 14:46:04 +00:00
|
|
|
* - Change it's owner to whichever user is running the server, ie. ejabberd
|
2018-03-19 03:17:31 +00:00
|
|
|
* $ chown ejabberd:ejabberd /path/to/friendica/bin/auth_ejabberd.php
|
2013-06-22 15:34:52 +00:00
|
|
|
*
|
|
|
|
* - Change the access mode so it is readable only to the user ejabberd and has exec
|
2018-03-19 03:17:31 +00:00
|
|
|
* $ chmod 700 /path/to/friendica/bin/auth_ejabberd.php
|
2013-06-22 15:34:52 +00:00
|
|
|
*
|
2020-03-29 16:46:16 +00:00
|
|
|
* - Edit your ejabberd.yml file and add after "shaper:":
|
|
|
|
*
|
|
|
|
* auth_method: [external]
|
|
|
|
* extauth_program: "/path/to/friendica/bin/auth_ejabberd.php"
|
|
|
|
* auth_use_cache: false
|
2013-06-22 15:34:52 +00:00
|
|
|
*
|
2017-11-23 14:46:04 +00:00
|
|
|
* - Restart your ejabberd service, you should be able to login with your friendica auth info
|
2013-06-22 15:34:52 +00:00
|
|
|
*
|
|
|
|
* Other hints:
|
2017-11-23 14:46:04 +00: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 15:34:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-09-07 09:51:26 +00:00
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-08-05 07:02:55 +00:00
|
|
|
use Dice\Dice;
|
2019-07-27 22:02:51 +00:00
|
|
|
use Friendica\App\Mode;
|
2020-09-30 09:14:01 +00:00
|
|
|
use Friendica\Security\ExAuth;
|
2019-09-17 14:47:00 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2017-04-30 04:01:26 +00:00
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
if (sizeof($_SERVER["argv"]) == 0) {
|
2013-06-22 15:34:52 +00:00
|
|
|
die();
|
2017-11-23 14:46:04 +00:00
|
|
|
}
|
2013-06-22 15:34:52 +00:00
|
|
|
|
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) {
|
|
|
|
$directory = $_SERVER["PWD"] . DIRECTORY_SEPARATOR . $directory;
|
|
|
|
}
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
$directory = realpath($directory . DIRECTORY_SEPARATOR . "..");
|
2013-06-22 15:34:52 +00:00
|
|
|
|
|
|
|
chdir($directory);
|
|
|
|
|
2018-12-24 14:56:48 +00:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2019-08-05 07:02:55 +00:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
2019-09-17 14:47:00 +00:00
|
|
|
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]);
|
|
|
|
|
2019-12-15 22:28:01 +00:00
|
|
|
\Friendica\DI::init($dice);
|
2021-10-23 18:46:17 +00:00
|
|
|
\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
|
2019-07-27 22:02:51 +00:00
|
|
|
$appMode = $dice->create(Mode::class);
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2019-07-21 18:24:16 +00:00
|
|
|
if ($appMode->isNormal()) {
|
2019-07-27 22:14:39 +00:00
|
|
|
/** @var ExAuth $oAuth */
|
|
|
|
$oAuth = $dice->create(ExAuth::class);
|
2018-06-26 00:57:57 +00:00
|
|
|
$oAuth->readStdin();
|
2018-10-06 14:27:20 +00:00
|
|
|
}
|