| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <?php
- /**
- * @file
- * TeamSpeak 3 PHP Framework
- *
- * This program 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 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @package TeamSpeak3
- * @author Sven 'ScP' Paulsen
- * @copyright Copyright (c) Planet TeamSpeak. All rights reserved.
- */
- /**
- * @class TeamSpeak3_Node_Client
- * @brief Class describing a TeamSpeak 3 client and all it's parameters.
- */
- class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
- {
- /**
- * The TeamSpeak3_Node_Client constructor.
- *
- * @param TeamSpeak3_Node_Server $server
- * @param array $info
- * @param string $index
- * @throws TeamSpeak3_Adapter_ServerQuery_Exception
- * @return TeamSpeak3_Node_Client
- */
- public function __construct(TeamSpeak3_Node_Server $server, array $info, $index = "clid")
- {
- $this->parent = $server;
- $this->nodeInfo = $info;
- if(!array_key_exists($index, $this->nodeInfo))
- {
- throw new TeamSpeak3_Adapter_ServerQuery_Exception("invalid clientID", 0x200);
- }
- $this->nodeId = $this->nodeInfo[$index];
- }
- /**
- * Changes the clients properties using given properties.
- *
- * @param array $properties
- * @return void
- */
- public function modify(array $properties)
- {
- $properties["clid"] = $this->getId();
- $this->execute("clientedit", $properties);
- $this->resetNodeInfo();
- }
- /**
- * Changes the clients properties using given properties.
- *
- * @param array $properties
- * @return void
- */
- public function modifyDb(array $properties)
- {
- $this->getParent()->clientModifyDb($this["client_database_id"], $properties);
- }
- /**
- * Deletes the clients properties from the database.
- *
- * @return void
- */
- public function deleteDb()
- {
- $this->getParent()->clientDeleteDb($this["client_database_id"]);
- }
- /**
- * Returns a list of properties from the database for the client.
- *
- * @return array
- */
- public function infoDb()
- {
- return $this->getParent()->clientInfoDb($this["client_database_id"]);
- }
- /**
- * Sends a text message to the client.
- *
- * @param string $msg
- * @return void
- */
- public function message($msg)
- {
- $this->execute("sendtextmessage", array("msg" => $msg, "target" => $this->getId(), "targetmode" => TeamSpeak3::TEXTMSG_CLIENT));
- }
- /**
- * Moves the client to another channel.
- *
- * @param integer $cid
- * @param string $cpw
- * @return void
- */
- public function move($cid, $cpw = null)
- {
- $this->getParent()->clientMove($this->getId(), $cid, $cpw);
- }
- /**
- * Kicks the client from his currently joined channel or from the server.
- *
- * @param integer $reasonid
- * @param string $reasonmsg
- * @return void
- */
- public function kick($reasonid = TeamSpeak3::KICK_CHANNEL, $reasonmsg = null)
- {
- $this->getParent()->clientKick($this->getId(), $reasonid, $reasonmsg);
- }
- /**
- * Sends a poke message to the client.
- *
- * @param string $msg
- * @return void
- */
- public function poke($msg)
- {
- $this->getParent()->clientPoke($this->getId(), $msg);
- }
- /**
- * Bans the client from the server. Please note that this will create two separate
- * ban rules for the targeted clients IP address and his unique identifier.
- *
- * @param integer $timeseconds
- * @param string $reason
- * @return array
- */
- public function ban($timeseconds = null, $reason = null)
- {
- return $this->getParent()->clientBan($this->getId(), $timeseconds, $reason);
- }
- /**
- * Returns a list of custom properties for the client.
- *
- * @return array
- */
- public function customInfo()
- {
- return $this->getParent()->customInfo($this["client_database_id"]);
- }
- /**
- * Creates or updates a custom property for the client.
- *
- * @param string $ident
- * @param string $value
- * @return void
- */
- public function customSet($ident, $value)
- {
- $this->getParent()->customSet($this["client_database_id"], $ident, $value);
- }
- /**
- * Removes a custom property from the client.
- *
- * @param string $ident
- * @return void
- */
- public function customDelete($ident)
- {
- $this->getParent()->customDelete($this["client_database_id"], $ident);
- }
- /**
- * Returns an array containing the permission overview of the client.
- *
- * @param integer $cid
- * @return array
- */
- public function permOverview($cid)
- {
- return $this->execute("permoverview", array("cldbid" => $this["client_database_id"], "cid" => $cid, "permid" => 0))->toArray();
- }
- /**
- * Returns a list of permissions defined for the client.
- *
- * @param boolean $permsid
- * @return array
- */
- public function permList($permsid = FALSE)
- {
- return $this->getParent()->clientPermList($this["client_database_id"], $permsid);
- }
- /**
- * Adds a set of specified permissions to the client. Multiple permissions can be added by providing
- * the three parameters of each permission.
- *
- * @param integer $permid
- * @param integer $permvalue
- * @param integer $permskip
- * @return void
- */
- public function permAssign($permid, $permvalue, $permskip = FALSE)
- {
- $this->getParent()->clientPermAssign($this["client_database_id"], $permid, $permvalue, $permskip);
- }
- /**
- * Alias for permAssign().
- *
- * @deprecated
- */
- public function permAssignByName($permname, $permvalue, $permskip = FALSE)
- {
- $this->permAssign($permname, $permvalue, $permskip);
- }
- /**
- * Removes a set of specified permissions from a client. Multiple permissions can be removed at once.
- *
- * @param integer $permid
- * @return void
- */
- public function permRemove($permid)
- {
- $this->getParent()->clientPermRemove($this["client_database_id"], $permid);
- }
- /**
- * Alias for permRemove().
- *
- * @deprecated
- */
- public function permRemoveByName($permname)
- {
- $this->permRemove($permname);
- }
- /**
- * Sets the channel group of a client to the ID specified.
- *
- * @param integer $cid
- * @param integer $cgid
- * @return void
- */
- public function setChannelGroup($cid, $cgid)
- {
- $this->getParent()->clientSetChannelGroup($this["client_database_id"], $cid, $cgid);
- }
- /**
- * Adds the client to the server group specified with $sgid.
- *
- * @param integer $sgid
- * @return void
- */
- public function addServerGroup($sgid)
- {
- $this->getParent()->serverGroupClientAdd($sgid, $this["client_database_id"]);
- }
- /**
- * Removes the client from the server group specified with $sgid.
- *
- * @param integer $sgid
- * @return void
- */
- public function remServerGroup($sgid)
- {
- $this->getParent()->serverGroupClientDel($sgid, $this["client_database_id"]);
- }
- /**
- * Returns the possible name of the clients avatar.
- *
- * @return TeamSpeak3_Helper_String
- */
- public function avatarGetName()
- {
- return new TeamSpeak3_Helper_String("/avatar_" . $this["client_base64HashClientUID"]);
- }
- /**
- * Downloads and returns the clients avatar file content.
- *
- * @return TeamSpeak3_Helper_String
- */
- public function avatarDownload()
- {
- if($this["client_flag_avatar"] == NULL) return;
- $download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->avatarGetName());
- $transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
- return $transfer->download($download["ftkey"], $download["size"]);
- }
- /**
- * Returns a list of client connections using the same identity as this client.
- *
- * @return array
- */
- public function getClones()
- {
- return $this->execute("clientgetids", array("cluid" => $this["client_unique_identifier"]))->toAssocArray("clid");
- }
- /**
- * Returns TRUE if the client is using Overwolf.
- *
- * @return boolean
- */
- public function hasOverwolf()
- {
- return strstr($this["client_badges"], "overwolf=1") !== FALSE;
- }
- /**
- * Returns a list of equipped badges for this client.
- *
- * @return array
- */
- public function getBadges()
- {
- $badges = array();
- foreach(explode(":", $this["client_badges"]) as $set)
- {
- if(substr($set, 0, 7) == "badges=")
- {
- $badges[] = array_map("trim", explode(",", substr($set, 7)));
- }
- }
- return $badges;
- }
- /**
- * Returns the revision/build number from the clients version string.
- *
- * @return integer
- */
- public function getRev()
- {
- return $this["client_type"] ? null : $this["client_version"]->section("[", 1)->filterDigits();
- }
- /**
- * Returns all server and channel groups the client is currently residing in.
- *
- * @return array
- */
- public function memberOf()
- {
- $cgroups = array($this->getParent()->channelGroupGetById($this["client_channel_group_id"]));
- $sgroups = array();
- foreach(explode(",", $this["client_servergroups"]) as $sgid)
- {
- $sgroups[] = $this->getParent()->serverGroupGetById($sgid);
- }
- uasort($sgroups, array(__CLASS__, "sortGroupList"));
- return array_merge($cgroups, $sgroups);
- }
- /**
- * Downloads and returns the clients icon file content.
- *
- * @return TeamSpeak3_Helper_String
- */
- public function iconDownload()
- {
- if($this->iconIsLocal("client_icon_id") || $this["client_icon_id"] == 0) return;
- $download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("client_icon_id"));
- $transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
- return $transfer->download($download["ftkey"], $download["size"]);
- }
-
- /**
- * Sends a plugin command to the client.
- *
- * @param string $plugin
- * @param string $data
- * @return void
- */
- public function sendPluginCmd($plugin, $data)
- {
- $this->execute("plugincmd", array("name" => $plugin, "data" => $data, "targetmode" => TeamSpeak3::PLUGINCMD_CLIENT, "target" => $this->getId()));
- }
- /**
- * @ignore
- */
- protected function fetchNodeInfo()
- {
- if($this->offsetExists("client_type") && $this["client_type"] == 1) return;
- $this->nodeInfo = array_merge($this->nodeInfo, $this->execute("clientinfo", array("clid" => $this->getId()))->toList());
- }
- /**
- * Returns a unique identifier for the node which can be used as a HTML property.
- *
- * @return string
- */
- public function getUniqueId()
- {
- return $this->getParent()->getUniqueId() . "_cl" . $this->getId();
- }
- /**
- * Returns the name of a possible icon to display the node object.
- *
- * @return string
- */
- public function getIcon()
- {
- if($this["client_type"])
- {
- return "client_query";
- }
- elseif($this["client_away"])
- {
- return "client_away";
- }
- elseif(!$this["client_output_hardware"])
- {
- return "client_snd_disabled";
- }
- elseif($this["client_output_muted"])
- {
- return "client_snd_muted";
- }
- elseif(!$this["client_input_hardware"])
- {
- return "client_mic_disabled";
- }
- elseif($this["client_input_muted"])
- {
- return "client_mic_muted";
- }
- elseif($this["client_is_channel_commander"])
- {
- return $this["client_flag_talking"] ? "client_cc_talk" : "client_cc_idle";
- }
- else
- {
- return $this["client_flag_talking"] ? "client_talk" : "client_idle";
- }
- }
- /**
- * Returns a symbol representing the node.
- *
- * @return string
- */
- public function getSymbol()
- {
- return "@";
- }
- /**
- * Returns a string representation of this node.
- *
- * @return string
- */
- public function __toString()
- {
- return (string) $this["client_nickname"];
- }
- }
|