1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Stadly\PasswordPolice\WordFormatter; |
6
|
|
|
|
7
|
|
|
use InvalidArgumentException; |
8
|
|
|
use Stadly\PasswordPolice\WordFormatter; |
9
|
|
|
use Traversable; |
10
|
|
|
|
11
|
|
|
final class Substring implements WordFormatter |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* @var int Minimum substring length. |
15
|
|
|
*/ |
16
|
|
|
private $minLength; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @var int|null Maximum substring length. |
20
|
|
|
*/ |
21
|
|
|
private $maxLength; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @param int $minLength Ignore substrings shorter thant this. |
25
|
|
|
* @param int|null $maxLength Ignore substrings longer than this. |
26
|
|
|
*/ |
27
|
7 |
|
public function __construct(int $minLength = 3, ?int $maxLength = 25) |
28
|
|
|
{ |
29
|
7 |
|
if ($minLength < 1) { |
30
|
2 |
|
throw new InvalidArgumentException('Min length must be positive.'); |
31
|
|
|
} |
32
|
5 |
|
if ($maxLength !== null && $maxLength < $minLength) { |
33
|
1 |
|
throw new InvalidArgumentException('Max length cannot be smaller than min length.'); |
34
|
|
|
} |
35
|
|
|
|
36
|
4 |
|
$this->minLength = $minLength; |
37
|
4 |
|
$this->maxLength = $maxLength; |
38
|
4 |
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* {@inheritDoc} |
42
|
|
|
*/ |
43
|
5 |
|
public function apply(iterable $words): Traversable |
44
|
|
|
{ |
45
|
5 |
|
foreach ($words as $word) { |
46
|
5 |
|
yield from $this->formatWord($word); |
47
|
|
|
} |
48
|
5 |
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @param string $word Word to format. |
52
|
|
|
* @return Traversable<string> Formatted words. May contain duplicates. |
53
|
|
|
*/ |
54
|
5 |
|
private function formatWord(string $word): Traversable |
55
|
|
|
{ |
56
|
5 |
|
for ($start = 0; $start < mb_strlen($word); ++$start) { |
57
|
5 |
|
$substring = mb_substr($word, $start, $this->maxLength); |
58
|
|
|
|
59
|
5 |
|
for ($length = mb_strlen($substring); $this->minLength <= $length; --$length) { |
60
|
5 |
|
yield mb_substr($substring, 0, $length); |
61
|
|
|
} |
62
|
|
|
} |
63
|
5 |
|
} |
64
|
|
|
} |
65
|
|
|
|