space fixes, added timeout to connect(), general fixes

git-svn-id: svn://netflint.net/xmpphp@39 ef36c318-a008-4979-b6e8-6b496270793b
This commit is contained in:
temp 2008-05-05 21:14:43 +00:00
parent 1a4d1756c1
commit b5aa1b77b0
4 changed files with 576 additions and 571 deletions

View File

@ -45,72 +45,72 @@ class XMPPHP_Log {
/** /**
* @var array * @var array
*/ */
protected $data = array(); protected $data = array();
/** /**
* @var array * @var array
*/ */
protected $names = array('ERROR', 'WARNING', 'INFO', 'DEBUG', 'VERBOSE'); protected $names = array('ERROR', 'WARNING', 'INFO', 'DEBUG', 'VERBOSE');
/** /**
* @var integer * @var integer
*/ */
protected $runlevel; protected $runlevel;
/** /**
* @var boolean * @var boolean
*/ */
protected $printout; protected $printout;
/** /**
* Constructor * Constructor
* *
* @param boolean $printout * @param boolean $printout
* @param string $runlevel * @param string $runlevel
*/ */
public function __construct($printout = false, $runlevel = self::LEVEL_INFO) { public function __construct($printout = false, $runlevel = self::LEVEL_INFO) {
$this->runlevel = (int)$runlevel; $this->printout = (boolean)$printout;
$this->printout = (boolean)$printout; $this->runlevel = (int)$runlevel;
} }
/** /**
* Add a message to the log data array * Add a message to the log data array
* If printout in this instance is set to true, directly output the message * If printout in this instance is set to true, directly output the message
* *
* @param string $msg * @param string $msg
* @param integer $runlevel * @param integer $runlevel
*/ */
public function log($msg, $runlevel = self::LEVEL_INFO) { public function log($msg, $runlevel = self::LEVEL_INFO) {
$time = time(); $time = time();
$this->data[] = array($this->runlevel, $msg, $time); $this->data[] = array($this->runlevel, $msg, $time);
if($this->printout and $runlevel <= $this->runlevel) { if($this->printout and $runlevel <= $this->runlevel) {
$this->writeLine($msg, $runlevel, $time); $this->writeLine($msg, $runlevel, $time);
} }
} }
/** /**
* Output the complete log. * Output the complete log.
* Log will be cleared if $clear = true * Log will be cleared if $clear = true
* *
* @param boolean $clear * @param boolean $clear
* @param integer $runlevel * @param integer $runlevel
*/ */
public function printout($clear = true, $runlevel = null) { public function printout($clear = true, $runlevel = null) {
if($runlevel === null) { if($runlevel === null) {
$runlevel = $this->runlevel; $runlevel = $this->runlevel;
} }
foreach($this->data as $data) { foreach($this->data as $data) {
if($runlevel <= $data[0]) { if($runlevel <= $data[0]) {
$this->writeLine($data[1], $runlevel, $data[2]); $this->writeLine($data[1], $runlevel, $data[2]);
} }
} }
if($clear) { if($clear) {
$this->data = array(); $this->data = array();
} }
} }
protected function writeLine($msg, $runlevel, $time) { protected function writeLine($msg, $runlevel, $time) {
//echo date('Y-m-d H:i:s', $time)." [".$this->names[$runlevel]."]: ".$msg."\n"; //echo date('Y-m-d H:i:s', $time)." [".$this->names[$runlevel]."]: ".$msg."\n";
echo $time." [".$this->names[$runlevel]."]: ".$msg."\n"; echo $time." [".$this->names[$runlevel]."]: ".$msg."\n";
} }
} }

View File

