Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
90.91% |
10 / 11 |
|
50.00% |
1 / 2 |
CRAP | |
0.00% |
0 / 1 |
FromDateObject | |
90.91% |
10 / 11 |
|
50.00% |
1 / 2 |
5.02 | |
0.00% |
0 / 1 |
support | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getIndexes | |
90.00% |
9 / 10 |
|
0.00% |
0 / 1 |
4.02 |
1 | <?php |
2 | namespace Apie\Core\Indexing; |
3 | |
4 | use Apie\Core\Context\ApieContext; |
5 | use Apie\Core\ContextConstants; |
6 | use Apie\Core\Lists\StringList; |
7 | use DateTimeInterface; |
8 | use Stringable; |
9 | |
10 | final class FromDateObject implements IndexingStrategyInterface |
11 | { |
12 | private const DEFAULT_FORMATS = [ |
13 | DateTimeInterface::ATOM, |
14 | 'D', |
15 | 'l', |
16 | 'S', |
17 | 'W', |
18 | 'F', |
19 | 'M', |
20 | 'L', |
21 | 'a', |
22 | 'e', |
23 | 'T' |
24 | ]; |
25 | |
26 | public function support(object $object): bool |
27 | { |
28 | return $object instanceof DateTimeInterface; |
29 | } |
30 | |
31 | /** |
32 | * @return array<string, int> |
33 | */ |
34 | public function getIndexes(object $class, ApieContext $context, Indexer $indexer): array |
35 | { |
36 | assert($class instanceof DateTimeInterface); |
37 | $res = []; |
38 | if ($class instanceof Stringable) { |
39 | $res[$class->__toString()] = 5; |
40 | } |
41 | $formats = self::DEFAULT_FORMATS; |
42 | if ($context->hasContext(ContextConstants::DATEFORMATS)) { |
43 | $formats = new StringList($context->getContext(ContextConstants::DATEFORMATS)); |
44 | } |
45 | foreach ($formats as $format) { |
46 | $res[$class->format($format)] = 1; |
47 | } |
48 | return $res; |
49 | } |
50 | } |