Просмотр файла vendor/deployer/deployer/src/Host/Range.php

Размер файла: 1.1Kb
<?php declare(strict_types=1);

/* (c) Anton Medvedev <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Deployer\Host;

class Range
{
    const PATTERN = '/\[(.+?)\]/';

    public static function expand(array $hostnames): array
    {
        $expanded = [];
        foreach ($hostnames as $hostname) {
            if (preg_match(self::PATTERN, $hostname, $matches)) {
                [$start, $end] = explode(':', $matches[1]);
                $zeroBased = (bool) preg_match('/^0[1-9]/', $start);

                foreach (range($start, $end) as $i) {
                    $expanded[] = preg_replace(self::PATTERN, self::format((string) $i, $zeroBased), $hostname);
                }
            } else {
                $expanded[] = $hostname;
            }
        }

        return $expanded;
    }

    private static function format(string $i, bool $zeroBased): string
    {
        if ($zeroBased) {
            return strlen($i) === 1 ? "0$i" : $i;
        } else {
            return $i;
        }
    }
}