Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/donatj/phpuseragentparser/bin/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/donatj/phpuseragentparser/bin/user_agent_sorter.php

<?php

require(__DIR__ . '/../vendor/autoload.php');

$jsonfile = __DIR__ . '/../Tests/user_agents.dist.json';

$uas = json_decode(file_get_contents($jsonfile), true);

foreach( $uas as $key => &$val ) {
	$val['key'] = $key;
}

uasort($uas, function ( $a, $b ) {

	if($a['platform'] === null && $b['platform'] !== null) return 1;
	if($b['platform'] === null && $a['platform'] !== null) return -1;

	$desktop = array( 'Windows', 'Linux', 'Macintosh', 'Chrome OS' );

	$ad = in_array($a['platform'], $desktop);
	$bd = in_array($b['platform'], $desktop);

	if( !$ad && $bd ) return 1;
	if( $ad && !$bd ) return -1;

	if( $ad ) {
		$result = strnatcasecmp($a['browser'], $b['browser']);
		if( $result == 0 ) {

			$result = strnatcasecmp($a['platform'], $b['platform']);

			if( $result == 0 ) {
				$result = compare_version($a['version'], $b['version']);
			}

		}
	} else {
		$result = strnatcasecmp($a['platform'], $b['platform']);
		if( $result == 0 ) {

			$result = strnatcasecmp($a['browser'], $b['browser']);

			if( $result == 0 ) {
				$result = compare_version($a['version'], $b['version']);
			}

		}
	}

	if( $result == 0 ) {
		$result = strnatcasecmp($a['key'], $b['key']);
	}

	return $result;
});

foreach( $uas as &$val ) {
	unset($val['key']);
}

$jsonPretty = new Camspiers\JsonPretty\JsonPretty;
$json = $jsonPretty->prettify($uas) . "\n";
echo $json;
file_put_contents($jsonfile, $json);


function compare_version( $a, $b ) {
	$cmp_a = explode('.', $a);
	$cmp_b = explode('.', $b);

	$max = max(count($cmp_a), count($cmp_b));

	$value = 0;

	for( $i = 0; $i < $max; $i++ ) {
		$aa = strtolower(isset($cmp_a[$i]) ? $cmp_a[$i] : '0');
		$bb = strtolower(isset($cmp_b[$i]) ? $cmp_b[$i] : '0');

		if( is_numeric($aa) && is_numeric($bb) ) {
			if( $aa != $bb ) {
				$value = ($aa > $bb ? 1 : -1);
				break;
			}
		} else if( $cmp = strcmp($aa, $bb) ) {
			$value = $cmp / abs($cmp);
			break;
		}
	}

	return $value;
}