Easter   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 7
eloc 19
c 3
b 0
f 0
dl 0
loc 58
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A isHoliday() 0 3 1
A dateMatches() 0 9 1
A getName() 0 3 1
A __construct() 0 5 1
A getOffsetDay() 0 7 2
A getEaster() 0 6 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 DateInterval;
36
use DateTime;
37
use DateTimeImmutable;
38
use DateTimeInterface;
39
use DateTimeZone;
40
use Org_Heigl\DateIntervalComparator\DateIntervalComparator;
41
use Org_Heigl\Holidaychecker\HolidayIteratorItemInterface;
42
use function easter_days;
43
44
class Easter implements HolidayIteratorItemInterface
45
{
46
	/** @var int */
47
	private $offset;
48
49
	/** @var bool */
50
	private $holiday;
51
52
	/** @var string */
53
	private $name;
54
55
	public function __construct(string $name, bool $holiday, int $offset)
56
	{
57
		$this->offset = $offset;
58
		$this->holiday = $holiday;
59
		$this->name = $name;
60
	}
61
62
	public function dateMatches(DateTimeInterface $date): bool
63
	{
64
		$year = (int) $date->format('Y');
65
66
		$easter = $this->getEaster($year);
67
		$day = $this->getOffsetDay($easter, $this->offset);
68
69
		$comparator = new DateIntervalComparator();
70
		return 0 > $comparator->compare($day->diff($date), new DateInterval('P1D'));
71
	}
72
73
	protected function getEaster(int $year): DateTimeImmutable
74
	{
75
		$base = new DateTimeImmutable($year . "-03-21", new DateTimeZone('UTC'));
76
		$days = easter_days($year);
77
78
		return $base->add(new DateInterval("P{$days}D"));
79
	}
80
81
	/**
82
	 * @param DateTime|DateTimeImmutable $date
83
	 * @return DateTime|DateTimeImmutable
84
	 */
85
	private function getOffsetDay($date, int $offset)
86
	{
87
		if ($offset < 0) {
88
			return $date->sub(new DateInterval('P' . $offset * -1 . 'D'));
89
		}
90
91
		return $date->add(new DateInterval('P' . $offset . 'D'));
92
	}
93
94
	public function getName(): string
95
	{
96
		return $this->name;
97
	}
98
99
	public function isHoliday(): bool
100
	{
101
		return $this->holiday;
102
	}
103
}
104