@ -41,89 +41,89 @@ class XMPPHP_XMLObj {
* *
* @var string * @var string
*/ */
public $name; public $name;
/** /**
* Namespace * Namespace
* *
* @var string * @var string
*/ */
public $ns; public $ns;
/** /**
* Attributes * Attributes
* *
* @var array * @var array
*/ */
public $attrs = array(); public $attrs = array();
/** /**
* Subs? * Subs?
* *
* @var array * @var array
*/ */
public $subs = array(); public $subs = array();
/** /**
* Node data * Node data
* *
* @var string * @var string
*/ */
public $data = ''; public $data = '';
/** /**
* Constructor * Constructor
* *
* @param string $name * @param string $name
* @param string $ns * @param string $ns
* @param array $attrs * @param array $attrs
* @param string $data * @param string $data
*/ */
public function __construct($name, $ns = '', $attrs = array(), $data = '') { public function __construct($name, $ns = '', $attrs = array(), $data = '') {
$this->name = strtolower($name); $this->name = strtolower($name);
$this->ns = $ns; $this->ns = $ns;
if(is_array($attrs) && count($attrs)) { if(is_array($attrs) && count($attrs)) {
foreach($attrs as $key => $value) { foreach($attrs as $key => $value) {
$this->attrs[strtolower($key)] = $value; $this->attrs[strtolower($key)] = $value;
} }
} }
$this->data = $data; $this->data = $data;
} }
/** /**
* Dump this XML Object to output. * Dump this XML Object to output.
* *
* @param integer $depth * @param integer $depth
*/ */
public function printObj($depth = 0) { public function printObj($depth = 0) {
print str_repeat("\t", $depth) . $this->name . " " . $this->ns . ' ' . $this->data; print str_repeat("\t", $depth) . $this->name . " " . $this->ns . ' ' . $this->data;
print "\n"; print "\n";
foreach($this->subs as $sub) { foreach($this->subs as $sub) {
$sub->printObj($depth + 1); $sub->printObj($depth + 1);
} }
} }
/** /**
* Return this XML Object in xml notation * Return this XML Object in xml notation
* *
* @param string $str * @param string $str
*/ */
public function toString($str = '') { public function toString($str = '') {
$str .= "<{$this->name} xmlns='{$this->ns}' "; $str .= "<{$this->name} xmlns='{$this->ns}' ";
foreach($this->attrs as $key => $value) { foreach($this->attrs as $key => $value) {
if($key != 'xmlns') { if($key != 'xmlns') {
$value = htmlspecialchars($value); $value = htmlspecialchars($value);
$str .= "$key='$value' "; $str .= "$key='$value' ";
} }
} }
$str .= ">"; $str .= ">";
foreach($this->subs as $sub) { foreach($this->subs as $sub) {
$str .= $sub->toString(); $str .= $sub->toString();
} }
$body = htmlspecialchars($this->data); $body = htmlspecialchars($this->data);
$str .= "$body</{$this->name}>"; $str .= "$body</{$this->name}>";
return $str; return $str;
} }
/** /**
* Has this XML Object the given sub? * Has this XML Object the given sub?
@ -131,12 +131,12 @@ class XMPPHP_XMLObj {
* @param string $name * @param string $name
* @return boolean * @return boolean
*/ */
public function hasSub($name) { public function hasSub($name) {
foreach($this->subs as $sub) { foreach($this->subs as $sub) {
if($sub->name == $name) return true; if($sub->name == $name) return true;
} }
return false; return false;
} }
/** /**
* Return a sub * Return a sub
@ -145,11 +145,11 @@ class XMPPHP_XMLObj {
* @param string $attrs * @param string $attrs
* @param string $ns * @param string $ns
*/ */
public function sub($name, $attrs = null, $ns = null) { public function sub($name, $attrs = null, $ns = null) {
foreach($this->subs as $sub) { foreach($this->subs as $sub) {
if($sub->name == $name) { if($sub->name == $name) {
return $sub; return $sub;
} }
} }
} }
} }

View File

