| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- <?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_Helper_Convert
- * @brief Helper class for data conversion.
- */
- class TeamSpeak3_Helper_Convert
- {
- /**
- * Converts bytes to a human readable value.
- *
- * @param integer $bytes
- * @return string
- */
- public static function bytes($bytes)
- {
- // @todo: Fix precision lost from multiple rounding
- $kbytes = sprintf("%.02f", $bytes/1024);
- $mbytes = sprintf("%.02f", $kbytes/1024);
- $gbytes = sprintf("%.02f", $mbytes/1024);
- $tbytes = sprintf("%.02f", $gbytes/1024);
-
- // @todo: Fix assuming non-negative $bytes value, without validation
- // Recommend something like: if( (float)$xbytes != 0 )
- if($tbytes >= 1)
- return $tbytes . " TB";
- if($gbytes >= 1)
- return $gbytes . " GB";
- if($mbytes >= 1)
- return $mbytes . " MB";
- if($kbytes >= 1)
- return $kbytes . " KB";
- return $bytes . " B";
- }
- /**
- * Converts seconds/milliseconds to a human readable value.
- *
- * Note: Assumes non-negative integer, but no validation
- * @todo: Handle negative integer $seconds, or invalidate
- *
- * @param integer $seconds
- * @param boolean $is_ms
- * @param string $format
- * @return string
- */
- public static function seconds($seconds, $is_ms = FALSE, $format = "%dD %02d:%02d:%02d")
- {
- if($is_ms) $seconds = $seconds/1000;
- return sprintf($format, $seconds/60/60/24, ($seconds/60/60)%24, ($seconds/60)%60, $seconds%60);
- }
- /**
- * Converts a given codec ID to a human readable name.
- *
- * @param integer $codec
- * @return string
- */
- public static function codec($codec)
- {
- if($codec == TeamSpeak3::CODEC_SPEEX_NARROWBAND)
- return "Speex Narrowband";
- if($codec == TeamSpeak3::CODEC_SPEEX_WIDEBAND)
- return "Speex Wideband";
- if($codec == TeamSpeak3::CODEC_SPEEX_ULTRAWIDEBAND)
- return "Speex Ultra-Wideband";
- if($codec == TeamSpeak3::CODEC_CELT_MONO)
- return "CELT Mono";
- if($codec == TeamSpeak3::CODEC_OPUS_VOICE)
- return "Opus Voice";
- if($codec == TeamSpeak3::CODEC_OPUS_MUSIC)
- return "Opus Music";
- return "Unknown";
- }
- /**
- * Converts a given group type ID to a human readable name.
- *
- * @param integer $type
- * @return string
- */
- public static function groupType($type)
- {
- if($type == TeamSpeak3::GROUP_DBTYPE_TEMPLATE)
- return "Template";
- if($type == TeamSpeak3::GROUP_DBTYPE_REGULAR)
- return "Regular";
- if($type == TeamSpeak3::GROUP_DBTYPE_SERVERQUERY)
- return "ServerQuery";
- return "Unknown";
- }
- /**
- * Converts a given permission type ID to a human readable name.
- *
- * @param integer $type
- * @return string
- */
- public static function permissionType($type)
- {
- if($type == TeamSpeak3::PERM_TYPE_SERVERGROUP)
- return "Server Group";
- if($type == TeamSpeak3::PERM_TYPE_CLIENT)
- return "Client";
- if($type == TeamSpeak3::PERM_TYPE_CHANNEL)
- return "Channel";
- if($type == TeamSpeak3::PERM_TYPE_CHANNELGROUP)
- return "Channel Group";
- if($type == TeamSpeak3::PERM_TYPE_CHANNELCLIENT)
- return "Channel Client";
- return "Unknown";
- }
- /**
- * Converts a given permission category value to a human readable name.
- *
- * @param integer $pcat
- * @return string
- */
- public static function permissionCategory($pcat)
- {
- if($pcat == TeamSpeak3::PERM_CAT_GLOBAL)
- return "Global";
- if($pcat == TeamSpeak3::PERM_CAT_GLOBAL_INFORMATION)
- return "Global / Information";
- if($pcat == TeamSpeak3::PERM_CAT_GLOBAL_SERVER_MGMT)
- return "Global / Virtual Server Management";
- if($pcat == TeamSpeak3::PERM_CAT_GLOBAL_ADM_ACTIONS)
- return "Global / Administration";
- if($pcat == TeamSpeak3::PERM_CAT_GLOBAL_SETTINGS)
- return "Global / Settings";
- if($pcat == TeamSpeak3::PERM_CAT_SERVER)
- return "Virtual Server";
- if($pcat == TeamSpeak3::PERM_CAT_SERVER_INFORMATION)
- return "Virtual Server / Information";
- if($pcat == TeamSpeak3::PERM_CAT_SERVER_ADM_ACTIONS)
- return "Virtual Server / Administration";
- if($pcat == TeamSpeak3::PERM_CAT_SERVER_SETTINGS)
- return "Virtual Server / Settings";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL)
- return "Channel";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL_INFORMATION)
- return "Channel / Information";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL_CREATE)
- return "Channel / Create";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL_MODIFY)
- return "Channel / Modify";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL_DELETE)
- return "Channel / Delete";
- if($pcat == TeamSpeak3::PERM_CAT_CHANNEL_ACCESS)
- return "Channel / Access";
- if($pcat == TeamSpeak3::PERM_CAT_GROUP)
- return "Group";
- if($pcat == TeamSpeak3::PERM_CAT_GROUP_INFORMATION)
- return "Group / Information";
- if($pcat == TeamSpeak3::PERM_CAT_GROUP_CREATE)
- return "Group / Create";
- if($pcat == TeamSpeak3::PERM_CAT_GROUP_MODIFY)
- return "Group / Modify";
- if($pcat == TeamSpeak3::PERM_CAT_GROUP_DELETE)
- return "Group / Delete";
- if($pcat == TeamSpeak3::PERM_CAT_CLIENT)
- return "Client";
- if($pcat == TeamSpeak3::PERM_CAT_CLIENT_INFORMATION)
- return "Client / Information";
- if($pcat == TeamSpeak3::PERM_CAT_CLIENT_ADM_ACTIONS)
- return "Client / Admin";
- if($pcat == TeamSpeak3::PERM_CAT_CLIENT_BASICS)
- return "Client / Basics";
- if($pcat == TeamSpeak3::PERM_CAT_CLIENT_MODIFY)
- return "Client / Modify";
- if($pcat == TeamSpeak3::PERM_CAT_FILETRANSFER)
- return "File Transfer";
- if($pcat == TeamSpeak3::PERM_CAT_NEEDED_MODIFY_POWER)
- return "Grant";
- return "Unknown";
- }
- /**
- * Converts a given log level ID to a human readable name and vice versa.
- *
- * @param mixed $level
- * @return string
- */
- public static function logLevel($level)
- {
- if(is_numeric($level))
- {
- if($level == TeamSpeak3::LOGLEVEL_CRITICAL)
- return "CRITICAL";
- if($level == TeamSpeak3::LOGLEVEL_ERROR)
- return "ERROR";
- if($level == TeamSpeak3::LOGLEVEL_DEBUG)
- return "DEBUG";
- if($level == TeamSpeak3::LOGLEVEL_WARNING)
- return "WARNING";
- if($level == TeamSpeak3::LOGLEVEL_INFO)
- return "INFO";
- return "DEVELOP";
- }
- else
- {
- if(strtoupper($level) == "CRITICAL")
- return TeamSpeak3::LOGLEVEL_CRITICAL;
- if(strtoupper($level) == "ERROR")
- return TeamSpeak3::LOGLEVEL_ERROR;
- if(strtoupper($level) == "DEBUG")
- return TeamSpeak3::LOGLEVEL_DEBUG;
- if(strtoupper($level) == "WARNING")
- return TeamSpeak3::LOGLEVEL_WARNING;
- if(strtoupper($level) == "INFO")
- return TeamSpeak3::LOGLEVEL_INFO;
- return TeamSpeak3::LOGLEVEL_DEVEL;
- }
- }
- /**
- * Converts a specified log entry string into an array containing the data.
- *
- * @param string $entry
- * @return array
- */
- public static function logEntry($entry)
- {
- $parts = explode("|", $entry, 5);
- $array = array();
- if(count($parts) != 5)
- {
- $array["timestamp"] = 0;
- $array["level"] = TeamSpeak3::LOGLEVEL_ERROR;
- $array["channel"] = "ParamParser";
- $array["server_id"] = "";
- $array["msg"] = TeamSpeak3_Helper_String::factory("convert error (" . trim($entry) . ")");
- $array["msg_plain"] = $entry;
- $array["malformed"] = TRUE;
- }
- else
- {
- $array["timestamp"] = strtotime(trim($parts[0]) . " UTC");
- $array["level"] = self::logLevel(trim($parts[1]));
- $array["channel"] = trim($parts[2]);
- $array["server_id"] = trim($parts[3]);
- $array["msg"] = TeamSpeak3_Helper_String::factory(trim($parts[4]));
- $array["msg_plain"] = $entry;
- $array["malformed"] = FALSE;
- }
- return $array;
- }
-
- /**
- * Converts a specified 32-bit unsigned integer value to a signed 32-bit integer value.
- *
- * @param integer $unsigned
- * @return integer
- */
- public static function iconId($unsigned)
- {
- $signed = (int) $unsigned;
-
- if(PHP_INT_SIZE > 4) // 64-bit
- {
- if($signed & 0x80000000) return $signed - 0x100000000;
- }
-
- return $signed;
- }
- /**
- * Converts a given string to a ServerQuery password hash.
- *
- * @param string $plain
- * @return string
- */
- public static function password($plain)
- {
- return base64_encode(sha1($plain, TRUE));
- }
- /**
- * Returns a client-like formatted version of the TeamSpeak 3 version string.
- *
- * @param string $version
- * @param string $format
- * @return string
- */
- public static function version($version, $format = "Y-m-d h:i:s")
- {
- if(!$version instanceof TeamSpeak3_Helper_String)
- {
- $version = new TeamSpeak3_Helper_String($version);
- }
- $buildno = $version->section("[", 1)->filterDigits()->toInt();
- return ($buildno <= 15001) ? $version : $version->section("[")->append("(" . date($format, $buildno) . ")");
- }
-
- /**
- * Returns a client-like short-formatted version of the TeamSpeak 3 version string.
- *
- * @param string $version
- * @return string
- */
- public static function versionShort($version)
- {
- if(!$version instanceof TeamSpeak3_Helper_String)
- {
- $version = new TeamSpeak3_Helper_String($version);
- }
-
- return $version->section(" ", 0);
- }
- /**
- * Tries to detect the type of an image by a given string and returns it.
- *
- * @param string $binary
- * @return string
- */
- public static function imageMimeType($binary)
- {
- if(!preg_match('/\A(?:(\xff\xd8\xff)|(GIF8[79]a)|(\x89PNG\x0d\x0a)|(BM)|(\x49\x49(\x2a\x00|\x00\x4a))|(FORM.{4}ILBM))/', $binary, $matches))
- {
- return "image/svg+xml";
- }
- $type = array(
- 1 => "image/jpeg",
- 2 => "image/gif",
- 3 => "image/png",
- 4 => "image/x-windows-bmp",
- 5 => "image/tiff",
- 6 => "image/x-ilbm",
- );
- return $type[count($matches)-1];
- }
- }
|