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

Date   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 80
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 9
eloc 38
c 1
b 0
f 0
dl 0
loc 80
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
A replacedDays() 0 18 2
A __construct() 0 9 1
A isHoliday() 0 3 1
A dateMatches() 0 16 4
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 DateTime;
36
use DateTimeImmutable;
37
use DateTimeInterface;
38
use IntlCalendar;
39
use Org_Heigl\Holidaychecker\CalendarDay;
40
use Org_Heigl\Holidaychecker\HolidayIteratorItemInterface;
41
use function array_map;
42
use function in_array;
43
44
class Date implements HolidayIteratorItemInterface
45
{
46
    /** @var CalendarDay */
47
    private $calendarDay;
48
49
    /** @var bool  */
50
    private $holiday;
51
52
    /** @var string */
53
    private $name;
54
55
    /** @var string */
56
    private $forwardTo;
57
58
    /** @var array */
59
    private $forwardWhen;
60
61
    /** @var string */
62
    private $rewindTo;
63
64
    /** @var array */
65
    private $rewindWhen;
66
67
    public function __construct(string $name, bool $holiday, CalendarDay $day, string $forwardTo = '', array $forwardWhen = [], string $rewindTo = '', array $rewindWhen = [])
68
    {
69
        $this->calendarDay = $day;
70
        $this->holiday = $holiday;
71
        $this->name = $name;
72
        $this->forwardTo = $forwardTo;
73
        $this->forwardWhen = self::replacedDays($forwardWhen);
74
        $this->rewindTo = $rewindTo;
75
        $this->rewindWhen = self::replacedDays($rewindWhen);
76
    }
77
78
    public function dateMatches(DateTimeInterface $date): bool
79
    {
80
        $year = (int) $date->format('Y');
81
		$weekday = $this->calendarDay->getWeekdayForGregorianYear($year);
82
        if (in_array($weekday, $this->forwardWhen, true)) {
83
            return $this->calendarDay->isFollowUpDay($date, $this->forwardTo);
84
        }
85
86
        if (in_array($weekday, $this->rewindWhen, true)) {
87
            return $this->calendarDay->isPreviousDay($date, $this->rewindTo);
88
        }
89
90
        if ($date instanceof DateTime) {
91
            $date = DateTimeImmutable::createFromMutable($date);
92
        }
93
        return $this->calendarDay->isSameDay($date);
94
    }
95
96
    public function getName(): string
97
    {
98
        return $this->name;
99
    }
100
101
    public function isHoliday(): bool
102
    {
103
        return $this->holiday;
104
    }
105
106
    private static function replacedDays(array $replaced): array
107
    {
108
        $daymap = [
109
            'sunday' => IntlCalendar::DOW_SUNDAY,
110
            'monday' => IntlCalendar::DOW_MONDAY,
111
            'tuesday' => IntlCalendar::DOW_TUESDAY,
112
            'wednesday' => IntlCalendar::DOW_WEDNESDAY,
113
            'thursday' => IntlCalendar::DOW_THURSDAY,
114
            'friday' => IntlCalendar::DOW_FRIDAY,
115
            'saturday' => IntlCalendar::DOW_SATURDAY,
116
        ];
117
118
        return array_map(function (string $day) use ($daymap) {
119
            if (! isset($daymap[$day])) {
120
                return null;
121
            }
122
            return $daymap[$day];
123
        }, $replaced);
124
    }
125
}
126