@ -45,17 +45,17 @@ require_once 'Log.php';
* @version $Id$ * @version $Id$
*/ */
class XMPPHP_XMLStream { class XMPPHP_XMLStream {
/** /**
* @var resource * @var resource
*/ */
protected $socket; protected $socket;
/** /**
* @var resource * @var resource
*/ */
protected $parser; protected $parser;
/** /**
* @var string * @var string
*/ */
protected $buffer; protected $buffer;
/** /**
* @var integer * @var integer
@ -65,7 +65,7 @@ class XMPPHP_XMLStream {
* @var string * @var string
*/ */
protected $host; protected $host;
/** /**
* @var integer * @var integer
*/ */
protected $port; protected $port;
@ -100,80 +100,80 @@ class XMPPHP_XMLStream {
/** /**
* @var array * @var array
*/ */
protected $nshandlers = array(); protected $nshandlers = array();
/** /**
* @var array * @var array
*/ */
protected $idhandlers = array(); protected $idhandlers = array();
/** /**
* @var array * @var array
*/ */
protected $eventhandlers = array(); protected $eventhandlers = array();
/** /**
* @var integer * @var integer
*/ */
protected $lastid = 0; protected $lastid = 0;
/**
* @var string
*/
protected $default_ns;
/** /**
* @var string * @var string
*/ */
protected $until = ''; protected $default_ns;
/** /**
* @var array * @var string
*/ */
protected $until_happened = false; protected $until = '';
/** /**
* @var array * @var array
*/ */
protected $until_payload = array(); protected $until_happened = false;
/** /**
* @var XMPPHP_Log * @var array
*/ */
protected $log; protected $until_payload = array();
/** /**
* @var boolean * @var XMPPHP_Log
*/ */
protected $reconnect = true; protected $log;
/** /**
* @var boolean * @var boolean
*/ */
protected $been_reset = false; protected $reconnect = true;
/** /**
* @var boolean * @var boolean
*/ */
protected $is_server; protected $been_reset = false;
/**
* @var boolean
*/
protected $is_server;
/** /**
* Constructor * Constructor
* *
* @param string $host * @param string $host
* @param string $port * @param string $port
* @param boolean $printlog * @param boolean $printlog
* @param string $loglevel * @param string $loglevel
* @param boolean $is_server * @param boolean $is_server
*/ */
public function __construct($host = null, $port = null, $printlog = false, $loglevel = null, $is_server = false) { public function __construct($host = null, $port = null, $printlog = false, $loglevel = null, $is_server = false) {
$this->reconnect = !$is_server; $this->reconnect = !$is_server;
$this->is_server = $is_server; $this->is_server = $is_server;
$this->host = $host; $this->host = $host;
$this->port = $port; $this->port = $port;
$this->setupParser(); $this->setupParser();
$this->log = new XMPPHP_Log($printlog, $loglevel); $this->log = new XMPPHP_Log($printlog, $loglevel);
} }
/** /**
* Destructor * Destructor
* Cleanup connection * Cleanup connection
*/ */
public function __destruct() { public function __destruct() {
if(!$this->disconnected) { if(!$this->disconnected && $this->socket) {
$this->disconnect(); $this->disconnect();
} }
} }
/** /**
* Return the log instance * Return the log instance
* *
@ -188,21 +188,21 @@ class XMPPHP_XMLStream {
* *
* @return integer * @return integer
*/ */
public function getId() { public function getId() {
$this->lastid++; $this->lastid++;
return $this->lastid; return $this->lastid;
} }
/** /**
* Add ID Handler * Add ID Handler
* *
* @param integer $id * @param integer $id
* @param string $pointer * @param string $pointer
* @param string $obj * @param string $obj
*/ */
public function addIdHandler($id, $pointer, $obj = null) { public function addIdHandler($id, $pointer, $obj = null) {
$this->idhandlers[$id] = array($pointer, $obj); $this->idhandlers[$id] = array($pointer, $obj);
} }
/** /**
* Add Handler * Add Handler
@ -213,9 +213,9 @@ class XMPPHP_XMLStream {
* @param string $obj * @param string $obj
* @param integer $depth * @param integer $depth
*/ */
public function addHandler($name, $ns, $pointer, $obj = null, $depth = 1) { public function addHandler($name, $ns, $pointer, $obj = null, $depth = 1) {
$this->nshandlers[] = array($name,$ns,$pointer,$obj, $depth); $this->nshandlers[] = array($name,$ns,$pointer,$obj, $depth);
} }
/** /**
* Add Evemt Handler * Add Evemt Handler
@ -224,35 +224,40 @@ class XMPPHP_XMLStream {
* @param string $pointer * @param string $pointer
* @param string $obj * @param string $obj
*/ */
public function addEventHandler($name, $pointer, $obj) { public function addEventHandler($name, $pointer, $obj) {
$this->eventhanders[] = array($name, $pointer, $obj); $this->eventhanders[] = array($name, $pointer, $obj);
} }
/** /**
* Connect to XMPP Host * Connect to XMPP Host
* *
* @param boolean $persistent * @param integer $timeout
* @param boolean $sendinit * @param boolean $persistent
*/ * @param boolean $sendinit
public function connect($persistent = false, $sendinit = true) { */
$this->disconnected = false; public function connect($timeout = 30, $persistent = false, $sendinit = true) {
$this->sent_disconnect = false; $this->disconnected = false;
if($persistent) { $this->sent_disconnect = false;
$conflag = STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT; if($persistent) {
} else { $conflag = STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT;
$conflag = STREAM_CLIENT_CONNECT; } else {
} $conflag = STREAM_CLIENT_CONNECT;
$this->log->log("Connecting to tcp://{$this->host}:{$this->port}"); }
$this->socket = stream_socket_client("tcp://{$this->host}:{$this->port}", $conflag); $this->log->log("Connecting to tcp://{$this->host}:{$this->port}");
if(!$this->socket) { try {
$this->log->log("Could not connect.", XMPPHP_Log::LEVEL_ERROR); $this->socket = @stream_socket_client("tcp://{$this->host}:{$this->port}", $errno, $errstr, $timeout, $conflag);
$this->disconnected = true; } catch (Exception $e) {
throw new XMPPHP_Exception($e->getMessage());
throw new XMPPHP_Exception('Could not connect.'); }
} if(!$this->socket) {
stream_set_blocking($this->socket, 1); $this->log->log("Could not connect.", XMPPHP_Log::LEVEL_ERROR);
if($sendinit) $this->send($this->stream_start); $this->disconnected = true;
}
throw new XMPPHP_Exception('Could not connect.');
}
stream_set_blocking($this->socket, 1);
if($sendinit) $this->send($this->stream_start);
}
/** /**
* Reconnect XMPP Host * Reconnect XMPP Host
@ -286,106 +291,106 @@ class XMPPHP_XMLStream {
return $this->connected; return $this->connected;
} }
/** /**
* Process * Process
* *
* @return string * @return string
*/ */
public function process() { public function process() {
$updated = ''; $updated = '';
while(!$this->disconnect) { while(!$this->disconnect) {
$read = array($this->socket); $read = array($this->socket);
$write = null; $write = null;
$except = null; $except = null;
$updated = stream_select($read, $write, $except, 1); $updated = stream_select($read, $write, $except, 1);
if ($updated > 0) { if ($updated > 0) {
$buff = @fread($this->socket, 1024); $buff = @fread($this->socket, 1024);
if(!$buff) { if(!$buff) {
if($this->reconnect) { if($this->reconnect) {
$this->doReconnect(); $this->doReconnect();
} else { } else {
fclose($this->socket); fclose($this->socket);
return false; return false;
} }
} }
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE); $this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
xml_parse($this->parser, $buff, false); xml_parse($this->parser, $buff, false);
} }
} }
} }
/** /**
* Process until a timeout occurs * Process until a timeout occurs
* *
* @param integer $timeout * @param integer $timeout
* @return string * @return string
*/ */
public function processTime($timeout = -1) { public function processTime($timeout = -1) {
$start = time(); $start = time();
$updated = ''; $updated = '';
while(!$this->disconnected and ($timeout == -1 or time() - $start < $timeout)) { while(!$this->disconnected and ($timeout == -1 or time() - $start < $timeout)) {
$read = array($this->socket); $read = array($this->socket);
$write = null; $write = null;
$except = null; $except = null;
$updated = stream_select($read, $write, $except, 1); $updated = stream_select($read, $write, $except, 1);
if ($updated > 0) { if ($updated > 0) {
$buff = @fread($this->socket, 1024); $buff = @fread($this->socket, 1024);
if(!$buff) { if(!$buff) {
if($this->reconnect) { if($this->reconnect) {
$this->doReconnect(); $this->doReconnect();
} else { } else {
fclose($this->socket); fclose($this->socket);
return false; return false;
} }
} }
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE); $this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
xml_parse($this->parser, $buff, false); xml_parse($this->parser, $buff, false);
} }
} }
} }
/** /**
* Process until a specified event or a timeout occurs * Process until a specified event or a timeout occurs
* *
* @param string|array $event * @param string|array $event
* @param integer $timeout * @param integer $timeout
* @return string * @return string
*/ */
public function processUntil($event, $timeout=-1) { public function processUntil($event, $timeout=-1) {
$start = time(); $start = time();
if(!is_array($event)) $event = array($event); if(!is_array($event)) $event = array($event);
$this->until[] = $event; $this->until[] = $event;
end($this->until); end($this->until);
$event_key = key($this->until); $event_key = key($this->until);
reset($this->until); reset($this->until);
$updated = ''; $updated = '';
while(!$this->disconnected and $this->until[$event_key] and (time() - $start < $timeout or $timeout == -1)) { while(!$this->disconnected and $this->until[$event_key] and (time() - $start < $timeout or $timeout == -1)) {
$read = array($this->socket); $read = array($this->socket);
$write = null; $write = null;
$except = null; $except = null;
$updated = stream_select($read, $write, $except, 1); $updated = stream_select($read, $write, $except, 1);
if ($updated > 0) { if ($updated > 0) {
$buff = @fread($this->socket, 1024); $buff = @fread($this->socket, 1024);
if(!$buff) { if(!$buff) {
if($this->reconnect) { if($this->reconnect) {
$this->doReconnect(); $this->doReconnect();
} else { } else {
fclose($this->socket); fclose($this->socket);
return false; return false;
} }
} }
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE); $this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
xml_parse($this->parser, $buff, false); xml_parse($this->parser, $buff, false);
} }
} }
if(array_key_exists($event_key, $this->until_payload)) { if(array_key_exists($event_key, $this->until_payload)) {
$payload = $this->until_payload[$event_key]; $payload = $this->until_payload[$event_key];
} else { } else {
$payload = array(); $payload = array();
} }
unset($this->until_payload[$event_key]); unset($this->until_payload[$event_key]);
return $payload; return $payload;
} }
/** /**
* Obsolete? * Obsolete?
@ -403,37 +408,37 @@ class XMPPHP_XMLStream {
* @param string $name * @param string $name
*/ */
protected function startXML($parser, $name, $attr) { protected function startXML($parser, $name, $attr) {
if($this->been_reset) { if($this->been_reset) {
$this->been_reset = false; $this->been_reset = false;
$this->xml_depth = 0; $this->xml_depth = 0;
} }
$this->xml_depth++; $this->xml_depth++;
if(array_key_exists('XMLNS', $attr)) { if(array_key_exists('XMLNS', $attr)) {
$this->current_ns[$this->xml_depth] = $attr['XMLNS']; $this->current_ns[$this->xml_depth] = $attr['XMLNS'];
} else { } else {
$this->current_ns[$this->xml_depth] = $this->current_ns[$this->xml_depth - 1]; $this->current_ns[$this->xml_depth] = $this->current_ns[$this->xml_depth - 1];
if(!$this->current_ns[$this->xml_depth]) $this->current_ns[$this->xml_depth] = $this->default_ns; if(!$this->current_ns[$this->xml_depth]) $this->current_ns[$this->xml_depth] = $this->default_ns;
} }
$ns = $this->current_ns[$this->xml_depth]; $ns = $this->current_ns[$this->xml_depth];
foreach($attr as $key => $value) { foreach($attr as $key => $value) {
if(strstr($key, ":")) { if(strstr($key, ":")) {
$key = explode(':', $key); $key = explode(':', $key);
$key = $key[1]; $key = $key[1];
$this->ns_map[$key] = $value; $this->ns_map[$key] = $value;
} }
} }
if(!strstr($name, ":") === false) if(!strstr($name, ":") === false)
{ {
$name = explode(':', $name); $name = explode(':', $name);
$ns = $this->ns_map[$name[0]]; $ns = $this->ns_map[$name[0]];
$name = $name[1]; $name = $name[1];
} }
$obj = new XMPPHP_XMLObj($name, $ns, $attr); $obj = new XMPPHP_XMLObj($name, $ns, $attr);
if($this->xml_depth > 1) { if($this->xml_depth > 1) {
$this->xmlobj[$this->xml_depth - 1]->subs[] = $obj; $this->xmlobj[$this->xml_depth - 1]->subs[] = $obj;
} }
$this->xmlobj[$this->xml_depth] = $obj; $this->xmlobj[$this->xml_depth] = $obj;
} }
/** /**
* XML end callback * XML end callback
@ -443,61 +448,61 @@ class XMPPHP_XMLStream {
* @param resource $parser * @param resource $parser
* @param string $name * @param string $name
*/ */
protected function endXML($parser, $name) { protected function endXML($parser, $name) {
#$this->log->log("Ending $name", XMPPHP_Log::LEVEL_DEBUG); #$this->log->log("Ending $name", XMPPHP_Log::LEVEL_DEBUG);
#print "$name\n"; #print "$name\n";
if($this->been_reset) { if($this->been_reset) {
$this->been_reset = false; $this->been_reset = false;
$this->xml_depth = 0; $this->xml_depth = 0;
} }
$this->xml_depth--; $this->xml_depth--;
if($this->xml_depth == 1) { if($this->xml_depth == 1) {
#clean-up old objects #clean-up old objects
$found = false; $found = false;
foreach($this->nshandlers as $handler) { foreach($this->nshandlers as $handler) {
if($handler[4] != 1 and $this->xmlobj[2]->hasSub($handler[0])) { if($handler[4] != 1 and $this->xmlobj[2]->hasSub($handler[0])) {
$searchxml = $this->xmlobj[2]->sub($handler[0]); $searchxml = $this->xmlobj[2]->sub($handler[0]);
} elseif(is_array($this->xmlobj) and array_key_exists(2, $this->xmlobj)) { } elseif(is_array($this->xmlobj) and array_key_exists(2, $this->xmlobj)) {
$searchxml = $this->xmlobj[2]; $searchxml = $this->xmlobj[2];
} }
if($searchxml !== null and $searchxml->name == $handler[0] and ($searchxml->ns == $handler[1] or (!$handler[1] and $searchxml->ns == $this->default_ns))) { if($searchxml !== null and $searchxml->name == $handler[0] and ($searchxml->ns == $handler[1] or (!$handler[1] and $searchxml->ns == $this->default_ns))) {
if($handler[3] === null) $handler[3] = $this; if($handler[3] === null) $handler[3] = $this;
$this->log->log("Calling {$handler[2]}", XMPPHP_Log::LEVEL_DEBUG); $this->log->log("Calling {$handler[2]}", XMPPHP_Log::LEVEL_DEBUG);
call_user_func(array($handler[3], $handler[2]), $this->xmlobj[2]); call_user_func(array($handler[3], $handler[2]), $this->xmlobj[2]);
} }
} }
foreach($this->idhandlers as $id => $handler) { foreach($this->idhandlers as $id => $handler) {
if(array_key_exists('id', $this->xmlobj[2]->attrs) and $this->xmlobj[2]->attrs['id'] == $id) { if(array_key_exists('id', $this->xmlobj[2]->attrs) and $this->xmlobj[2]->attrs['id'] == $id) {
if($handler[1] === null) $handler[1] = $this; if($handler[1] === null) $handler[1] = $this;
call_user_func(array($handler[1], $handler[0]), $this->xmlobj[2]); call_user_func(array($handler[1], $handler[0]), $this->xmlobj[2]);
#id handlers are only used once #id handlers are only used once
unset($this->idhandlers[$id]); unset($this->idhandlers[$id]);
break; break;
} }
} }
if(is_array($this->xmlobj)) { if(is_array($this->xmlobj)) {
$this->xmlobj = array_slice($this->xmlobj, 0, 1); $this->xmlobj = array_slice($this->xmlobj, 0, 1);
if(isset($this->xmlobj[0]) && $this->xmlobj[0] instanceof XMPPHP_XMLObj) { if(isset($this->xmlobj[0]) && $this->xmlobj[0] instanceof XMPPHP_XMLObj) {
$this->xmlobj[0]->subs = null; $this->xmlobj[0]->subs = null;
} }
} }
unset($this->xmlobj[2]); unset($this->xmlobj[2]);
} }
if($this->xml_depth == 0 and !$this->been_reset) { if($this->xml_depth == 0 and !$this->been_reset) {
if(!$this->disconnected) { if(!$this->disconnected) {
if(!$this->sent_disconnect) { if(!$this->sent_disconnect) {
$this->send($this->stream_end); $this->send($this->stream_end);
} }
$this->disconnected = true; $this->disconnected = true;
$this->sent_disconnect = true; $this->sent_disconnect = true;
fclose($this->socket); fclose($this->socket);
if($this->reconnect) { if($this->reconnect) {
$this->doReconnect(); $this->doReconnect();
} }
} }
$this->event('end_stream'); $this->event('end_stream');
} }
} }
/** /**
* XML character callback * XML character callback
@ -506,7 +511,7 @@ class XMPPHP_XMLStream {
* @param resource $parser * @param resource $parser
* @param string $data * @param string $data
*/ */
protected function charXML($parser, $data) { protected function charXML($parser, $data) {
if(array_key_exists($this->xml_depth, $this->xmlobj)) { if(array_key_exists($this->xml_depth, $this->xmlobj)) {
$this->xmlobj[$this->xml_depth]->data .= $data; $this->xmlobj[$this->xml_depth]->data .= $data;
} }
@ -518,29 +523,29 @@ class XMPPHP_XMLStream {
* @param string $name * @param string $name
* @param string $payload * @param string $payload
*/ */
protected function event($name, $payload = null) { protected function event($name, $payload = null) {
$this->log->log("EVENT: $name", XMPPHP_Log::LEVEL_DEBUG); $this->log->log("EVENT: $name", XMPPHP_Log::LEVEL_DEBUG);
foreach($this->eventhandlers as $handler) { foreach($this->eventhandlers as $handler) {
if($name == $handler[0]) { if($name == $handler[0]) {
if($handler[2] === null) { if($handler[2] === null) {
$handler[2] = $this; $handler[2] = $this;
} }
call_user_method($handler[1], $handler[2], $payload); call_user_method($handler[1], $handler[2], $payload);
} }
} }
foreach($this->until as $key => $until) { foreach($this->until as $key => $until) {
if(is_array($until)) { if(is_array($until)) {
if(in_array($name, $until)) { if(in_array($name, $until)) {
$this->until_payload[$key][] = array($name, $payload); $this->until_payload[$key][] = array($name, $payload);
$this->until[$key] = false; $this->until[$key] = false;
} }
} }
} }
} }
/** /**
* Read from socket * Read from socket
*/ */
protected function read() { protected function read() {
$buff = @fread($this->socket, 1024); $buff = @fread($this->socket, 1024);
if(!$buff) { if(!$buff) {
@ -560,35 +565,35 @@ class XMPPHP_XMLStream {
* *
* @param string $msg * @param string $msg
*/ */
protected function send($msg) { protected function send($msg) {
#socket_write($this->socket, $msg); #socket_write($this->socket, $msg);
$this->log->log("SENT: $msg", XMPPHP_Log::LEVEL_VERBOSE); $this->log->log("SENT: $msg", XMPPHP_Log::LEVEL_VERBOSE);
@fwrite($this->socket, $msg); @fwrite($this->socket, $msg);
} }
/** /**
* Reset connection * Reset connection
*/ */
protected function reset() { protected function reset() {
$this->xml_depth = 0; $this->xml_depth = 0;
unset($this->xmlobj); unset($this->xmlobj);
$this->xmlobj = array(); $this->xmlobj = array();
$this->setupParser(); $this->setupParser();
if(!$this->is_server) { if(!$this->is_server) {
$this->send($this->stream_start); $this->send($this->stream_start);
} }
$this->been_reset = true; $this->been_reset = true;
} }
/** /**
* Setup the XML parser * Setup the XML parser
*/ */
protected function setupParser() { protected function setupParser() {
$this->parser = xml_parser_create('UTF-8'); $this->parser = xml_parser_create('UTF-8');
xml_parser_set_option($this->parser, XML_OPTION_SKIP_WHITE, 1); xml_parser_set_option($this->parser, XML_OPTION_SKIP_WHITE, 1);
xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, 'UTF-8'); xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, 'UTF-8');
xml_set_object($this->parser, $this); xml_set_object($this->parser, $this);
xml_set_element_handler($this->parser, 'startXML', 'endXML'); xml_set_element_handler($this->parser, 'startXML', 'endXML');
xml_set_character_data_handler($this->parser, 'charXML'); xml_set_character_data_handler($this->parser, 'charXML');
} }
} }

View File

@ -42,80 +42,80 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
/** /**
* @var string * @var string
*/ */
protected $server; protected $server;
/** /**
* @var string * @var string
*/ */
protected $user; protected $user;
/** /**
* @var string * @var string
*/ */
protected $password; protected $password;
/** /**
* @var string * @var string
*/ */
protected $resource; protected $resource;
/** /**
* @var string * @var string
*/ */
protected $fulljid; protected $fulljid;
/** /**
* @var string * @var string
*/ */
protected $basejid; protected $basejid;
/**
* @var boolean
*/
protected $authed = false;
/** /**
* @var boolean * @var boolean
*/ */
protected $auto_subscribe = false; protected $authed = false;
/** /**
* @var boolean * @var boolean
*/ */
protected $use_encryption = true; protected $auto_subscribe = false;
/** /**
* Constructor * @var boolean
* */
* @param string $host protected $use_encryption = true;
* @param integer $port
* @param string $user /**
* @param string $password * Constructor
* @param string $resource *
* @param string $server * @param string $host
* @param boolean $printlog * @param integer $port
* @param string $loglevel * @param string $user
*/ * @param string $password
public function __construct($host, $port, $user, $password, $resource, $server = null, $printlog = false, $loglevel = null) { * @param string $resource
parent::__construct($host, $port, $printlog, $loglevel); * @param string $server
* @param boolean $printlog
$this->user = $user; * @param string $loglevel
$this->password = $password; */
$this->resource = $resource; public function __construct($host, $port, $user, $password, $resource, $server = null, $printlog = false, $loglevel = null) {
if(!$server) $server = $host; parent::__construct($host, $port, $printlog, $loglevel);
$this->basejid = $this->user . '@' . $this->host;
$this->user = $user;
$this->password = $password;
$this->resource = $resource;
if(!$server) $server = $host;
$this->basejid = $this->user . '@' . $this->host;
$this->stream_start = '<stream:stream to="' . $server . '" xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" version="1.0">'; $this->stream_start = '<stream:stream to="' . $server . '" xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" version="1.0">';
$this->stream_end = '</stream:stream>'; $this->stream_end = '</stream:stream>';
$this->default_ns = 'jabber:client'; $this->default_ns = 'jabber:client';
$this->addHandler('features', 'http://etherx.jabber.org/streams', 'features_handler'); $this->addHandler('features', 'http://etherx.jabber.org/streams', 'features_handler');
$this->addHandler('success', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_success_handler'); $this->addHandler('success', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_success_handler');
$this->addHandler('failure', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_failure_handler'); $this->addHandler('failure', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_failure_handler');
$this->addHandler('proceed', 'urn:ietf:params:xml:ns:xmpp-tls', 'tls_proceed_handler'); $this->addHandler('proceed', 'urn:ietf:params:xml:ns:xmpp-tls', 'tls_proceed_handler');
$this->addHandler('message', 'jabber:client', 'message_handler'); $this->addHandler('message', 'jabber:client', 'message_handler');
$this->addHandler('presence', 'jabber:client', 'presence_handler'); $this->addHandler('presence', 'jabber:client', 'presence_handler');
} }
/** /**
* Turn encryption on/ff * Turn encryption on/ff
@ -126,14 +126,14 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
$this->use_encryption = $useEncryption; $this->use_encryption = $useEncryption;
} }
/** /**
* Turn on auto-authorization of subscription requests. * Turn on auto-authorization of subscription requests.
* *
* @param boolean $autoSubscribe * @param boolean $autoSubscribe
*/ */
public function autoSubscribe($autoSubscribe = true) { public function autoSubscribe($autoSubscribe = true) {
$this->auto_subscribe = $autoSubscribe; $this->auto_subscribe = $autoSubscribe;
} }
/** /**
* Send XMPP Message * Send XMPP Message
@ -143,7 +143,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
* @param string $type * @param string $type
* @param string $subject * @param string $subject
*/ */
public function message($to, $body, $type = 'chat', $subject = null) { public function message($to, $body, $type = 'chat', $subject = null) {
$to = htmlspecialchars($to); $to = htmlspecialchars($to);
$body = htmlspecialchars($body); $body = htmlspecialchars($body);
$subject = htmlspecialchars($subject); $subject = htmlspecialchars($subject);
@ -183,118 +183,118 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
$this->send($out); $this->send($out);
} }
/** /**
* Message handler * Message handler
* *
* @param string $xml * @param string $xml
*/ */
public function message_handler($xml) { public function message_handler($xml) {
if(isset($xml->attrs['type'])) { if(isset($xml->attrs['type'])) {
$payload['type'] = $xml->attrs['type']; $payload['type'] = $xml->attrs['type'];
} else { } else {
$payload['type'] = 'chat'; $payload['type'] = 'chat';
} }
$payload['from'] = $xml->attrs['from']; $payload['from'] = $xml->attrs['from'];
$payload['body'] = $xml->sub('body')->data; $payload['body'] = $xml->sub('body')->data;
$this->log->log("Message: {$xml->sub('body')->data}", XMPPHP_Log::LEVEL_DEBUG); $this->log->log("Message: {$xml->sub('body')->data}", XMPPHP_Log::LEVEL_DEBUG);
$this->event('message', $payload); $this->event('message', $payload);
} }
/** /**
* Presence handler * Presence handler
* *
* @param string $xml * @param string $xml
*/ */
public function presence_handler($xml) { public function presence_handler($xml) {
$payload['type'] = (isset($xml->attrs['type'])) ? $xml->attrs['type'] : 'available'; $payload['type'] = (isset($xml->attrs['type'])) ? $xml->attrs['type'] : 'available';
$payload['show'] = (isset($xml->sub('show')->data)) ? $xml->sub('show')->data : $payload['type']; $payload['show'] = (isset($xml->sub('show')->data)) ? $xml->sub('show')->data : $payload['type'];
$payload['from'] = $xml->attrs['from']; $payload['from'] = $xml->attrs['from'];
$payload['status'] = (isset($xml->sub('status')->data)) ? $xml->sub('status')->data : ''; $payload['status'] = (isset($xml->sub('status')->data)) ? $xml->sub('status')->data : '';
$this->log->log("Presence: {$payload['from']} [{$payload['show']}] {$payload['status']}", XMPPHP_Log::LEVEL_DEBUG); $this->log->log("Presence: {$payload['from']} [{$payload['show']}] {$payload['status']}", XMPPHP_Log::LEVEL_DEBUG);
if($xml->attrs['type'] == 'subscribe') { if($xml->attrs['type'] == 'subscribe') {
if($this->auto_subscribe) $this->send("<presence type='subscribed' to='{$xml->attrs['from']}' from='{$this->basejid}' /><presence type='subscribe' to='{$xml->attrs['from']}' from='{$this->basejid}' />"); if($this->auto_subscribe) $this->send("<presence type='subscribed' to='{$xml->attrs['from']}' from='{$this->basejid}' /><presence type='subscribe' to='{$xml->attrs['from']}' from='{$this->basejid}' />");
$this->event('subscription_requested', $payload); $this->event('subscription_requested', $payload);
} elseif($xml->attrs['type'] == 'subscribed') { } elseif($xml->attrs['type'] == 'subscribed') {
$this->event('subscription_accepted', $payload); $this->event('subscription_accepted', $payload);
} else { } else {
$this->event('presence', $payload); $this->event('presence', $payload);
} }
} }
/** /**
* Features handler * Features handler
* *
* @param string $xml * @param string $xml
*/ */
protected function features_handler($xml) { protected function features_handler($xml) {
if($xml->hasSub('starttls') and $this->use_encryption) { if($xml->hasSub('starttls') and $this->use_encryption) {
$this->send("<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'><required /></starttls>"); $this->send("<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'><required /></starttls>");
} elseif($xml->hasSub('bind')) { } elseif($xml->hasSub('bind')) {
$id = $this->getId(); $id = $this->getId();
$this->addIdHandler($id, 'resource_bind_handler'); $this->addIdHandler($id, 'resource_bind_handler');
$this->send("<iq xmlns=\"jabber:client\" type=\"set\" id=\"$id\"><bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\"><resource>{$this->resource}</resource></bind></iq>"); $this->send("<iq xmlns=\"jabber:client\" type=\"set\" id=\"$id\"><bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\"><resource>{$this->resource}</resource></bind></iq>");
} else { } else {
$this->log->log("Attempting Auth..."); $this->log->log("Attempting Auth...");
$this->send("<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='PLAIN'>" . base64_encode("\x00" . $this->user . "\x00" . $this->password) . "</auth>"); $this->send("<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='PLAIN'>" . base64_encode("\x00" . $this->user . "\x00" . $this->password) . "</auth>");
} }
} }
/** /**
* SASL success handler * SASL success handler
* *
* @param string $xml * @param string $xml
*/ */
protected function sasl_success_handler($xml) { protected function sasl_success_handler($xml) {
$this->log->log("Auth success!"); $this->log->log("Auth success!");
$this->authed = true; $this->authed = true;
$this->reset(); $this->reset();
} }
/** /**
* SASL feature handler * SASL feature handler
* *
* @param string $xml * @param string $xml
*/ */
protected function sasl_failure_handler($xml) { protected function sasl_failure_handler($xml) {
$this->log->log("Auth failed!", XMPPHP_Log::LEVEL_ERROR); $this->log->log("Auth failed!", XMPPHP_Log::LEVEL_ERROR);
$this->disconnect(); $this->disconnect();
throw new XMPPHP_Exception('Auth failed!'); throw new XMPPHP_Exception('Auth failed!');
} }
/** /**
* Resource bind handler * Resource bind handler
* *
* @param string $xml * @param string $xml
*/ */
protected function resource_bind_handler($xml) { protected function resource_bind_handler($xml) {
if($xml->attrs['type'] == 'result') { if($xml->attrs['type'] == 'result') {
$this->log->log("Bound to " . $xml->sub('bind')->sub('jid')->data); $this->log->log("Bound to " . $xml->sub('bind')->sub('jid')->data);
$this->fulljid = $xml->sub('bind')->sub('jid')->data; $this->fulljid = $xml->sub('bind')->sub('jid')->data;
} }
$id = $this->getId(); $id = $this->getId();
$this->addIdHandler($id, 'session_start_handler'); $this->addIdHandler($id, 'session_start_handler');
$this->send("<iq xmlns='jabber:client' type='set' id='$id'><session xmlns='urn:ietf:params:xml:ns:xmpp-session' /></iq>"); $this->send("<iq xmlns='jabber:client' type='set' id='$id'><session xmlns='urn:ietf:params:xml:ns:xmpp-session' /></iq>");
} }
/** /**
* Session start handler * Session start handler
* *
* @param string $xml * @param string $xml
*/ */
protected function session_start_handler($xml) { protected function session_start_handler($xml) {
$this->log->log("Session started"); $this->log->log("Session started");
$this->event('session_start'); $this->event('session_start');
} }
/** /**
* TLS proceed handler * TLS proceed handler
* *
* @param string $xml * @param string $xml
*/ */
protected function tls_proceed_handler($xml) { protected function tls_proceed_handler($xml) {
$this->log->log("Starting TLS encryption"); $this->log->log("Starting TLS encryption");
stream_socket_enable_crypto($this->socket, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT); stream_socket_enable_crypto($this->socket, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT);
$this->reset(); $this->reset();
} }
} }