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

EasterOrthodox   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 3
eloc 17
c 3
b 0
f 0
dl 0
loc 38
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getOrthodoxEaster() 0 15 1
A getEaster() 0 13 2
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 DateTimeImmutable;
37
use function jdtounix;
38
use function jewishtojd;
39
use function juliantojd;
40
41
class EasterOrthodox extends Easter
42
{
43
    /**
44
     * @param int $year
45
     *
46
     * @see http://www.smart.net/~mmontes/ortheast.html
47
     * @return DateTimeImmutable
48
     */
49
    private function getOrthodoxEaster(int $year): DateTimeImmutable
50
    {
51
        $r1 = $year % 19;
52
        $r2 = $year % 4;
53
        $r3 = $year % 7;
54
        $rA = 19 * $r1 + 16;
55
        $r4 = $rA % 30;
56
        $rB = 2 * $r2 + 4 * $r3 + 6 * $r4;
57
        $r5 = $rB % 7;
58
        $rC = $r4 + $r5;
59
60
        // Don't touch this. It just seems to work…
61
        // And doing the "same" in DateTime (adding a period of $rC days doesn't
62
        // yield the same result…
63
        return new DateTimeImmutable('@' . jdtounix(juliantojd(3, 21, $year) + $rC));
64
    }
65
66
    protected function getEaster(int $year): DateTimeImmutable
67
    {
68
        $jewishYear = 3760 + $year;
69
        $endOfPessach = new DateTimeImmutable(
70
            '@' . jdtounix(jewishtojd(1, 20, $jewishYear))
71
        );
72
        $orthodoxEaster = $this->getOrthodoxEaster($year);
73
        if ($endOfPessach > $orthodoxEaster) {
74
            $weekday = (int) $endOfPessach->format('w');
75
            return $endOfPessach->add(new DateInterval('P' . (7-$weekday) . 'D'));
76
        }
77
78
        return $orthodoxEaster;
79
    }
80
}
81