Файл: vendor/whichbrowser/parser/src/Analyser/Header/Useragent/Device/Gaming.php
Строк: 254
<?php
namespace WhichBrowserAnalyserHeaderUseragentDevice;
use WhichBrowserConstants;
use WhichBrowserModelVersion;
trait Gaming
{
private function detectGaming($ua)
{
if (!preg_match('/(Nintendo|Nitro|PlayStation|PS[0-9]|Sega|Dreamcast|Xbox)/ui', $ua)) {
return;
}
$this->detectNintendo($ua);
$this->detectPlaystation($ua);
$this->detectXbox($ua);
$this->detectSega($ua);
}
/* Nintendo Wii and DS */
private function detectNintendo($ua)
{
/* Switch */
if (preg_match('/Nintendo Switch/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'Switch',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* Wii */
if (preg_match('/Nintendo Wii/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'Wii',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* Wii U */
if (preg_match('/Nintendo Wii ?U/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'Wii U',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* DS */
if (preg_match('/Nintendo DS/u', $ua) || preg_match('/Nitro.*Opera/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'DS',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
}
/* DSi */
if (preg_match('/Nintendo DSi/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'DSi',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
}
/* 3DS */
if (preg_match('/Nintendo 3DS/u', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/Version/([0-9.]*[0-9])/u', $ua);
$this->data->engine->set([
'name' => 'WebKit'
]);
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => '3DS',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
}
/* New 3DS */
if (preg_match('/New Nintendo 3DS/u', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/Version/([0-9.]*[0-9])/u', $ua);
$this->data->device->setIdentification([
'manufacturer' => 'Nintendo',
'model' => 'New 3DS',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
}
}
/* Sony PlayStation */
private function detectPlaystation($ua)
{
/* PlayStation Portable */
if (preg_match('/PlayStation Portable/u', $ua)) {
$this->data->os->reset();
$this->data->engine->set([
'name' => 'NetFront'
]);
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation Portable',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
}
/* PlayStation Vita */
if (preg_match('/PlayStation Vita/ui', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/PlayStation Vita ([0-9.]*)/u', $ua);
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation Vita',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::PORTABLE
]);
if (preg_match('/VTE//u', $ua)) {
$this->data->device->model = 'PlayStation TV';
$this->data->device->subtype = ConstantsDeviceSubType::CONSOLE;
}
}
/* PlayStation 2 */
if (preg_match('/PlayStation2/ui', $ua) || preg_match('/(PS2/u', $ua)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation 2',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* PlayStation 3 */
if (preg_match('/PlayStation 3/ui', $ua) || preg_match('/(PS3/u', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/PLAYSTATION 3;? ([0-9.]*)/u', $ua);
if (preg_match('/PLAYSTATION 3; [123]/', $ua)) {
$this->data->engine->set([
'name' => 'NetFront'
]);
}
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation 3',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* PlayStation 4 */
if (preg_match('/PlayStation 4/ui', $ua) || preg_match('/(PS4/u', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/PlayStation 4 ([0-9.]*)/u', $ua);
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation 4',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* PlayStation 5 */
if (preg_match('/PlayStation 5/ui', $ua) || preg_match('/(PS5/u', $ua)) {
$this->data->os->reset();
$this->data->os->identifyVersion('/PlayStation 5 ([0-9.]*)/u', $ua);
$this->data->device->setIdentification([
'manufacturer' => 'Sony',
'model' => 'PlayStation 5',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
}
/* Microsoft Xbox */
private function detectXbox($ua)
{
/* Xbox One */
if (preg_match('/Xbox One)/u', $ua, $match)) {
if ($this->data->isOs('Windows Phone', '=', '10')) {
$this->data->os->name = 'Windows';
$this->data->os->version->alias = '10';
}
if (!$this->data->isOs('Windows', '=', '10')) {
$this->data->os->reset();
}
$this->data->device->setIdentification([
'manufacturer' => 'Microsoft',
'model' => 'Xbox One',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
/* Xbox Series X */
} elseif (preg_match('/Xbox Series X)/u', $ua, $match)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Microsoft',
'model' => 'Xbox Series X',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
/* Xbox 360 */
} elseif (preg_match('/Xbox)$/u', $ua, $match)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Microsoft',
'model' => 'Xbox 360',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
}
/* Sega */
private function detectSega($ua)
{
/* Sega Saturn */
if (preg_match('/SEGASATURN/u', $ua, $match)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Sega',
'model' => 'Saturn',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
/* Sega Dreamcast */
if (preg_match('/Dreamcast/u', $ua, $match)) {
$this->data->os->reset();
$this->data->device->setIdentification([
'manufacturer' => 'Sega',
'model' => 'Dreamcast',
'type' => ConstantsDeviceType::GAMING,
'subtype' => ConstantsDeviceSubType::CONSOLE
]);
}
}
}