Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
46.15% |
6 / 13 |
|
40.00% |
2 / 5 |
CRAP | |
0.00% |
0 / 1 |
TranslationString | |
46.15% |
6 / 13 |
|
40.00% |
2 / 5 |
25.61 | |
0.00% |
0 / 1 |
getRegularExpression | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
toPath | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
toUnbounded | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
6 | |||
getLastTranslationSegment | |
80.00% |
4 / 5 |
|
0.00% |
0 / 1 |
4.13 | |||
createForResourceName | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | namespace Apie\Core\Translator\ValueObjects; |
3 | |
4 | use Apie\Core\BoundedContext\BoundedContextId; |
5 | use Apie\Core\Identifiers\SnakeCaseSlug; |
6 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
7 | use Apie\Core\ValueObjects\IsStringWithRegexValueObject; |
8 | use ReflectionClass; |
9 | |
10 | final class TranslationString implements HasRegexValueObjectInterface |
11 | { |
12 | use IsStringWithRegexValueObject; |
13 | |
14 | public static function getRegularExpression(): string |
15 | { |
16 | return '/^[a-z0-9_]+(\.[a-z0-9_]+)*$/i'; |
17 | } |
18 | |
19 | public function toPath(string $rootPath): string |
20 | { |
21 | return rtrim($rootPath, '/') . '/' . str_replace('.', '/', $this->internal); |
22 | } |
23 | |
24 | public function toUnbounded(): self |
25 | { |
26 | if (str_starts_with('apie.bounded.', $this->internal)) { |
27 | return new self(preg_replace('/^apie\.bounded\.[a-z0-9_]+\./i', 'apie.', $this->internal)); |
28 | } |
29 | return $this; |
30 | } |
31 | |
32 | public function getLastTranslationSegment(bool $trimUnderscoreAtStart = true): string |
33 | { |
34 | $fn = $trimUnderscoreAtStart ? function ($v) { return ltrim($v, '_'); } : function ($v) { return $v; }; |
35 | $pos = strrpos($this->internal, '.'); |
36 | if ($pos === false || $pos === 0) { |
37 | return $fn($this->internal); |
38 | } |
39 | return $fn(substr(strrchr($this->internal, '.'), 1)); |
40 | } |
41 | |
42 | /** |
43 | * @param ReflectionClass<object> $class |
44 | */ |
45 | public static function createForResourceName(ReflectionClass $class, ?BoundedContextId $boundedContextId = null): self |
46 | { |
47 | if ($boundedContextId === null) { |
48 | return new self('apie.resource.' . SnakeCaseSlug::fromClass($class) . '.singular'); |
49 | } |
50 | return new self('apie.bounded.' . $boundedContextId . '.resource.' . SnakeCaseSlug::fromClass($class) . '.singular'); |
51 | } |
52 | } |