4 * ejabberd extauth script for the integration with friendica
6 * Originally written for joomla by Dalibor Karlovic <dado@krizevci.info>
7 * modified for Friendica by Michael Vogel <icarus@dabo.de>
10 * Latest version of the original script for joomla is available at:
11 * http://87.230.15.86/~dado/ejabberd/joomla-login
15 * - Change it's owner to whichever user is running the server, ie. ejabberd
16 * $ chown ejabberd:ejabberd /path/to/friendica/include/auth_ejabberd.php
18 * - Change the access mode so it is readable only to the user ejabberd and has exec
19 * $ chmod 700 /path/to/friendica/include/auth_ejabberd.php
21 * - Edit your ejabberd.cfg file, comment out your auth_method and add:
22 * {auth_method, external}.
23 * {extauth_program, "/path/to/friendica/include/auth_ejabberd.php"}.
25 * - Restart your ejabberd service, you should be able to login with your friendica auth info
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)"
35 if (sizeof($_SERVER["argv"]) == 0)
38 $directory = dirname($_SERVER["argv"][0]);
40 if (substr($directory, 0, 1) != "/")
41 $directory = $_SERVER["PWD"]."/".$directory;
43 $directory = realpath($directory."/..");
46 require_once("boot.php");
54 @include(".htconfig.php");
55 require_once("include/dba.php");
56 $db = new dba($db_host, $db_user, $db_pass, $db_data);
57 unset($db_host, $db_user, $db_pass, $db_data);
60 // the logfile to which to write, should be writeable by the user which is running the server
61 $sLogFile = get_config('jabber','logfile');
63 // set true to debug if needed
64 $bDebug = get_config('jabber','debug');
66 $oAuth = new exAuth($sLogFile, $bDebug);
75 * @brief Create the class and do the authentification studd
77 * @param string $sLogFile The logfile name
78 * @param boolean $bDebug Debug mode
80 public function __construct($sLogFile, $bDebug) {
84 $this->sLogFile = $sLogFile;
85 $this->bDebug = $bDebug;
87 // Open the logfile if the logfile name is defined
88 if ($this->sLogFile != '')
89 $this->rLogFile = fopen($this->sLogFile, "a") or die("Error opening log file: ". $this->sLogFile);
91 $this->writeLog("[exAuth] start");
93 // We are connected to the SQL server and are having a log file.
95 // Quit if the database connection went down
96 if (!$db->connected()) {
97 $this->writeDebugLog("[debug] the database connection went down");
101 $iHeader = fgets(STDIN, 3);
102 $aLength = unpack("n", $iHeader);
103 $iLength = $aLength["1"];
105 // No data? Then quit
107 $this->writeDebugLog("[debug] we got no data");
112 $sData = fgets(STDIN, $iLength + 1);
113 $this->writeDebugLog("[debug] received data: ". $sData);
114 $aCommand = explode(":", $sData);
115 if (is_array($aCommand)) {
116 switch ($aCommand[0]) {
118 // Check the existance of a given username
119 $this->isuser($aCommand);
122 // Check if the givven password is correct
123 $this->auth($aCommand);
126 // We don't accept the setting of passwords here
127 $this->writeLog("[exAuth] setpass command disabled");
128 fwrite(STDOUT, pack("nn", 2, 0));
131 // We don't know the given command
132 $this->writeLog("[exAuth] unknown command ". $aCommand[0]);
133 fwrite(STDOUT, pack("nn", 2, 0));
137 $this->writeDebugLog("[debug] invalid command string");
138 fwrite(STDOUT, pack("nn", 2, 0));
144 * @brief Check if the given username exists
146 * @param array $aCommand The command array
148 private function isuser($aCommand) {
151 // Check if there is a username
152 if (!isset($aCommand[1])) {
153 $this->writeLog("[exAuth] invalid isuser command, no username given");
154 fwrite(STDOUT, pack("nn", 2, 0));
158 // Now we check if the given user is valid
159 $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
160 $this->writeDebugLog("[debug] checking isuser for ". $sUser."@".$aCommand[2]);
162 // Does the hostname match? So we try directly
163 if ($a->get_hostname() == $aCommand[2]) {
164 $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
165 $this->writeDebugLog("[debug] using query ". $sQuery);
167 $found = dbm::is_result($r);
172 // If the hostnames doesn't match or there is some failure, we try to check remotely
174 $found = $this->check_user($aCommand[2], $aCommand[1], true);
179 $this->writeLog("[exAuth] valid user: ". $sUser);
180 fwrite(STDOUT, pack("nn", 2, 1));
182 // The user isn't okay
183 $this->writeLog("[exAuth] invalid user: ". $sUser);
184 fwrite(STDOUT, pack("nn", 2, 0));
189 * @brief Check remote user existance via HTTP(S)
191 * @param string $host The hostname
192 * @param string $user Username
193 * @param boolean $ssl Should the check be done via SSL?
195 * @return boolean Was the user found?
197 private function check_user($host, $user, $ssl) {
199 $url = ($ssl ? "https":"http")."://".$host."/noscrape/".$user;
201 $data = z_fetch_url($url);
203 if (!is_array($data))
206 if ($data["return_code"] != "200")
209 $json = @json_decode($data["body"]);
210 if (!is_object($json))
213 return($json->nick == $user);
217 * @brief Authenticate the givven user and password
219 * @param array $aCommand The command array
221 private function auth($aCommand) {
224 // check user authentication
225 if (sizeof($aCommand) != 4) {
226 $this->writeLog("[exAuth] invalid auth command, data missing");
227 fwrite(STDOUT, pack("nn", 2, 0));
231 // We now check if the password match
232 $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
233 $this->writeDebugLog("[debug] doing auth for ".$sUser."@".$aCommand[2]);
235 // Does the hostname match? So we try directly
236 if ($a->get_hostname() == $aCommand[2]) {
237 $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
238 $this->writeDebugLog("[debug] using query ". $sQuery);
239 if ($oResult = q($sQuery)) {
240 $uid = $oResult[0]["uid"];
241 $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3]));
243 $this->writeLog("[MySQL] invalid query: ". $sQuery);
248 $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid));
249 $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]);
250 $Error = ($aCommand[3] != $oConfig[0]["v"]);
256 // If the hostnames doesn't match or there is some failure, we try to check remotely
258 $Error = !$this->check_credentials($aCommand[2], $aCommand[1], $aCommand[3], true);
262 $this->writeLog("[exAuth] authentification failed for user ".$sUser."@". $aCommand[2]);
263 fwrite(STDOUT, pack("nn", 2, 0));
265 $this->writeLog("[exAuth] authentificated user ".$sUser."@".$aCommand[2]);
266 fwrite(STDOUT, pack("nn", 2, 1));
271 * @brief Check remote credentials via HTTP(S)
273 * @param string $host The hostname
274 * @param string $user Username
275 * @param string $password Password
276 * @param boolean $ssl Should the check be done via SSL?
278 * @return boolean Are the credentials okay?
280 private function check_credentials($host, $user, $password, $ssl) {
281 $this->writeDebugLog("[debug] check credentials for user ".$user." on ".$host);
283 $url = ($ssl ? "https":"http")."://".$host."/api/account/verify_credentials.json";
286 curl_setopt($ch, CURLOPT_URL, $url);
287 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
288 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
289 curl_setopt($ch, CURLOPT_HEADER, true);
290 curl_setopt($ch, CURLOPT_NOBODY, true);
291 curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
292 curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password);
294 $header = curl_exec($ch);
295 $curl_info = @curl_getinfo($ch);
296 $http_code = $curl_info["http_code"];
299 $this->writeDebugLog("[debug] got HTTP code ".$http_code);
301 return ($http_code == 200);
305 * @brief write data to the logfile
307 * @param string $sMessage The logfile message
309 private function writeLog($sMessage) {
310 if (is_resource($this->rLogFile))
311 fwrite($this->rLogFile, date("r")." ".$sMessage."\n");
315 * @brief write debug data to the logfile
317 * @param string $sMessage The logfile message
319 private function writeDebugLog($sMessage) {
321 $this->writeLog($sMessage);
325 * @brief destroy the class
327 public function __destruct() {
328 // close the log file
329 $this->writeLog("[exAuth] stop");
331 if (is_resource($this->rLogFile))
332 fclose($this->rLogFile);