![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/matomo/device-detector/Parser/ |
<?php declare(strict_types=1); /** * Device Detector - The Universal Device Detection library for parsing User Agents * * @link https://matomo.org * * @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later */ namespace DeviceDetector\Parser; /** * Class OperatingSystem * * Parses the useragent for operating system information * * Detected operating systems can be found in self::$operatingSystems and /regexes/oss.yml * This class also defined some operating system families and methods to get the family for a specific os */ class OperatingSystem extends AbstractParser { /** * @var string */ protected $fixtureFile = 'regexes/oss.yml'; /** * @var string */ protected $parserName = 'os'; /** * Known operating systems mapped to their internal short codes * * @var array */ protected static $operatingSystems = [ 'AIX' => 'AIX', 'AND' => 'Android', 'AMG' => 'AmigaOS', 'ATV' => 'tvOS', 'ARL' => 'Arch Linux', 'BTR' => 'BackTrack', 'SBA' => 'Bada', 'BEO' => 'BeOS', 'BLB' => 'BlackBerry OS', 'QNX' => 'BlackBerry Tablet OS', 'BMP' => 'Brew', 'CAI' => 'Caixa Mágica', 'CES' => 'CentOS', 'COS' => 'Chrome OS', 'CYN' => 'CyanogenMod', 'DEB' => 'Debian', 'DEE' => 'Deepin', 'DFB' => 'DragonFly', 'DVK' => 'DVKBuntu', 'FED' => 'Fedora', 'FEN' => 'Fenix', 'FOS' => 'Firefox OS', 'FIR' => 'Fire OS', 'FRE' => 'Freebox', 'BSD' => 'FreeBSD', 'FYD' => 'FydeOS', 'GNT' => 'Gentoo', 'GRI' => 'GridOS', 'GTV' => 'Google TV', 'HPX' => 'HP-UX', 'HAI' => 'Haiku OS', 'IPA' => 'iPadOS', 'HAR' => 'HarmonyOS', 'HAS' => 'HasCodingOS', 'IRI' => 'IRIX', 'INF' => 'Inferno', 'KOS' => 'KaiOS', 'KNO' => 'Knoppix', 'KBT' => 'Kubuntu', 'LIN' => 'GNU/Linux', 'LBT' => 'Lubuntu', 'LOS' => 'Lumin OS', 'VLN' => 'VectorLinux', 'MAC' => 'Mac', 'MAE' => 'Maemo', 'MAG' => 'Mageia', 'MDR' => 'Mandriva', 'SMG' => 'MeeGo', 'MCD' => 'MocorDroid', 'MIN' => 'Mint', 'MLD' => 'MildWild', 'MOR' => 'MorphOS', 'NBS' => 'NetBSD', 'MTK' => 'MTK / Nucleus', 'MRE' => 'MRE', 'WII' => 'Nintendo', 'NDS' => 'Nintendo Mobile', 'OS2' => 'OS/2', 'T64' => 'OSF1', 'OBS' => 'OpenBSD', 'ORD' => 'Ordissimo', 'PCL' => 'PCLinuxOS', 'PSP' => 'PlayStation Portable', 'PS3' => 'PlayStation', 'RHT' => 'Red Hat', 'ROS' => 'RISC OS', 'RSO' => 'Rosa', 'REM' => 'Remix OS', 'RZD' => 'RazoDroiD', 'SAB' => 'Sabayon', 'SSE' => 'SUSE', 'SAF' => 'Sailfish OS', 'SEE' => 'SeewoOS', 'SLW' => 'Slackware', 'SOS' => 'Solaris', 'SYL' => 'Syllable', 'SYM' => 'Symbian', 'SYS' => 'Symbian OS', 'S40' => 'Symbian OS Series 40', 'S60' => 'Symbian OS Series 60', 'SY3' => 'Symbian^3', 'TDX' => 'ThreadX', 'TIZ' => 'Tizen', 'TOS' => 'TmaxOS', 'UBT' => 'Ubuntu', 'WAS' => 'watchOS', 'WTV' => 'WebTV', 'WHS' => 'Whale OS', 'WIN' => 'Windows', 'WCE' => 'Windows CE', 'WIO' => 'Windows IoT', 'WMO' => 'Windows Mobile', 'WPH' => 'Windows Phone', 'WRT' => 'Windows RT', 'XBX' => 'Xbox', 'XBT' => 'Xubuntu', 'YNS' => 'YunOs', 'IOS' => 'iOS', 'POS' => 'palmOS', 'WOS' => 'webOS', ]; /** * Operating system families mapped to the short codes of the associated operating systems * * @var array */ protected static $osFamilies = [ 'Android' => ['AND', 'CYN', 'FIR', 'REM', 'RZD', 'MLD', 'MCD', 'YNS', 'GRI', 'HAR'], 'AmigaOS' => ['AMG', 'MOR'], 'BlackBerry' => ['BLB', 'QNX'], 'Brew' => ['BMP'], 'BeOS' => ['BEO', 'HAI'], 'Chrome OS' => ['COS', 'FYD', 'SEE'], 'Firefox OS' => ['FOS', 'KOS'], 'Gaming Console' => ['WII', 'PS3'], 'Google TV' => ['GTV'], 'IBM' => ['OS2'], 'iOS' => ['IOS', 'ATV', 'WAS', 'IPA'], 'RISC OS' => ['ROS'], 'GNU/Linux' => [ 'LIN', 'ARL', 'DEB', 'KNO', 'MIN', 'UBT', 'KBT', 'XBT', 'LBT', 'FED', 'RHT', 'VLN', 'MDR', 'GNT', 'SAB', 'SLW', 'SSE', 'CES', 'BTR', 'SAF', 'ORD', 'TOS', 'RSO', 'DEE', 'FRE', 'MAG', 'FEN', 'CAI', 'PCL', 'HAS', 'LOS', 'DVK', ], 'Mac' => ['MAC'], 'Mobile Gaming Console' => ['PSP', 'NDS', 'XBX'], 'Real-time OS' => ['MTK', 'TDX', 'MRE'], 'Other Mobile' => ['WOS', 'POS', 'SBA', 'TIZ', 'SMG', 'MAE'], 'Symbian' => ['SYM', 'SYS', 'SY3', 'S60', 'S40'], 'Unix' => ['SOS', 'AIX', 'HPX', 'BSD', 'NBS', 'OBS', 'DFB', 'SYL', 'IRI', 'T64', 'INF'], 'WebTV' => ['WTV'], 'Windows' => ['WIN'], 'Windows Mobile' => ['WPH', 'WMO', 'WCE', 'WRT', 'WIO'], 'Other Smart TV' => ['WHS'], ]; /** * Operating system families that are known as desktop only * * @var array */ protected static $desktopOsArray = ['AmigaOS', 'IBM', 'GNU/Linux', 'Mac', 'Unix', 'Windows', 'BeOS', 'Chrome OS']; /** * Returns all available operating systems * * @return array */ public static function getAvailableOperatingSystems(): array { return self::$operatingSystems; } /** * Returns all available operating system families * * @return array */ public static function getAvailableOperatingSystemFamilies(): array { return self::$osFamilies; } /** * @inheritdoc */ public function parse(): ?array { $return = $osRegex = $matches = []; foreach ($this->getRegexes() as $osRegex) { $matches = $this->matchUserAgent($osRegex['regex']); if ($matches) { break; } } if (empty($matches)) { return $return; } $name = $this->buildByMatch($osRegex['name'], $matches); $short = 'UNK'; foreach (self::$operatingSystems as $osShort => $osName) { if (\strtolower($name) !== \strtolower($osName)) { continue; } $name = $osName; $short = $osShort; } $return = [ 'name' => $name, 'short_name' => $short, 'version' => $this->buildVersion((string) $osRegex['version'], $matches), 'platform' => $this->parsePlatform(), 'family' => self::getOsFamily($short), ]; if (\in_array($return['name'], self::$operatingSystems)) { $return['short_name'] = \array_search($return['name'], self::$operatingSystems); } return $return; } /** * Returns the operating system family for the given operating system * * @param string $osLabel name or short name * * @return string|null If null, "Unknown" */ public static function getOsFamily(string $osLabel): ?string { if (\in_array($osLabel, self::$operatingSystems)) { $osLabel = \array_search($osLabel, self::$operatingSystems); } foreach (self::$osFamilies as $family => $labels) { if (\in_array($osLabel, $labels)) { return (string) $family; } } return null; } /** * Returns true if OS is desktop * * @param string $osName OS short name * * @return bool */ public static function isDesktopOs(string $osName): bool { $osFamily = self::getOsFamily($osName); return \in_array($osFamily, self::$desktopOsArray); } /** * Returns the full name for the given short name * * @param string $os * @param string|null $ver * * @return ?string */ public static function getNameFromId(string $os, ?string $ver = null): ?string { if (\array_key_exists($os, self::$operatingSystems)) { $osFullName = self::$operatingSystems[$os]; return \trim($osFullName . ' ' . $ver); } return null; } /** * @return string */ protected function parsePlatform(): string { if ($this->matchUserAgent('arm|aarch64|Apple ?TV|Watch ?OS|Watch1,[12]')) { return 'ARM'; } if ($this->matchUserAgent('mips')) { return 'MIPS'; } if ($this->matchUserAgent('sh4')) { return 'SuperH'; } if ($this->matchUserAgent('WOW64|x64|win64|amd64|x86_?64')) { return 'x64'; } if ($this->matchUserAgent('(?:i[0-9]|x)86|i86pc')) { return 'x86'; } return ''; } }