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)"
37 if (sizeof($_SERVER["argv"]) == 0)
40 $directory = dirname($_SERVER["argv"][0]);
42 if (substr($directory, 0, 1) != "/")
43 $directory = $_SERVER["PWD"]."/".$directory;
45 $directory = realpath($directory."/..");
48 require_once("boot.php");
53 $a = new App(dirname(__DIR__));
57 @include(".htconfig.php");
58 require_once("include/dba.php");
59 $db = new dba($db_host, $db_user, $db_pass, $db_data);
60 unset($db_host, $db_user, $db_pass, $db_data);
63 // the logfile to which to write, should be writeable by the user which is running the server
64 $sLogFile = get_config('jabber','logfile');
66 // set true to debug if needed
67 $bDebug = get_config('jabber','debug');
69 $oAuth = new exAuth($sLogFile, $bDebug);
78 * @brief Create the class and do the authentification studd
80 * @param string $sLogFile The logfile name
81 * @param boolean $bDebug Debug mode
83 public function __construct($sLogFile, $bDebug) {
87 $this->sLogFile = $sLogFile;
88 $this->bDebug = $bDebug;
90 // Open the logfile if the logfile name is defined
91 if ($this->sLogFile != '')
92 $this->rLogFile = fopen($this->sLogFile, "a") or die("Error opening log file: ". $this->sLogFile);
94 $this->writeLog("[exAuth] start");
96 // We are connected to the SQL server and are having a log file.
98 // Quit if the database connection went down
99 if (!$db->connected()) {
100 $this->writeDebugLog("[debug] the database connection went down");
104 $iHeader = fgets(STDIN, 3);
105 $aLength = unpack("n", $iHeader);
106 $iLength = $aLength["1"];
108 // No data? Then quit
110 $this->writeDebugLog("[debug] we got no data");
115 $sData = fgets(STDIN, $iLength + 1);
116 $this->writeDebugLog("[debug] received data: ". $sData);
117 $aCommand = explode(":", $sData);
118 if (is_array($aCommand)) {
119 switch ($aCommand[0]) {
121 // Check the existance of a given username
122 $this->isuser($aCommand);
125 // Check if the givven password is correct
126 $this->auth($aCommand);
129 // We don't accept the setting of passwords here
130 $this->writeLog("[exAuth] setpass command disabled");
131 fwrite(STDOUT, pack("nn", 2, 0));
134 // We don't know the given command
135 $this->writeLog("[exAuth] unknown command ". $aCommand[0]);
136 fwrite(STDOUT, pack("nn", 2, 0));
140 $this->writeDebugLog("[debug] invalid command string");
141 fwrite(STDOUT, pack("nn", 2, 0));
147 * @brief Check if the given username exists
149 * @param array $aCommand The command array
151 private function isuser($aCommand) {
154 // Check if there is a username
155 if (!isset($aCommand[1])) {
156 $this->writeLog("[exAuth] invalid isuser command, no username given");
157 fwrite(STDOUT, pack("nn", 2, 0));
161 // Now we check if the given user is valid
162 $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
163 $this->writeDebugLog("[debug] checking isuser for ". $sUser."@".$aCommand[2]);
165 // Does the hostname match? So we try directly
166 if ($a->get_hostname() == $aCommand[2]) {
167 $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
168 $this->writeDebugLog("[debug] using query ". $sQuery);
170 $found = dbm::is_result($r);
175 // If the hostnames doesn't match or there is some failure, we try to check remotely
177 $found = $this->check_user($aCommand[2], $aCommand[1], true);
182 $this->writeLog("[exAuth] valid user: ". $sUser);
183 fwrite(STDOUT, pack("nn", 2, 1));
185 // The user isn't okay
186 $this->writeLog("[exAuth] invalid user: ". $sUser);
187 fwrite(STDOUT, pack("nn", 2, 0));
192 * @brief Check remote user existance via HTTP(S)
194 * @param string $host The hostname
195 * @param string $user Username
196 * @param boolean $ssl Should the check be done via SSL?
198 * @return boolean Was the user found?
200 private function check_user($host, $user, $ssl) {
202 $url = ($ssl ? "https":"http")."://".$host."/noscrape/".$user;
204 $data = z_fetch_url($url);
206 if (!is_array($data))
209 if ($data["return_code"] != "200")
212 $json = @json_decode($data["body"]);
213 if (!is_object($json))
216 return($json->nick == $user);
220 * @brief Authenticate the givven user and password
222 * @param array $aCommand The command array
224 private function auth($aCommand) {
227 // check user authentication
228 if (sizeof($aCommand) != 4) {
229 $this->writeLog("[exAuth] invalid auth command, data missing");
230 fwrite(STDOUT, pack("nn", 2, 0));
234 // We now check if the password match
235 $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
236 $this->writeDebugLog("[debug] doing auth for ".$sUser."@".$aCommand[2]);
238 // Does the hostname match? So we try directly
239 if ($a->get_hostname() == $aCommand[2]) {
240 $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
241 $this->writeDebugLog("[debug] using query ". $sQuery);
242 if ($oResult = q($sQuery)) {
243 $uid = $oResult[0]["uid"];
244 $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3]));
246 $this->writeLog("[MySQL] invalid query: ". $sQuery);
251 $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid));
252 $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]);
253 $Error = ($aCommand[3] != $oConfig[0]["v"]);
259 // If the hostnames doesn't match or there is some failure, we try to check remotely
261 $Error = !$this->check_credentials($aCommand[2], $aCommand[1], $aCommand[3], true);
265 $this->writeLog("[exAuth] authentification failed for user ".$sUser."@". $aCommand[2]);
266 fwrite(STDOUT, pack("nn", 2, 0));
268 $this->writeLog("[exAuth] authentificated user ".$sUser."@".$aCommand[2]);
269 fwrite(STDOUT, pack("nn", 2, 1));
274 * @brief Check remote credentials via HTTP(S)
276 * @param string $host The hostname
277 * @param string $user Username
278 * @param string $password Password
279 * @param boolean $ssl Should the check be done via SSL?
281 * @return boolean Are the credentials okay?
283 private function check_credentials($host, $user, $password, $ssl) {
284 $this->writeDebugLog("[debug] check credentials for user ".$user." on ".$host);
286 $url = ($ssl ? "https":"http")."://".$host."/api/account/verify_credentials.json";
289 curl_setopt($ch, CURLOPT_URL, $url);
290 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
291 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
292 curl_setopt($ch, CURLOPT_HEADER, true);
293 curl_setopt($ch, CURLOPT_NOBODY, true);
294 curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
295 curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password);
297 $header = curl_exec($ch);
298 $curl_info = @curl_getinfo($ch);
299 $http_code = $curl_info["http_code"];
302 $this->writeDebugLog("[debug] got HTTP code ".$http_code);
304 return ($http_code == 200);
308 * @brief write data to the logfile
310 * @param string $sMessage The logfile message
312 private function writeLog($sMessage) {
313 if (is_resource($this->rLogFile))
314 fwrite($this->rLogFile, date("r")." ".$sMessage."\n");
318 * @brief write debug data to the logfile
320 * @param string $sMessage The logfile message
322 private function writeDebugLog($sMessage) {
324 $this->writeLog($sMessage);
328 * @brief destroy the class
330 public function __destruct() {
331 // close the log file
332 $this->writeLog("[exAuth] stop");
334 if (is_resource($this->rLogFile))
335 fclose($this->rLogFile);