deployphp/deployer

View on GitHub
src/Host/Range.php

Summary

Maintainability
A
35 mins
Test Coverage
<?php

declare(strict_types=1);

/* (c) Anton Medvedev <anton@medv.io>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Deployer\Host;

class Range
{
    public 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;
        }
    }
}