blob: 54398feb6bdf856be61eae8847ec43adc33dd4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
// Icinga Web 2 X.509 Module | (c) 2022 Icinga GmbH | GPLv2
namespace Icinga\Module\X509\Common;
use GMP;
use Icinga\Application\Logger;
use ipl\Stdlib\Str;
trait JobUtils
{
/**
* Parse the given comma separated CIDRs
*
* @param string $cidrs
*
* @return array<string, array<int, int|string>>
*/
public function parseCIDRs(string $cidrs): array
{
$result = [];
foreach (Str::trimSplit($cidrs) as $cidr) {
$pieces = Str::trimSplit($cidr, '/');
if (count($pieces) !== 2) {
Logger::warning('CIDR %s is in the wrong format', $cidr);
continue;
}
$result[$cidr] = $pieces;
}
return $result;
}
/**
* Parse the given comma separated ports
*
* @param string $ports
*
* @return array<int, array<string>>
*/
public function parsePorts(string $ports): array
{
$result = [];
foreach (Str::trimSplit($ports) as $portRange) {
$pieces = Str::trimSplit($portRange, '-');
if (count($pieces) === 2) {
list($start, $end) = $pieces;
} else {
$start = $pieces[0];
$end = $pieces[0];
}
$result[] = [$start, $end];
}
return $result;
}
/**
* Parse the given comma separated excluded targets
*
* @param ?string $excludes
*
* @return array<string>
*/
public function parseExcludes(?string $excludes): array
{
$result = [];
if (! empty($excludes)) {
$result = array_flip(Str::trimSplit($excludes));
}
return $result;
}
}
|