Modern version of XMPPHP extlib
Original XMPPHP is no longer maintained Therefore I've done some optimizations and imported some commits from birkner and zorn-v forks. None of the forks really looked ready to be adopted...
This commit is contained in:
parent
fd9cac3c17
commit
c7cdcc588a
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
composer.phar
|
||||
/vendor/
|
||||
|
||||
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||
# composer.lock
|
59
README
59
README
@ -1,59 +0,0 @@
|
||||
About
|
||||
================================================================================
|
||||
XMPPHP is an elegant PHP library for XMPP (aka Jabber, Google Talk, etc).
|
||||
|
||||
Homepage: http://code.google.com/p/xmpphp
|
||||
This fork: http://github.com/cweiske/xmpphp/
|
||||
Chatroom: xmpphp@conference.psi-im.org (XMPP MUC)
|
||||
PEAR package: http://pearhub.org/projects/cwXMPPHP/
|
||||
|
||||
Author: Nathan Fritz, jabber id: fritzy [at] netflint.net
|
||||
Co-Author: Stephan Wentz, jabber id: stephan [at] wentz.it
|
||||
Maintainer of this fork: Christian Weiske <cweiske@cweiske.de>
|
||||
|
||||
If you have any questions (no matter how dumb), please send me an IM. I enjoy
|
||||
helping people with my code.
|
||||
|
||||
|
||||
Requirements
|
||||
================================================================================
|
||||
* PHP 5.x
|
||||
* SSL Support Compiled
|
||||
|
||||
History
|
||||
================================================================================
|
||||
Carlo Zottmann handed me maintenance of Class.Jabber.PHP years and years ago
|
||||
(2003?). While I did fix some bugs, I never did much with it. I promised many
|
||||
people that it would return as a PHP5 rewrite. That day has finally come.
|
||||
|
||||
This code is based on my experience with Class.Jabber.PHP, but more closely
|
||||
related to my Python library, SleekXMPP (http://code.google.com/p/sleekxmpp).
|
||||
|
||||
Documentation
|
||||
================================================================================
|
||||
For now, look at the examples. In the near future, I'll have better
|
||||
documentation on the website.
|
||||
|
||||
Installation
|
||||
================================================================================
|
||||
Either get the code from github, the last release from google code
|
||||
or install the PEAR package from pearhub.org:
|
||||
$ pear channel-discover pearhub.org
|
||||
$ pear install pearhub/cwXMPPHP
|
||||
|
||||
The code on google code is not being actively maintained anymore, so
|
||||
don't expect current releases there.
|
||||
|
||||
|
||||
TODO
|
||||
================================================================================
|
||||
* Documentation
|
||||
* MUC Support
|
||||
|
||||
License Exception
|
||||
===============================================================================
|
||||
Please contact Nathan Fritz for library exceptions if you would like to
|
||||
distribute XMPPHP with a non-GPL compatible license.
|
||||
|
||||
Also, if you would like to distribute XMPPHP as part of a commercial package,
|
||||
I sell commercial licenses.
|
20
README.md
Normal file
20
README.md
Normal file
@ -0,0 +1,20 @@
|
||||
README
|
||||
======
|
||||
|
||||
About XMPPHP
|
||||
------------
|
||||
|
||||
XMPPHP is an elegant PHP library for XMPP (aka Jabber, Google Talk, etc).
|
||||
|
||||
* Homepage: [http://code.google.com/p/xmpphp]
|
||||
* Chatroom: [xmpphp@conference.psi-im.org] (XMPP MUC)
|
||||
* Author: Nathan Fritz, jabber id: fritzy [at] netflint.net
|
||||
* Co-Author: Stephan Wentz, jabber id: stephan [at] wentz.it
|
||||
* This fork: https://github.com/diogogithub/xmpphp
|
||||
* Maintainer of this fork: Diogo Cordeiro <diogo@fc.up.pt>
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
* PHP 7.0
|
||||
* SSL Support Compiled
|
523
XMPPHP/BOSH.php
523
XMPPHP/BOSH.php
@ -1,188 +1,409 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* XMPPHP: The PHP XMPP Library
|
||||
* Copyright (C) 2008 Nathanael C. Fritz
|
||||
* This file is part of SleekXMPP.
|
||||
*
|
||||
*
|
||||
* XMPPHP is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* XMPPHP is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with XMPPHP; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Alexander Birkner (https://github.com/BirknerAlex)
|
||||
* @author zorn-v (https://github.com/zorn-v/xmpphp/)
|
||||
* @author GNU social
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
*/
|
||||
|
||||
namespace XMPPHP;
|
||||
|
||||
use SimpleXMLElement;
|
||||
|
||||
/** XMPPHP_XMLStream */
|
||||
require_once 'XMPPHP/XMPP.php';
|
||||
require_once __DIR__ . "/XMPP.php";
|
||||
|
||||
/**
|
||||
* XMPPHP Main Class
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
* XMPPHP BOSH
|
||||
*
|
||||
* @property int lat
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
class XMPPHP_BOSH extends XMPPHP_XMPP {
|
||||
class BOSH extends XMPP
|
||||
{
|
||||
/**
|
||||
* @var integer
|
||||
*/
|
||||
protected $rid;
|
||||
|
||||
protected $rid;
|
||||
protected $sid;
|
||||
protected $http_server;
|
||||
protected $http_buffer = Array();
|
||||
protected $session = false;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $sid;
|
||||
|
||||
public function connect($server, $wait='1', $session=false) {
|
||||
$this->http_server = $server;
|
||||
$this->use_encryption = false;
|
||||
$this->session = $session;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $http_server;
|
||||
|
||||
$this->rid = 3001;
|
||||
$this->sid = null;
|
||||
if($session)
|
||||
{
|
||||
$this->loadSession();
|
||||
}
|
||||
if(!$this->sid) {
|
||||
$body = $this->__buildBody();
|
||||
$body->addAttribute('hold','1');
|
||||
$body->addAttribute('to', $this->host);
|
||||
$body->addAttribute('route', "xmpp:{$this->host}:{$this->port}");
|
||||
$body->addAttribute('secure','true');
|
||||
$body->addAttribute('xmpp:version','1.6', 'urn:xmpp:xbosh');
|
||||
$body->addAttribute('wait', strval($wait));
|
||||
$body->addAttribute('ack','1');
|
||||
$body->addAttribute('xmlns:xmpp','urn:xmpp:xbosh');
|
||||
$buff = "<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'>";
|
||||
xml_parse($this->parser, $buff, false);
|
||||
$response = $this->__sendBody($body);
|
||||
$rxml = new SimpleXMLElement($response);
|
||||
$this->sid = $rxml['sid'];
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $http_buffer = array();
|
||||
|
||||
} else {
|
||||
$buff = "<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'>";
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $session = false;
|
||||
|
||||
public function __sendBody($body=null, $recv=true) {
|
||||
if(!$body) {
|
||||
$body = $this->__buildBody();
|
||||
}
|
||||
$ch = curl_init($this->http_server);
|
||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||
curl_setopt($ch, CURLOPT_POST, 1);
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $body->asXML());
|
||||
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
||||
$header = array('Accept-Encoding: gzip, deflate','Content-Type: text/xml; charset=utf-8');
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $header );
|
||||
curl_setopt($ch, CURLOPT_VERBOSE, 0);
|
||||
$output = '';
|
||||
if($recv) {
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||||
$output = curl_exec($ch);
|
||||
$this->http_buffer[] = $output;
|
||||
}
|
||||
curl_close($ch);
|
||||
return $output;
|
||||
}
|
||||
/**
|
||||
* @var integer
|
||||
*/
|
||||
protected $inactivity;
|
||||
|
||||
public function __buildBody($sub=null) {
|
||||
$xml = new SimpleXMLElement("<body xmlns='http://jabber.org/protocol/httpbind' xmlns:xmpp='urn:xmpp:xbosh' />");
|
||||
$xml->addAttribute('content', 'text/xml; charset=utf-8');
|
||||
$xml->addAttribute('rid', $this->rid);
|
||||
$this->rid += 1;
|
||||
if($this->sid) $xml->addAttribute('sid', $this->sid);
|
||||
#if($this->sid) $xml->addAttribute('xmlns', 'http://jabber.org/protocol/httpbind');
|
||||
$xml->addAttribute('xml:lang', 'en');
|
||||
if($sub) { // ok, so simplexml is lame
|
||||
$p = dom_import_simplexml($xml);
|
||||
$c = dom_import_simplexml($sub);
|
||||
$cn = $p->ownerDocument->importNode($c, true);
|
||||
$p->appendChild($cn);
|
||||
$xml = simplexml_import_dom($p);
|
||||
}
|
||||
return $xml;
|
||||
}
|
||||
/**
|
||||
* Connect
|
||||
*
|
||||
* @param $server
|
||||
* @param $wait
|
||||
* @param $session
|
||||
* @throws Exception
|
||||
* @throws Exception
|
||||
*/
|
||||
public function connect($server = null, $wait = '1', $session = false)
|
||||
{
|
||||
|
||||
public function __process() {
|
||||
if($this->http_buffer) {
|
||||
$this->__parseBuffer();
|
||||
} else {
|
||||
$this->__sendBody();
|
||||
$this->__parseBuffer();
|
||||
}
|
||||
}
|
||||
if (is_null($server)) {
|
||||
|
||||
public function __parseBuffer() {
|
||||
while ($this->http_buffer) {
|
||||
$idx = key($this->http_buffer);
|
||||
$buffer = $this->http_buffer[$idx];
|
||||
unset($this->http_buffer[$idx]);
|
||||
if($buffer) {
|
||||
$xml = new SimpleXMLElement($buffer);
|
||||
$children = $xml->xpath('child::node()');
|
||||
foreach ($children as $child) {
|
||||
$buff = $child->asXML();
|
||||
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// If we aren't given the server http url, try and guess it
|
||||
$port_string = ($this->port AND $this->port != 80) ? ':' . $this->port : '';
|
||||
$this->http_server = 'http://' . $this->host . $port_string . '/http-bind/';
|
||||
} else {
|
||||
$this->http_server = $server;
|
||||
}
|
||||
|
||||
public function send($msg) {
|
||||
$this->log->log("SEND: $msg", XMPPHP_Log::LEVEL_VERBOSE);
|
||||
$msg = new SimpleXMLElement($msg);
|
||||
#$msg->addAttribute('xmlns', 'jabber:client');
|
||||
$this->__sendBody($this->__buildBody($msg), true);
|
||||
#$this->__parseBuffer();
|
||||
}
|
||||
$this->use_encryption = false;
|
||||
$this->session = $session;
|
||||
$this->rid = 3001;
|
||||
$this->sid = null;
|
||||
$this->inactivity = 0;
|
||||
|
||||
public function reset() {
|
||||
$this->xml_depth = 0;
|
||||
unset($this->xmlobj);
|
||||
$this->xmlobj = array();
|
||||
$this->setupParser();
|
||||
#$this->send($this->stream_start);
|
||||
$body = $this->__buildBody();
|
||||
$body->addAttribute('to', $this->host);
|
||||
$body->addAttribute('xmpp:restart', 'true', 'urn:xmpp:xbosh');
|
||||
$buff = "<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'>";
|
||||
$response = $this->__sendBody($body);
|
||||
$this->been_reset = true;
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
if ($session) {
|
||||
$this->loadSession();
|
||||
}
|
||||
|
||||
public function loadSession() {
|
||||
if(isset($_SESSION['XMPPHP_BOSH_RID'])) $this->rid = $_SESSION['XMPPHP_BOSH_RID'];
|
||||
if(isset($_SESSION['XMPPHP_BOSH_SID'])) $this->sid = $_SESSION['XMPPHP_BOSH_SID'];
|
||||
if(isset($_SESSION['XMPPHP_BOSH_authed'])) $this->authed = $_SESSION['XMPPHP_BOSH_authed'];
|
||||
if(isset($_SESSION['XMPPHP_BOSH_jid'])) $this->jid = $_SESSION['XMPPHP_BOSH_jid'];
|
||||
if(isset($_SESSION['XMPPHP_BOSH_fulljid'])) $this->fulljid = $_SESSION['XMPPHP_BOSH_fulljid'];
|
||||
}
|
||||
if (!$this->sid) {
|
||||
|
||||
public function saveSession() {
|
||||
$_SESSION['XMPPHP_BOSH_RID'] = (string) $this->rid;
|
||||
$_SESSION['XMPPHP_BOSH_SID'] = (string) $this->sid;
|
||||
$_SESSION['XMPPHP_BOSH_authed'] = (boolean) $this->authed;
|
||||
$_SESSION['XMPPHP_BOSH_jid'] = (string) $this->jid;
|
||||
$_SESSION['XMPPHP_BOSH_fulljid'] = (string) $this->fulljid;
|
||||
}
|
||||
$body = $this->__buildBody();
|
||||
$body->addAttribute('hold', '1');
|
||||
$body->addAttribute('to', $this->server);
|
||||
$body->addAttribute('route', 'xmpp:' . $this->host . ':' . $this->port);
|
||||
$body->addAttribute('secure', 'true');
|
||||
$body->addAttribute('xmpp:version', '1.0', 'urn:xmpp:xbosh');
|
||||
$body->addAttribute('wait', strval($wait));
|
||||
$body->addAttribute('ack', '1');
|
||||
$body->addAttribute('xmlns:xmpp', 'urn:xmpp:xbosh');
|
||||
$buff = '<stream:stream xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams">';
|
||||
xml_parse($this->parser, $buff, false);
|
||||
$response = $this->__sendBody($body);
|
||||
$rxml = new SimpleXMLElement($response);
|
||||
$this->sid = $rxml['sid'];
|
||||
$this->inactivity = $rxml['inactivity'];
|
||||
} else {
|
||||
$buff = '<stream:stream xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams">';
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Load session
|
||||
*
|
||||
*/
|
||||
public function loadSession()
|
||||
{
|
||||
|
||||
if ($this->session == 'ON_FILE') {
|
||||
|
||||
// Session not started so use session_file
|
||||
$session_file = $this->getSessionFile();
|
||||
|
||||
// manage multiple accesses
|
||||
if (!file_exists($session_file)) {
|
||||
file_put_contents($session_file, '');
|
||||
}
|
||||
$session_file_fp = fopen($session_file, 'r');
|
||||
flock($session_file_fp, LOCK_EX);
|
||||
$session_serialized = file_get_contents($session_file, null, null, 6);
|
||||
flock($session_file_fp, LOCK_UN);
|
||||
fclose($session_file_fp);
|
||||
|
||||
$this->log->log('SESSION: reading ' . $session_serialized . ' from ' . $session_file, Log::LEVEL_VERBOSE);
|
||||
if ($session_serialized != '') {
|
||||
$_SESSION['XMPPHP_BOSH'] = unserialize($session_serialized);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['inactivity'])) {
|
||||
$this->inactivity = $_SESSION['XMPPHP_BOSH']['inactivity'];
|
||||
}
|
||||
|
||||
$this->lat = (time() - (isset($_SESSION['XMPPHP_BOSH']['lat']))) ? $_SESSION['XMPPHP_BOSH']['lat'] : 0;
|
||||
|
||||
if ($this->lat < $this->inactivity) {
|
||||
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['RID'])) {
|
||||
$this->rid = $_SESSION['XMPPHP_BOSH']['RID'];
|
||||
}
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['SID'])) {
|
||||
$this->sid = $_SESSION['XMPPHP_BOSH']['SID'];
|
||||
}
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['authed'])) {
|
||||
$this->authed = $_SESSION['XMPPHP_BOSH']['authed'];
|
||||
}
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['basejid'])) {
|
||||
$this->basejid = $_SESSION['XMPPHP_BOSH']['basejid'];
|
||||
}
|
||||
if (isset($_SESSION['XMPPHP_BOSH']['fulljid'])) {
|
||||
$this->fulljid = $_SESSION['XMPPHP_BOSH']['fulljid'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the session file
|
||||
*
|
||||
*/
|
||||
public function getSessionFile()
|
||||
{
|
||||
return sys_get_temp_dir() . '/' . $this->user . '_' . $this->server . '_session';
|
||||
}
|
||||
|
||||
/**
|
||||
* Build body
|
||||
*
|
||||
* @param $sub
|
||||
* @return SimpleXMLElement|string
|
||||
*/
|
||||
public function __buildBody($sub = null)
|
||||
{
|
||||
|
||||
$xml = '<body xmlns="http://jabber.org/protocol/httpbind" xmlns:xmpp="urn:xmpp:xbosh" />';
|
||||
$xml = new SimpleXMLElement($xml);
|
||||
$xml->addAttribute('content', 'text/xml; charset=utf-8');
|
||||
$xml->addAttribute('rid', $this->rid);
|
||||
$this->rid++;
|
||||
if ($this->sid) {
|
||||
$xml->addAttribute('sid', $this->sid);
|
||||
}
|
||||
|
||||
$xml->addAttribute('xml:lang', 'en');
|
||||
|
||||
if ($sub !== null) {
|
||||
|
||||
// Ok, so simplexml is lame
|
||||
$parent = dom_import_simplexml($xml);
|
||||
$content = dom_import_simplexml($sub);
|
||||
$child = $parent->ownerDocument->importNode($content, true);
|
||||
$parent->appendChild($child);
|
||||
$xml = simplexml_import_dom($parent);
|
||||
}
|
||||
|
||||
return $xml;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send body
|
||||
*
|
||||
* @param $body
|
||||
* @param $recv
|
||||
* @return bool|string
|
||||
* @throws Exception
|
||||
* @throws Exception
|
||||
*/
|
||||
public function __sendBody($body = null, $recv = true)
|
||||
{
|
||||
|
||||
if (!$body) {
|
||||
$body = $this->__buildBody();
|
||||
}
|
||||
|
||||
$output = '';
|
||||
$header = array('Accept-Encoding: gzip, deflate', 'Content-Type: text/xml; charset=utf-8');
|
||||
$ch = curl_init();
|
||||
|
||||
curl_setopt($ch, CURLOPT_URL, $this->http_server);
|
||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||
curl_setopt($ch, CURLOPT_POST, 1);
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $body->asXML());
|
||||
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
|
||||
curl_setopt($ch, CURLOPT_VERBOSE, 0);
|
||||
|
||||
if ($recv) {
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||||
$output = curl_exec($ch);
|
||||
if (curl_getinfo($ch, CURLINFO_HTTP_CODE) != '200') {
|
||||
throw new Exception('Wrong response from server!');
|
||||
}
|
||||
|
||||
$this->http_buffer[] = $output;
|
||||
}
|
||||
curl_close($ch);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* Process
|
||||
*
|
||||
* @param $null1
|
||||
* @param $null2
|
||||
*
|
||||
* null params are not used and just to statify Strict Function Declaration
|
||||
* @return bool
|
||||
* @throws Exception
|
||||
* @throws Exception
|
||||
*/
|
||||
public function __process($null1 = null, $null2 = null)
|
||||
{
|
||||
|
||||
if ($this->http_buffer) {
|
||||
$this->__parseBuffer();
|
||||
} else {
|
||||
$this->__sendBody();
|
||||
$this->__parseBuffer();
|
||||
}
|
||||
|
||||
$this->saveSession();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function __parseBuffer()
|
||||
{
|
||||
|
||||
while ($this->http_buffer) {
|
||||
|
||||
$idx = key($this->http_buffer);
|
||||
$buffer = $this->http_buffer[$idx];
|
||||
unset($this->http_buffer[$idx]);
|
||||
|
||||
if ($buffer) {
|
||||
|
||||
$xml = new SimpleXMLElement($buffer);
|
||||
$children = $xml->xpath('child::node()');
|
||||
|
||||
foreach ($children as $child) {
|
||||
$buff = $child->asXML();
|
||||
$this->log->log('RECV: ' . $buff, Log::LEVEL_VERBOSE);
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Save session
|
||||
*
|
||||
*/
|
||||
public function saveSession()
|
||||
{
|
||||
|
||||
$_SESSION['XMPPHP_BOSH']['RID'] = (string)$this->rid;
|
||||
$_SESSION['XMPPHP_BOSH']['SID'] = (string)$this->sid;
|
||||
$_SESSION['XMPPHP_BOSH']['authed'] = (boolean)$this->authed;
|
||||
$_SESSION['XMPPHP_BOSH']['basejid'] = (string)$this->basejid;
|
||||
$_SESSION['XMPPHP_BOSH']['fulljid'] = (string)$this->fulljid;
|
||||
$_SESSION['XMPPHP_BOSH']['inactivity'] = (string)$this->inactivity;
|
||||
$_SESSION['XMPPHP_BOSH']['lat'] = (string)time();
|
||||
|
||||
if ($this->session == 'ON_FILE') {
|
||||
|
||||
$session_file = $this->getSessionFile();
|
||||
$session_file_fp = fopen($session_file, 'r');
|
||||
flock($session_file_fp, LOCK_EX);
|
||||
// <?php prefix used to mask the content of the session file
|
||||
$session_serialized = '<?php ' . serialize($_SESSION);
|
||||
file_put_contents($session_file, $session_serialized);
|
||||
flock($session_file_fp, LOCK_UN);
|
||||
fclose($session_file_fp);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Process
|
||||
*
|
||||
* @param $msg
|
||||
* @param $null
|
||||
*
|
||||
* null param are not used and just to statify Strict Function Declaration
|
||||
* @throws Exception
|
||||
* @throws Exception
|
||||
*/
|
||||
public function send($msg, $null = null)
|
||||
{
|
||||
$this->log->log('SEND: ' . $msg, Log::LEVEL_VERBOSE);
|
||||
$msg = new SimpleXMLElement($msg);
|
||||
$this->__sendBody($this->__buildBody($msg), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
public function reset()
|
||||
{
|
||||
|
||||
$this->xml_depth = 0;
|
||||
unset($this->xmlobj);
|
||||
$this->xmlobj = array();
|
||||
$this->setupParser();
|
||||
$body = $this->__buildBody();
|
||||
$body->addAttribute('to', $this->host);
|
||||
$body->addAttribute('xmpp:restart', 'true', 'urn:xmpp:xbosh');
|
||||
$buff = '<stream:stream xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams">';
|
||||
$response = $this->__sendBody($body);
|
||||
$this->been_reset = true;
|
||||
xml_parse($this->parser, $buff, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disconnect
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
public function disconnect()
|
||||
{
|
||||
|
||||
parent::disconnect();
|
||||
|
||||
if ($this->session == 'ON_FILE') {
|
||||
unlink($this->getSessionFile());
|
||||
} else {
|
||||
$keys = array('RID', 'SID', 'authed', 'basejid', 'fulljid', 'inactivity', 'lat');
|
||||
foreach ($keys as $key) {
|
||||
unset($_SESSION['XMPPHP_BOSH'][$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
34
XMPPHP/Exception.php
Executable file → Normal file
34
XMPPHP/Exception.php
Executable file → Normal file
@ -1,41 +1,49 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* XMPPHP: The PHP XMPP Library
|
||||
* Copyright (C) 2008 Nathanael C. Fritz
|
||||
* This file is part of SleekXMPP.
|
||||
*
|
||||
*
|
||||
* XMPPHP is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* XMPPHP is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with XMPPHP; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @category xmpphp
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Alexander Birkner (https://github.com/BirknerAlex)
|
||||
* @author zorn-v (https://github.com/zorn-v/xmpphp/)
|
||||
* @author GNU social
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
*/
|
||||
|
||||
namespace XMPPHP;
|
||||
|
||||
use Exception as ObjectException;
|
||||
|
||||
/**
|
||||
* XMPPHP Exception
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
class XMPPHP_Exception extends Exception {
|
||||
class Exception extends ObjectException
|
||||
{
|
||||
}
|
||||
|
188
XMPPHP/Log.php
188
XMPPHP/Log.php
@ -1,119 +1,129 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* XMPPHP: The PHP XMPP Library
|
||||
* Copyright (C) 2008 Nathanael C. Fritz
|
||||
* This file is part of SleekXMPP.
|
||||
*
|
||||
*
|
||||
* XMPPHP is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* XMPPHP is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with XMPPHP; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Alexander Birkner (https://github.com/BirknerAlex)
|
||||
* @author zorn-v (https://github.com/zorn-v/xmpphp/)
|
||||
* @author GNU social
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
*/
|
||||
|
||||
namespace XMPPHP;
|
||||
|
||||
/**
|
||||
* XMPPHP Log
|
||||
*
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
class XMPPHP_Log {
|
||||
|
||||
const LEVEL_ERROR = 0;
|
||||
const LEVEL_WARNING = 1;
|
||||
const LEVEL_INFO = 2;
|
||||
const LEVEL_DEBUG = 3;
|
||||
const LEVEL_VERBOSE = 4;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $data = array();
|
||||
class Log
|
||||
{
|
||||
const LEVEL_ERROR = 0;
|
||||
const LEVEL_WARNING = 1;
|
||||
const LEVEL_INFO = 2;
|
||||
const LEVEL_DEBUG = 3;
|
||||
const LEVEL_VERBOSE = 4;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $names = array('ERROR', 'WARNING', 'INFO', 'DEBUG', 'VERBOSE');
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $data = array();
|
||||
|
||||
/**
|
||||
* @var integer
|
||||
*/
|
||||
protected $runlevel;
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $names = array('ERROR', 'WARNING', 'INFO', 'DEBUG', 'VERBOSE');
|
||||
|
||||
/**
|
||||
* @var boolean
|
||||
*/
|
||||
protected $printout;
|
||||
/**
|
||||
* @var integer
|
||||
*/
|
||||
protected $runlevel;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param boolean $printout
|
||||
* @param string $runlevel
|
||||
*/
|
||||
public function __construct($printout = false, $runlevel = self::LEVEL_INFO) {
|
||||
$this->printout = (boolean)$printout;
|
||||
$this->runlevel = (int)$runlevel;
|
||||
}
|
||||
/**
|
||||
* @var boolean
|
||||
*/
|
||||
protected $printout;
|
||||
|
||||
/**
|
||||
* Add a message to the log data array
|
||||
* If printout in this instance is set to true, directly output the message
|
||||
*
|
||||
* @param string $msg
|
||||
* @param integer $runlevel
|
||||
*/
|
||||
public function log($msg, $runlevel = self::LEVEL_INFO) {
|
||||
$time = time();
|
||||
#$this->data[] = array($this->runlevel, $msg, $time);
|
||||
if($this->printout and $runlevel <= $this->runlevel) {
|
||||
$this->writeLine($msg, $runlevel, $time);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param boolean $printout
|
||||
* @param int $runlevel
|
||||
*/
|
||||
public function __construct($printout = false, $runlevel = self::LEVEL_INFO)
|
||||
{
|
||||
$this->printout = (boolean)$printout;
|
||||
$this->runlevel = (int)$runlevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Output the complete log.
|
||||
* Log will be cleared if $clear = true
|
||||
*
|
||||
* @param boolean $clear
|
||||
* @param integer $runlevel
|
||||
*/
|
||||
public function printout($clear = true, $runlevel = null) {
|
||||
if($runlevel === null) {
|
||||
$runlevel = $this->runlevel;
|
||||
}
|
||||
foreach($this->data as $data) {
|
||||
if($runlevel <= $data[0]) {
|
||||
$this->writeLine($data[1], $runlevel, $data[2]);
|
||||
}
|
||||
}
|
||||
if($clear) {
|
||||
$this->data = array();
|
||||
}
|
||||
}
|
||||
|
||||
protected function writeLine($msg, $runlevel, $time) {
|
||||
//echo date('Y-m-d H:i:s', $time)." [".$this->names[$runlevel]."]: ".$msg."\n";
|
||||
echo $time." [".$this->names[$runlevel]."]: ".$msg."\n";
|
||||
flush();
|
||||
}
|
||||
/**
|
||||
* Add a message to the log data array
|
||||
* If printout in this instance is set to true, directly output the message
|
||||
*
|
||||
* @param string $msg
|
||||
* @param integer $runlevel
|
||||
*/
|
||||
public function log($msg, $runlevel = self::LEVEL_INFO)
|
||||
{
|
||||
$time = time();
|
||||
#$this->data[] = array($this->runlevel, $msg, $time);
|
||||
if ($this->printout and $runlevel <= $this->runlevel) {
|
||||
$this->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 $time . " [" . $this->names[$runlevel] . "]: " . $msg . "\n";
|
||||
flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* Output the complete log.
|
||||
* Log will be cleared if $clear = true
|
||||
*
|
||||
* @param boolean $clear
|
||||
* @param integer $runlevel
|
||||
*/
|
||||
public function printout($clear = true, $runlevel = null)
|
||||
{
|
||||
if ($runlevel === null) {
|
||||
$runlevel = $this->runlevel;
|
||||
}
|
||||
foreach ($this->data as $data) {
|
||||
if ($runlevel <= $data[0]) {
|
||||
$this->writeLine($data[1], $runlevel, $data[2]);
|
||||
}
|
||||
}
|
||||
if ($clear) {
|
||||
$this->data = array();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,165 +1,183 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* XMPPHP: The PHP XMPP Library
|
||||
* Copyright (C) 2008 Nathanael C. Fritz
|
||||
* This file is part of SleekXMPP.
|
||||
*
|
||||
*
|
||||
* XMPPHP is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* XMPPHP is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with XMPPHP; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Alexander Birkner (https://github.com/BirknerAlex)
|
||||
* @author zorn-v (https://github.com/zorn-v/xmpphp/)
|
||||
* @author GNU social
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
*/
|
||||
|
||||
namespace XMPPHP;
|
||||
|
||||
/**
|
||||
* XMPPHP Roster Object
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
* XMPPHP Roster
|
||||
*
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
class Roster
|
||||
{
|
||||
/**
|
||||
* Roster array, handles contacts and presence. Indexed by jid.
|
||||
* Contains array with potentially two indexes 'contact' and 'presence'
|
||||
* @var array
|
||||
*/
|
||||
protected $roster_array = array();
|
||||
|
||||
class Roster {
|
||||
/**
|
||||
* Roster array, handles contacts and presence. Indexed by jid.
|
||||
* Contains array with potentially two indexes 'contact' and 'presence'
|
||||
* @var array
|
||||
*/
|
||||
protected $roster_array = array();
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
*/
|
||||
public function __construct($roster_array = array()) {
|
||||
if ($this->verifyRoster($roster_array)) {
|
||||
$this->roster_array = $roster_array; //Allow for prepopulation with existing roster
|
||||
} else {
|
||||
$this->roster_array = array();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Constructor
|
||||
* @param array $roster_array
|
||||
*/
|
||||
public function __construct($roster_array = array())
|
||||
{
|
||||
if ($this->verifyRoster($roster_array)) {
|
||||
$this->roster_array = $roster_array; //Allow for pre-population with existing roster
|
||||
} else {
|
||||
$this->roster_array = array();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Check that a given roster array is of a valid structure (empty is still valid)
|
||||
*
|
||||
* @param array $roster_array
|
||||
*/
|
||||
protected function verifyRoster($roster_array) {
|
||||
#TODO once we know *what* a valid roster array looks like
|
||||
return True;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Check that a given roster array is of a valid structure (empty is still valid)
|
||||
*
|
||||
* @param array $roster_array
|
||||
* @return bool
|
||||
*/
|
||||
protected function verifyRoster($roster_array)
|
||||
{
|
||||
#TODO once we know *what* a valid roster array looks like
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Add given contact to roster
|
||||
*
|
||||
* @param string $jid
|
||||
* @param string $subscription
|
||||
* @param string $name
|
||||
* @param array $groups
|
||||
*/
|
||||
public function addContact($jid, $subscription, $name='', $groups=array()) {
|
||||
$contact = array('jid' => $jid, 'subscription' => $subscription, 'name' => $name, 'groups' => $groups);
|
||||
if ($this->isContact($jid)) {
|
||||
$this->roster_array[$jid]['contact'] = $contact;
|
||||
} else {
|
||||
$this->roster_array[$jid] = array('contact' => $contact);
|
||||
}
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Retrieve contact via jid
|
||||
*
|
||||
* @param string $jid
|
||||
* @return mixed
|
||||
*/
|
||||
public function getContact($jid)
|
||||
{
|
||||
if ($this->isContact($jid)) {
|
||||
return $this->roster_array[$jid]['contact'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Retrieve contact via jid
|
||||
*
|
||||
* @param string $jid
|
||||
*/
|
||||
public function getContact($jid) {
|
||||
if ($this->isContact($jid)) {
|
||||
return $this->roster_array[$jid]['contact'];
|
||||
}
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Discover if a contact exists in the roster via jid
|
||||
*
|
||||
* @param string $jid
|
||||
* @return bool
|
||||
*/
|
||||
public function isContact($jid)
|
||||
{
|
||||
return (array_key_exists($jid, $this->roster_array));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Discover if a contact exists in the roster via jid
|
||||
*
|
||||
* @param string $jid
|
||||
*/
|
||||
public function isContact($jid) {
|
||||
return (array_key_exists($jid, $this->roster_array));
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Set presence
|
||||
*
|
||||
* @param string $presence
|
||||
* @param integer $priority
|
||||
* @param string $show
|
||||
* @param string $status
|
||||
*/
|
||||
public function setPresence($presence, $priority, $show, $status)
|
||||
{
|
||||
$presence = explode('/', $presence, 2);
|
||||
$jid = $presence[0];
|
||||
$resource = isset($presence[1]) ? $presence[1] : '';
|
||||
if ($show != 'unavailable') {
|
||||
if (!$this->isContact($jid)) {
|
||||
$this->addContact($jid, 'not-in-roster');
|
||||
}
|
||||
$this->roster_array[$jid]['presence'][$resource] = array('priority' => $priority, 'show' => $show, 'status' => $status);
|
||||
} else { //Nuke unavailable resources to save memory
|
||||
unset($this->roster_array[$jid]['resource'][$resource]);
|
||||
unset($this->roster_array[$jid]['presence'][$resource]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Set presence
|
||||
*
|
||||
* @param string $presence
|
||||
* @param integer $priority
|
||||
* @param string $show
|
||||
* @param string $status
|
||||
*/
|
||||
public function setPresence($presence, $priority, $show, $status) {
|
||||
$presence = explode('/', $presence, 2);
|
||||
$jid = $presence[0];
|
||||
$resource = isset($presence[1]) ? $presence[1] : '';
|
||||
if ($show != 'unavailable') {
|
||||
if (!$this->isContact($jid)) {
|
||||
$this->addContact($jid, 'not-in-roster');
|
||||
}
|
||||
$this->roster_array[$jid]['presence'][$resource] = array('priority' => $priority, 'show' => $show, 'status' => $status);
|
||||
} else { //Nuke unavailable resources to save memory
|
||||
unset($this->roster_array[$jid]['resource'][$resource]);
|
||||
unset($this->roster_array[$jid]['presence'][$resource]);
|
||||
}
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Add given contact to roster
|
||||
*
|
||||
* @param string $jid
|
||||
* @param string $subscription
|
||||
* @param string $name
|
||||
* @param array $groups
|
||||
*/
|
||||
public function addContact($jid, $subscription, $name = '', $groups = array())
|
||||
{
|
||||
$contact = array('jid' => $jid, 'subscription' => $subscription, 'name' => $name, 'groups' => $groups);
|
||||
if ($this->isContact($jid)) {
|
||||
$this->roster_array[$jid]['contact'] = $contact;
|
||||
} else {
|
||||
$this->roster_array[$jid] = array('contact' => $contact);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
* Return best presence for jid
|
||||
*
|
||||
* @param string $jid
|
||||
*/
|
||||
public function getPresence($jid) {
|
||||
$split = explode('/', $jid, 2);
|
||||
$jid = $split[0];
|
||||
if($this->isContact($jid)) {
|
||||
$current = array('resource' => '', 'active' => '', 'priority' => -129, 'show' => '', 'status' => ''); //Priorities can only be -128 = 127
|
||||
foreach($this->roster_array[$jid]['presence'] as $resource => $presence) {
|
||||
//Highest available priority or just highest priority
|
||||
if ($presence['priority'] > $current['priority'] and (($presence['show'] == "chat" or $presence['show'] == "available") or ($current['show'] != "chat" or $current['show'] != "available"))) {
|
||||
$current = $presence;
|
||||
$current['resource'] = $resource;
|
||||
}
|
||||
}
|
||||
return $current;
|
||||
}
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Get roster
|
||||
*
|
||||
*/
|
||||
public function getRoster() {
|
||||
return $this->roster_array;
|
||||
}
|
||||
/*
|
||||
*
|
||||
* Return best presence for jid
|
||||
*
|
||||
* @param string $jid
|
||||
*/
|
||||
|
||||
public function getPresence($jid)
|
||||
{
|
||||
$split = explode('/', $jid, 2);
|
||||
$jid = $split[0];
|
||||
if ($this->isContact($jid)) {
|
||||
$current = array('resource' => '', 'active' => '', 'priority' => -129, 'show' => '', 'status' => ''); //Priorities can only be -128 = 127
|
||||
foreach ($this->roster_array[$jid]['presence'] as $resource => $presence) {
|
||||
//Highest available priority or just highest priority
|
||||
if ($presence['priority'] > $current['priority'] and (($presence['show'] == "chat" or $presence['show'] == "available") or ($current['show'] != "chat" or $current['show'] != "available"))) {
|
||||
$current = $presence;
|
||||
$current['resource'] = $resource;
|
||||
}
|
||||
}
|
||||
return $current;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Get roster
|
||||
*
|
||||
*/
|
||||
public function getRoster()
|
||||
{
|
||||
return $this->roster_array;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
@ -1,158 +1,174 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/**
|
||||
* XMPPHP: The PHP XMPP Library
|
||||
* Copyright (C) 2008 Nathanael C. Fritz
|
||||
* This file is part of SleekXMPP.
|
||||
*
|
||||
*
|
||||
* XMPPHP is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* XMPPHP is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with XMPPHP; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @author Alexander Birkner (https://github.com/BirknerAlex)
|
||||
* @author zorn-v (https://github.com/zorn-v/xmpphp/)
|
||||
* @author GNU social
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
*/
|
||||
|
||||
namespace XMPPHP;
|
||||
|
||||
/**
|
||||
* XMPPHP XML Object
|
||||
*
|
||||
* @category xmpphp
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
* XMPPHP XMLObject
|
||||
*
|
||||
* @package XMPPHP
|
||||
* @author Nathanael C. Fritz <JID: fritzy@netflint.net>
|
||||
* @author Stephan Wentz <JID: stephan@jabber.wentz.it>
|
||||
* @author Michael Garvin <JID: gar@netflint.net>
|
||||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
class XMPPHP_XMLObj {
|
||||
/**
|
||||
* Tag name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* Namespace
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $ns;
|
||||
|
||||
/**
|
||||
* Attributes
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $attrs = array();
|
||||
|
||||
/**
|
||||
* Subs?
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $subs = array();
|
||||
|
||||
/**
|
||||
* Node data
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $data = '';
|
||||
class XMLObj
|
||||
{
|
||||
/**
|
||||
* Tag name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $ns
|
||||
* @param array $attrs
|
||||
* @param string $data
|
||||
*/
|
||||
public function __construct($name, $ns = '', $attrs = array(), $data = '') {
|
||||
$this->name = strtolower($name);
|
||||
$this->ns = $ns;
|
||||
if(is_array($attrs) && count($attrs)) {
|
||||
foreach($attrs as $key => $value) {
|
||||
$this->attrs[strtolower($key)] = $value;
|
||||
}
|
||||
}
|
||||
$this->data = $data;
|
||||
}
|
||||
/**
|
||||
* Namespace
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $ns;
|
||||
|
||||
/**
|
||||
* Dump this XML Object to output.
|
||||
*
|
||||
* @param integer $depth
|
||||
*/
|
||||
public function printObj($depth = 0) {
|
||||
print str_repeat("\t", $depth) . $this->name . " " . $this->ns . ' ' . $this->data;
|
||||
print "\n";
|
||||
foreach($this->subs as $sub) {
|
||||
$sub->printObj($depth + 1);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Attributes
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $attrs = array();
|
||||
|
||||
/**
|
||||
* Return this XML Object in xml notation
|
||||
*
|
||||
* @param string $str
|
||||
*/
|
||||
public function toString($str = '') {
|
||||
$str .= "<{$this->name} xmlns='{$this->ns}' ";
|
||||
foreach($this->attrs as $key => $value) {
|
||||
if($key != 'xmlns') {
|
||||
$value = htmlspecialchars($value);
|
||||
$str .= "$key=\"$value\" ";
|
||||
}
|
||||
}
|
||||
$str .= ">";
|
||||
foreach($this->subs as $sub) {
|
||||
$str .= $sub->toString();
|
||||
}
|
||||
$body = htmlspecialchars($this->data);
|
||||
$str .= "$body</{$this->name}>";
|
||||
return $str;
|
||||
}
|
||||
/**
|
||||
* Subs?
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $subs = array();
|
||||
|
||||
/**
|
||||
* Has this XML Object the given sub?
|
||||
*
|
||||
* @param string $name
|
||||
* @return boolean
|
||||
*/
|
||||
public function hasSub($name, $ns = null) {
|
||||
foreach($this->subs as $sub) {
|
||||
if(($name == "*" or $sub->name == $name) and ($ns == null or $sub->ns == $ns)) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
/**
|
||||
* Node data
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $data = '';
|
||||
|
||||
/**
|
||||
* Return a sub
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $attrs
|
||||
* @param string $ns
|
||||
*/
|
||||
public function sub($name, $attrs = null, $ns = null) {
|
||||
#TODO attrs is ignored
|
||||
foreach($this->subs as $sub) {
|
||||
if($sub->name == $name and ($ns == null or $sub->ns == $ns)) {
|
||||
return $sub;
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $ns
|
||||
* @param array $attrs
|
||||
* @param string $data
|
||||
*/
|
||||
public function __construct($name, $ns = '', $attrs = array(), $data = '')
|
||||
{
|
||||
$this->name = strtolower($name);
|
||||
$this->ns = $ns;
|
||||
if (is_array($attrs) && count($attrs)) {
|
||||
foreach ($attrs as $key => $value) {
|
||||
$this->attrs[strtolower($key)] = $value;
|
||||
}
|
||||
}
|
||||
$this |