src/Version/ChromeOs.php
<?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\Version;
use BrowserDetector\Version\Exception\NotNumericException;
use Psr\Log\LoggerInterface;
use function preg_match;
final class ChromeOs implements VersionFactoryInterface
{
/** @throws void */
public function __construct(
private readonly LoggerInterface $logger,
private readonly VersionBuilderInterface $versionBuilder,
) {
// nothing to do
}
/**
* returns the version of the operating system/platform
*
* @throws void
*/
public function detectVersion(string $useragent): VersionInterface
{
if (
preg_match(
'/(?:CrOS [a-z0-9_]+|Windows aarch64) \d{4,5}\.\d+\.\d+\) .* Chrome\/(?P<version>\d+[\d\.]+)/',
$useragent,
$firstMatches,
)
) {
try {
return $this->versionBuilder->set($firstMatches['version']);
} catch (NotNumericException $e) {
$this->logger->info($e);
}
return new NullVersion();
}
if (preg_match('/CrOS [a-z0-9_]+ (?P<version>\d+[\d\.]+)/', $useragent, $secondMatches)) {
try {
return $this->versionBuilder->set($secondMatches['version']);
} catch (NotNumericException $e) {
$this->logger->info($e);
}
}
return new NullVersion();
}
}