2017-11-23 14:46:04 +00:00
|
|
|
#!/usr/bin/env php
|
2013-06-22 15:34:52 +00: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 14:46:04 +00:00
|
|
|
* - Change it's owner to whichever user is running the server, ie. ejabberd
|
|
|
|
* $ chown ejabberd:ejabberd /path/to/friendica/scripts/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
|
2017-11-23 14:46:04 +00:00
|
|
|
* $ chmod 700 /path/to/friendica/scripts/auth_ejabberd.php
|
2013-06-22 15:34:52 +00:00
|
|
|
*
|
2017-11-23 14:46:04 +00:00
|
|
|
* - Edit your ejabberd.cfg file, comment out your auth_method and add:
|
|
|
|
* {auth_method, external}.
|
|
|
|
* {extauth_program, "/path/to/friendica/script/auth_ejabberd.php"}.
|
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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-04-30 04:01:26 +00:00
|
|
|
use Friendica\App;
|
2017-11-23 14:46:04 +00:00
|
|
|
use Friendica\Util\ExAuth;
|
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);
|
|
|
|
|
2017-11-19 22:52:35 +00:00
|
|
|
require_once "boot.php";
|
|
|
|
require_once "include/dba.php";
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2017-11-19 22:52:35 +00:00
|
|
|
$a = new App(dirname(__DIR__));
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
@include ".htconfig.php";
|
2017-10-11 12:56:36 +00:00
|
|
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2013-06-22 15:34:52 +00:00
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
$oAuth = new ExAuth();
|
2016-09-22 02:57:40 +00:00
|
|
|
|
2017-11-23 14:46:04 +00:00
|
|
|
$oAuth->readStdin();
|