Passed
Branch main (2e4b54)
by Andreas
10:30
created

DateFollowUp::replacedDays()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 25
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 17
c 0
b 0
f 0
dl 0
loc 25
rs 9.7
cc 3
nc 2
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * Copyright (c) Andreas Heigl<[email protected]>
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a copy
9
 * of this software and associated documentation files (the "Software"), to deal
10
 * in the Software without restriction, including without limitation the rights
11
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
 * copies of the Software, and to permit persons to whom the Software is
13
 * furnished to do so, subject to the following conditions:
14
 *
15
 * The above copyright notice and this permission notice shall be included in
16
 * all copies or substantial portions of the Software.
17
 *
18
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
 * THE SOFTWARE.
25
 *
26
 * @author    Andreas Heigl<[email protected]>
27
 * @copyright Andreas Heigl
28
 * @license   http://www.opensource.org/licenses/mit-license.php MIT-License
29
 * @since     08.03.2017
30
 * @link      http://github.com/heiglandreas/org.heigl.Holidaychecker
31
 */
32
33
namespace Org_Heigl\Holidaychecker\IteratorItem;
34
35
use DateTimeInterface;
36
use IntlCalendar;
37
use Org_Heigl\Holidaychecker\CalendarDay;
38
use Org_Heigl\Holidaychecker\HolidayIteratorItemInterface;
39
use function array_map;
40
use function in_array;
41
42
class DateFollowUp implements HolidayIteratorItemInterface
43
{
44
    /** @var CalendarDay */
45
    private $day;
46
47
    /** @var bool */
48
    private $holiday;
49
50
    /** @var string */
51
    private $name;
52
53
    /** @var string */
54
    private $followup;
55
56
    /** @var array */
57
    private $replaced;
58
59
    public function __construct(string $name, bool $holiday, CalendarDay $day, string $followup, array $replaced = [])
60
    {
61
        $this->day = $day;
62
        $this->followup = $followup;
63
        $this->holiday = $holiday;
64
        $this->name = $name;
65
        $this->replaced = $this->replacedDays($replaced);
66
    }
67
68
    public function dateMatches(DateTimeInterface $date): bool
69
    {
70
        $gregorianYear = (int) $date->format('Y');
71
        $weekday = $this->day->getWeekdayForGregorianYear($gregorianYear);
72
73
        if (in_array($weekday, $this->replaced)) {
74
            return $this->day->isFollowUpDay($date, $this->followup);
75
        }
76
77
        return $this->day->isSameDay($date);
78
    }
79
80
    public function getName(): string
81
    {
82
        return $this->name;
83
    }
84
85
    public function isHoliday(): bool
86
    {
87
        return $this->holiday;
88
    }
89
90
    private static function replacedDays(array $replaced): array
91
    {
92
        $daymap = [
93
            'sunday' => IntlCalendar::DOW_SUNDAY,
94
            'monday' => IntlCalendar::DOW_MONDAY,
95
            'tuesday' => IntlCalendar::DOW_TUESDAY,
96
            'wednesday' => IntlCalendar::DOW_WEDNESDAY,
97
            'thursday' => IntlCalendar::DOW_THURSDAY,
98
            'friday' => IntlCalendar::DOW_FRIDAY,
99
            'saturday' => IntlCalendar::DOW_SATURDAY,
100
        ];
101
102
        if ([] === $replaced) {
103
            return [
104
                IntlCalendar::DOW_SATURDAY,
105
                IntlCalendar::DOW_SUNDAY,
106
            ];
107
        }
108
109
        return array_map(function (string $day) use ($daymap) {
110
            if (! isset($daymap[$day])) {
111
                return null;
112
            }
113
            return $daymap[$day];
114
        }, $replaced);
115
    }
116
}
117