mimmi20/browser-detector

View on GitHub
src/Header/XPuffinUa.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php
/**
 * This file is part of the browser-detector package.
 *
 * Copyright (c) 2012-2024, Thomas Mueller <mimmi20@live.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types = 1);

namespace BrowserDetector\Header;

use function mb_strtolower;
use function preg_match;

final class XPuffinUa implements HeaderInterface
{
    use HeaderTrait;

    /** @throws void */
    public function hasDeviceCode(): bool
    {
        return (bool) preg_match('/android|iphone os/i', $this->value);
    }

    /** @throws void */
    public function getDeviceCode(): string | null
    {
        $matches = [];

        if (preg_match('/(?:android|iphone os)\/(?P<device>[^\/]+)/i', $this->value, $matches)) {
            $code = mb_strtolower($matches['device']);

            return match ($code) {
                'ipad4,1' => 'apple=apple ipad 4,1',
                'iphone7,1' => 'apple=apple iphone 7,1',
                'iphone6,1' => 'apple=apple iphone 6,1',
                'iphone 3gs' => 'apple=apple iphone 2,1',
                'd6503' => 'sony=sony d6503',
                'sm-g900f' => 'samsung=samsung sm-g900f',
                'samsung-sm-n910a' => 'samsung=samsung sm-n910a',
                'sm-t310' => 'samsung=samsung sm-t310',
                'nexus 10' => 'google=google nexus 10',
                'bq edison' => 'bq=bq edison',
                'lenovoa3300-hv' => 'lenovo=lenovo a3300-hv',
                default => null,
            };
        }

        return null;
    }

    /** @throws void */
    public function hasPlatformCode(): bool
    {
        return (bool) preg_match('/android|iphone os/i', $this->value);
    }

    /** @throws void */
    public function getPlatformCode(): string | null
    {
        $matches = [];

        if (preg_match('/(?P<platform>android|iphone os)/i', $this->value, $matches)) {
            $code = mb_strtolower($matches['platform']);

            return match ($code) {
                'android' => $code,
                'iphone os' => 'ios',
                default => null,
            };
        }

        return null;
    }
}