]> git.mxchange.org Git - friendica.git/blob - bin/auth_ejabberd.php
Fixes:
[friendica.git] / bin / auth_ejabberd.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * ejabberd extauth script for the integration with friendica
5  *
6  * Originally written for joomla by Dalibor Karlovic <dado@krizevci.info>
7  * modified for Friendica by Michael Vogel <icarus@dabo.de>
8  * published under GPL
9  *
10  * Latest version of the original script for joomla is available at:
11  * http://87.230.15.86/~dado/ejabberd/joomla-login
12  *
13  * Installation:
14  *
15  *      - Change it's owner to whichever user is running the server, ie. ejabberd
16  *        $ chown ejabberd:ejabberd /path/to/friendica/bin/auth_ejabberd.php
17  *
18  *      - Change the access mode so it is readable only to the user ejabberd and has exec
19  *        $ chmod 700 /path/to/friendica/bin/auth_ejabberd.php
20  *
21  *      - Edit your ejabberd.cfg file, comment out your auth_method and add:
22  *        {auth_method, external}.
23  *        {extauth_program, "/path/to/friendica/bin/auth_ejabberd.php"}.
24  *
25  *      - Restart your ejabberd service, you should be able to login with your friendica auth info
26  *
27  * Other hints:
28  *      - if your users have a space or a @ in their nickname, they'll run into trouble
29  *        registering with any client so they should be instructed to replace these chars
30  *        " " (space) is replaced with "%20"
31  *        "@" is replaced with "(a)"
32  *
33  */
34
35 use Friendica\App;
36 use Friendica\Util\ExAuth;
37
38 if (sizeof($_SERVER["argv"]) == 0) {
39         die();
40 }
41
42 $directory = dirname($_SERVER["argv"][0]);
43
44 if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) {
45         $directory = $_SERVER["PWD"] . DIRECTORY_SEPARATOR . $directory;
46 }
47
48 $directory = realpath($directory . DIRECTORY_SEPARATOR . "..");
49
50 chdir($directory);
51
52 require_once "boot.php";
53 require_once "include/dba.php";
54
55 $a = new App(dirname(__DIR__));
56
57 if ($a->mode === App::MODE_NORMAL) {
58         $oAuth = new ExAuth();
59         $oAuth->readStdin();
60 }