generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
71 changed files
with
514 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?php | ||
|
||
namespace Spatie\Holidays\Calendars; | ||
|
||
use Carbon\CarbonImmutable; | ||
use Carbon\CarbonPeriod; | ||
use Carbon\Exceptions\InvalidFormatException; | ||
use Spatie\Holidays\Countries\Country; | ||
use Spatie\Holidays\Exceptions\InvalidYear; | ||
|
||
/** @mixin Country */ | ||
trait IndianCalender | ||
{ | ||
/** @return array<CarbonPeriod> */ | ||
protected function ashura(int $year, int $totalDays = 1): array | ||
{ | ||
return $this->getMultiDayHoliday(self::ashura, $year, $totalDays); | ||
} | ||
|
||
/** @return array<CarbonPeriod> */ | ||
protected function miladHolidays(int $year, int $totalDays = 1): array | ||
{ | ||
return $this->getMultiDayHoliday(self::miladHolidays, $year, $totalDays); | ||
} | ||
|
||
/** @return array<CarbonPeriod> */ | ||
protected function bakridHolidays(int $year, int $totalDays = 1): array | ||
{ | ||
return $this->getMultiDayHoliday(self::bakridHolidays, $year, $totalDays); | ||
} | ||
|
||
/** @return array<CarbonPeriod> */ | ||
protected function ramzanIdHolidays(int $year, int $totalDays = 1): array | ||
{ | ||
return $this->getMultiDayHoliday(self::ramzanIdHolidays, $year, $totalDays); | ||
} | ||
|
||
/** @param array<string> $collection */ | ||
protected function getSingleDayHoliday(array $collection, int $year): CarbonImmutable | ||
{ | ||
$date = $collection[$year] ?? null; | ||
|
||
if ($date === null) { | ||
throw InvalidYear::range($this->countryCode(), 1970, 2037); | ||
} | ||
|
||
$date = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-{$date}")?->startOfDay(); | ||
|
||
if ($date === null) { | ||
throw new InvalidFormatException('Invalid date for holiday'); | ||
} | ||
|
||
return $date; | ||
} | ||
|
||
/** | ||
* @param array<string|array<string>> $collection | ||
* @return array<CarbonPeriod> | ||
*/ | ||
protected function getMultiDayHoliday(array $collection, int $year, int $totalDays): array | ||
{ | ||
$date = $collection[$year] ?? null; | ||
|
||
if ($date === null) { | ||
throw InvalidYear::range($this->countryCode(), 1970, 2037); | ||
} | ||
|
||
$overlap = $this->getOverlapping($collection, $year, $totalDays); | ||
|
||
if ($overlap) { | ||
$period = $this->createPeriod($overlap, $year - 1, $totalDays); | ||
|
||
$date = [$period, $date]; | ||
} | ||
|
||
if (! is_array($date)) { | ||
return [$this->createPeriod($date, $year, $totalDays)]; | ||
} | ||
|
||
// Twice a year | ||
$periods = []; | ||
$dates = $date; | ||
|
||
/** @var CarbonPeriod|string $date */ | ||
foreach ($dates as $date) { | ||
if ($date instanceof CarbonPeriod) { | ||
$periods[] = $date; | ||
|
||
continue; | ||
} | ||
|
||
$periods[] = $this->createPeriod($date, $year, $totalDays); | ||
} | ||
|
||
return $periods; | ||
} | ||
|
||
protected function createPeriod(string $date, int $year, int $totalDays): CarbonPeriod | ||
{ | ||
$start = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-{$date}")?->startOfDay(); | ||
$end = $start->addDays($totalDays - 1)->startOfDay(); | ||
|
||
return CarbonPeriod::create($start, '1 day', $end); | ||
} | ||
|
||
/** @param array<string|array<string>> $collection */ | ||
protected function getOverlapping(array $collection, int $year, int $totalDays): ?string | ||
{ | ||
if ($year === 1970) { | ||
return null; | ||
} | ||
|
||
$date = $collection[$year - 1] ?? null; | ||
|
||
if ($date === null) { | ||
throw InvalidYear::range($this->countryCode(), 1970, 2037); | ||
} | ||
|
||
if (is_array($date)) { | ||
$date = end($date); | ||
} | ||
|
||
$start = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-{$date}")?->startOfDay(); | ||
$end = $start->addDays($totalDays - 1)->startOfDay(); | ||
|
||
if ($end->year !== $year) { | ||
return (string) $date; | ||
} | ||
|
||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.