| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | /** | 
					
						
							|  |  |  |  * XMPPHP: The PHP XMPP Library | 
					
						
							|  |  |  |  * Copyright (C) 2008  Nathanael C. Fritz | 
					
						
							|  |  |  |  * This file is part of SleekXMPP. | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  |  * 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 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |  * @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 | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  |  * @copyright  2008 Nathanael C. Fritz | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  | namespace XMPPHP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |  * 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$ | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  | 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 | 
					
						
							|  |  |  |      * @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 | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function verifyRoster($roster_array) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         #TODO once we know *what* a valid roster array looks like
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Retrieve contact via jid | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $jid | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getContact($jid) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->isContact($jid)) { | 
					
						
							|  |  |  |             return $this->roster_array[$jid]['contact']; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * 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)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * 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]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * 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); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /* | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Return best presence for jid | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $jid | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     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; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-21 01:23:50 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Get roster | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getRoster() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->roster_array; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-11 13:15:00 -05:00
										 |  |  | } |