Initial code
parent
8b973115cc
commit
653007cd25
@ -0,0 +1,5 @@
|
|||||||
|
.idea/
|
||||||
|
vendor/
|
||||||
|
|
||||||
|
*.lock
|
||||||
|
.env
|
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"description": "A calendar for public holiday",
|
||||||
|
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"require": {
|
||||||
|
"php": "^8.0",
|
||||||
|
"ext-mbstring": "*",
|
||||||
|
"eluceo/ical": "^2.7"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"WebSite\\": "php/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"readme": "README.md",
|
||||||
|
"homepage": "https://git.jrosset.ovh/jrosset/PublicHolidayCalendar",
|
||||||
|
"license": "CC-BY-4.0",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Julien Rosset",
|
||||||
|
"email": "jul.rosset@gmail.com"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace WebSite;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convenient class for extra multi-bytes string manipulation
|
||||||
|
*/
|
||||||
|
class MultiByte {
|
||||||
|
/**
|
||||||
|
* Multi-bytes version of {@see str_pad()}
|
||||||
|
*
|
||||||
|
* @param string $string The input string
|
||||||
|
* @param int $padLength The length of output string
|
||||||
|
* @param string $padString The padding string
|
||||||
|
* @param int $padType The padding type : STR_PAD_*
|
||||||
|
* @param string|null $encoding The encoding. Null if {@see mb_internal_encoding()}
|
||||||
|
*
|
||||||
|
* @return string The output string
|
||||||
|
*/
|
||||||
|
public static function str_pad (string $string, int $padLength, string $padString = ' ', int $padType = STR_PAD_RIGHT, ?string $encoding = null): string {
|
||||||
|
$encoding ??= mb_internal_encoding();
|
||||||
|
|
||||||
|
$stringLength = mb_strlen($string, $encoding);
|
||||||
|
$padStringLength = mb_strlen($padString, $encoding);
|
||||||
|
|
||||||
|
if ($padLength <= 0 || ($padLength - $stringLength) <= 0) {
|
||||||
|
return $string;
|
||||||
|
}
|
||||||
|
|
||||||
|
$padNumber = $padLength - $stringLength;
|
||||||
|
|
||||||
|
$padNumberLeft = 0;
|
||||||
|
$padNumberRight = 0;
|
||||||
|
switch ($padType) {
|
||||||
|
case STR_PAD_RIGHT:
|
||||||
|
$padNumberRight = $padNumber;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case STR_PAD_LEFT:
|
||||||
|
$padNumberLeft = $padNumber;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case STR_PAD_BOTH:
|
||||||
|
$padNumberLeft = floor($padNumber / 2);
|
||||||
|
$padNumberRight = $padNumber - $padNumberLeft;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return str_repeat($padString, ceil($padNumberLeft / $padStringLength))
|
||||||
|
. $string
|
||||||
|
. str_repeat($padString, ceil($padNumberRight / $padStringLength));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,361 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace WebSite;
|
||||||
|
|
||||||
|
use DateInterval;
|
||||||
|
use DateTime;
|
||||||
|
use DateTimeImmutable;
|
||||||
|
use DateTimeInterface;
|
||||||
|
use DateTimeZone;
|
||||||
|
use Eluceo\iCal\Domain\Entity\Calendar;
|
||||||
|
use Eluceo\iCal\Domain\Entity\Event;
|
||||||
|
use Eluceo\iCal\Domain\Entity\TimeZone;
|
||||||
|
use Eluceo\iCal\Domain\ValueObject\Date;
|
||||||
|
use Eluceo\iCal\Domain\ValueObject\SingleDay;
|
||||||
|
use Eluceo\iCal\Domain\ValueObject\UniqueIdentifier;
|
||||||
|
use Eluceo\iCal\Presentation\Factory\CalendarFactory;
|
||||||
|
use Exception;
|
||||||
|
use JetBrains\PhpStorm\NoReturn;
|
||||||
|
use Throwable;
|
||||||
|
use UnexpectedValueException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A calendar for public holidays
|
||||||
|
*/
|
||||||
|
class PublicHolidayCalendar {
|
||||||
|
/**
|
||||||
|
* Generate the calendar
|
||||||
|
*
|
||||||
|
* Arguments :
|
||||||
|
* - YearStart: int The start year of the calendar (with century). Default : current year
|
||||||
|
* - YearNumber: int The number of year fo the calendar. Default : 5
|
||||||
|
* - WeeksNumbers: bool (0/1) Include weeks number ? Default : 0
|
||||||
|
*
|
||||||
|
* All times are UTC
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
#[NoReturn] public function proceed (): void {
|
||||||
|
try {
|
||||||
|
//region Extract arguments
|
||||||
|
//region YearStart
|
||||||
|
$yearStart = $_GET['YearStart'] == '' ? (new DateTimeImmutable('now'))->format('Y') : $_GET['YearStart'];
|
||||||
|
if (!is_numeric($yearStart)) {
|
||||||
|
throw new UnexpectedValueException('The "YearStart" argument must be an integer');
|
||||||
|
}
|
||||||
|
$yearStart = intval($yearStart);
|
||||||
|
//endregion
|
||||||
|
//region YearNumber
|
||||||
|
$yearNumber = $_GET['YearNumber'] == '' ? 5 : $_GET['YearNumber'];
|
||||||
|
if (!is_numeric($yearNumber)) {
|
||||||
|
throw new UnexpectedValueException('The "YearNumber" argument must be a strictly positive integer');
|
||||||
|
}
|
||||||
|
$yearNumber = intval($yearNumber);
|
||||||
|
if ($yearNumber < 0) {
|
||||||
|
throw new UnexpectedValueException('The "YearNumber" argument must be a strictly positive integer');
|
||||||
|
}
|
||||||
|
//endregion
|
||||||
|
//region WeeksNumbers
|
||||||
|
$weeksNumbers = $_GET['WeeksNumbers'] == '' ? 0 : $_GET['WeeksNumbers'];
|
||||||
|
if (preg_match('#^\s*(?<bool>[01])?\s*$#i', $weeksNumbers, $match) !== 1) {
|
||||||
|
throw new UnexpectedValueException('The "WeeksNumber" argument must be a boolean (0 or 1)');
|
||||||
|
}
|
||||||
|
$weeksNumbers = isset($match['bool']) && $match['false'];
|
||||||
|
//endregion
|
||||||
|
//endregion
|
||||||
|
|
||||||
|
//region Create the calendar
|
||||||
|
$calendar = new Calendar();
|
||||||
|
$calendar->addTimeZone(TimeZone::createFromPhpDateTimeZone(new DateTimeZone(DateTimeZone::UTC)));
|
||||||
|
|
||||||
|
$yearEnd = $yearStart + $yearNumber;
|
||||||
|
for ($yearCurrent = $yearStart; $yearCurrent <= $yearEnd; $yearCurrent++) {
|
||||||
|
$events = $this->createEvents($yearCurrent, $weeksNumbers);
|
||||||
|
foreach ($events as $event) {
|
||||||
|
$calendar->addEvent($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//endregion
|
||||||
|
|
||||||
|
//region Export to iCal
|
||||||
|
$icalFactory = new CalendarFactory();
|
||||||
|
$icalContent = (string)$icalFactory->createCalendar($calendar);
|
||||||
|
|
||||||
|
header('Content-Type: text/calendar; charset=UTF-8', true, 200);
|
||||||
|
header('Content-Length: ' . mb_strlen($icalContent));
|
||||||
|
header('Content-Disposition: attachment; filename=PublicHolidayCalendar.ics');
|
||||||
|
echo $icalContent;
|
||||||
|
exit(0);
|
||||||
|
//endregion
|
||||||
|
}
|
||||||
|
catch (Throwable $e) {
|
||||||
|
header('Content-Type: text/plain; charset=UTF-8', true, 500);
|
||||||
|
echo $e->getMessage();
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create all events of a year
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
* @param bool $weeksNumbers Include weeks numbers ?
|
||||||
|
*
|
||||||
|
* @return Event[] The list of events
|
||||||
|
*/
|
||||||
|
private function createEvents (int $year, bool $weeksNumbers): array {
|
||||||
|
$events = array_merge(
|
||||||
|
$this->createStaticPublicHolidays($year),
|
||||||
|
$this->createVariablePublicHolidays($year),
|
||||||
|
$this->createNameDays($year),
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($weeksNumbers) {
|
||||||
|
$events = array_merge(
|
||||||
|
$events,
|
||||||
|
$this->createWeeksNumbers($year)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $events;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create static public holidays
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return Event[] The list of events
|
||||||
|
*/
|
||||||
|
private function createStaticPublicHolidays (int $year): array {
|
||||||
|
return [
|
||||||
|
static::createEvent('Jour de l\'an', '1er janvier', true, static::createDate($year, 1, 1)),
|
||||||
|
static::createEvent('Fête du travail', '1er mai', true, static::createDate($year, 5, 1)),
|
||||||
|
static::createEvent('Armistice 1945', '8 mai', true, static::createDate($year, 5, 8)),
|
||||||
|
static::createEvent('Prise de la bastille', '14 juillet', true, static::createDate($year, 7, 14)),
|
||||||
|
static::createEvent('Assomption de Marie', '15 août', true, static::createDate($year, 8, 15)),
|
||||||
|
static::createEvent('Toussaint', '1er novembre', true, static::createDate($year, 11, 1)),
|
||||||
|
static::createEvent('Armistice 1918', '11 novembre', true, static::createDate($year, 11, 11)),
|
||||||
|
static::createEvent('Noël', '25 décembre', true, static::createDate($year, 12, 25)),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create variable public holidays
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return Event[] The list of events
|
||||||
|
*/
|
||||||
|
private function createVariablePublicHolidays (int $year): array {
|
||||||
|
$paquesDate = static::calculatePaques($year);
|
||||||
|
return [
|
||||||
|
static::createEvent('Pâques', 'Lundi de Pâques', true, $paquesDate),
|
||||||
|
static::createEvent('Ascension', 'Jeudi de l\'Ascension', true, $paquesDate->add(new DateInterval('P39D'))),
|
||||||
|
static::createEvent('Pentecôte', 'Lundi de Pentecôte', true, $paquesDate->add(new DateInterval('P50D'))),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create name days
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return Event[] The list of events
|
||||||
|
*/
|
||||||
|
private function createNameDays (int $year): array {
|
||||||
|
return [
|
||||||
|
static::createEvent('Fête des mères', 'Fête des mères', false, static::calculateMotherDay($year)),
|
||||||
|
static::createEvent('Fête des pères', 'Fête des pères', false, static::calculateFatherDay($year)),
|
||||||
|
static::createEvent('Fête des grand-mères', 'Fête des grand-mères', false, static::calculateGrandMotherDay($year)),
|
||||||
|
static::createEvent('Fête des grand-pères', 'Fête des grand-pères', false, static::calculateGrandFatherDay($year)),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create weeks numbers
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return Event[] The list of events
|
||||||
|
*/
|
||||||
|
private function createWeeksNumbers (int $year): array {
|
||||||
|
$lastDay = static::createDate($year, 12, 31);
|
||||||
|
|
||||||
|
$currentDay = static::createDate($year, 1, 1);
|
||||||
|
$currentDayOfWeek = (int)$currentDay->format('N');
|
||||||
|
if ($currentDayOfWeek > 1) {
|
||||||
|
try {
|
||||||
|
$currentDay = $currentDay->sub(new DateInterval('P' . (8 - $currentDayOfWeek) . 'D'));
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$events = [];
|
||||||
|
while ($currentDay < $lastDay) {
|
||||||
|
$events[] = static::createEvent(
|
||||||
|
'Semaine ' . (count($events) + 1),
|
||||||
|
'Semaine n° ' . (count($events) + 1),
|
||||||
|
false,
|
||||||
|
$currentDay
|
||||||
|
);
|
||||||
|
$currentDay = $currentDay->add(new DateInterval('P7D'));
|
||||||
|
}
|
||||||
|
return $events;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate the date of "Pâques"
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The of "Pâques"
|
||||||
|
*/
|
||||||
|
private static function calculatePaques (int $year): DateTimeImmutable {
|
||||||
|
//https://fr.wikipedia.org/wiki/Calcul_de_la_date_de_P%C3%A2ques
|
||||||
|
$metonCycle = $year % 19;
|
||||||
|
$yearCentury = intdiv($year, 100);
|
||||||
|
$yearRank = $year % 100;
|
||||||
|
$bissextileCentury = intdiv($yearCentury, 4);
|
||||||
|
$bissextileOffset = $yearCentury % 4;
|
||||||
|
$proemptoseCycle = intdiv(($yearCentury + 8), 25);
|
||||||
|
$proemptose = intdiv($yearCentury - $proemptoseCycle + 1, 3);
|
||||||
|
$epacte = (19 * $metonCycle + $yearCentury - $bissextileCentury - $proemptose + 15) % 30;
|
||||||
|
$bissextileRankCentury = intdiv($yearRank, 4);
|
||||||
|
$bissextileRankOffset = $yearRank % 4;
|
||||||
|
$dominicalLetter = (2 * $bissextileOffset + 2 * $bissextileRankCentury - $epacte - $bissextileRankOffset + 32) % 7;
|
||||||
|
$correction = intdiv($metonCycle + 11 * $epacte + 22 * $dominicalLetter, 451);
|
||||||
|
$paquesNumber = $epacte + $dominicalLetter - 7 * $correction + 114;
|
||||||
|
|
||||||
|
return static::createDate($year, intdiv($paquesNumber, 31), ($paquesNumber % 31) + 1);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Calculate the mother day
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function calculateMotherDay (int $year): DateTimeImmutable {
|
||||||
|
$paquesDate = static::calculatePaques($year);
|
||||||
|
|
||||||
|
$motherDay = static::createDate($year, 5, 31);
|
||||||
|
$motherDayOfWeek = (int)$motherDay->format('N');
|
||||||
|
if ($motherDayOfWeek < 7) {
|
||||||
|
try {
|
||||||
|
$motherDay = $motherDay->sub(new DateInterval('P' . $motherDayOfWeek . 'D'));
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($motherDay === $paquesDate) {
|
||||||
|
$motherDay = $motherDay->add(new DateInterval('P7D'));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $motherDay;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Calculate the father day
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function calculateFatherDay (int $year): DateTimeImmutable {
|
||||||
|
$fatherDay = static::createDate($year, 6, 1);
|
||||||
|
try {
|
||||||
|
$fatherDay = $fatherDay->sub(new DateInterval('P' . (7 - (int)$fatherDay->format('N')) . 'D'));
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
}
|
||||||
|
return $fatherDay->add(new DateInterval('P21D'));
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Calculate the grandmother day
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function calculateGrandMotherDay (int $year): DateTimeImmutable {
|
||||||
|
$grandMotherDay = static::createDate($year, 3, 1);
|
||||||
|
try {
|
||||||
|
$grandMotherDay = $grandMotherDay->sub(new DateInterval('P' . (7 - (int)$grandMotherDay->format('N')) . 'D'));
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
}
|
||||||
|
return $grandMotherDay;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Calculate the grandfather day
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function calculateGrandFatherDay (int $year): DateTimeImmutable {
|
||||||
|
$grandFatherDay = static::createDate($year, 10, 1);
|
||||||
|
try {
|
||||||
|
$grandFatherDay = $grandFatherDay->sub(new DateInterval('P' . (7 - (int)$grandFatherDay->format('N')) . 'D'));
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
}
|
||||||
|
return $grandFatherDay;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an event
|
||||||
|
*
|
||||||
|
* @param string $summary The event's summary
|
||||||
|
* @param string $description The event's description
|
||||||
|
* @param bool $publicHoliday Is the event a public holiday ?
|
||||||
|
* @param DateTimeInterface $date The event's date (whole day)
|
||||||
|
*
|
||||||
|
* @return Event The event
|
||||||
|
*/
|
||||||
|
private static function createEvent (string $summary, string $description, bool $publicHoliday, DateTimeInterface $date): Event {
|
||||||
|
return (new Event(new UniqueIdentifier(hash('sha256', $date->format('Y-m-d')))))
|
||||||
|
->setSummary($summary)
|
||||||
|
->setDescription($description . ($publicHoliday ? ' - Férié' : ''))
|
||||||
|
->setOccurrence(new SingleDay(new Date($date)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a date (string)
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
* @param int $month The month of the year
|
||||||
|
* @param int $day The day of the month
|
||||||
|
*
|
||||||
|
* @return string The date with "Y-m-d" format
|
||||||
|
*/
|
||||||
|
private static function createDateString (int $year, int $month, int $day): string {
|
||||||
|
return MultiByte::str_pad($year, 4, '0', STR_PAD_LEFT)
|
||||||
|
. '-' . MultiByte::str_pad($month, 2, '0', STR_PAD_LEFT)
|
||||||
|
. '-' . MultiByte::str_pad($day, 2, '0', STR_PAD_LEFT);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create a date ({@see DateTime})
|
||||||
|
*
|
||||||
|
* @param int $year The year
|
||||||
|
* @param int $month The month of the year
|
||||||
|
* @param int $day The day of the month
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function createDate (int $year, int $month, int $day): DateTimeImmutable {
|
||||||
|
return static::createDateFromDateString(static::createDateString($year, $month, $day));
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create a date ({@see DateTimeImmutable}) from a date string
|
||||||
|
*
|
||||||
|
* @param string $dateString The date string ("Y-m-d" format)
|
||||||
|
*
|
||||||
|
* @return DateTimeImmutable The date
|
||||||
|
*/
|
||||||
|
private static function createDateFromDateString (string $dateString): DateTimeImmutable {
|
||||||
|
try {
|
||||||
|
return new DateTimeImmutable($dateString);
|
||||||
|
}
|
||||||
|
catch (Exception) {
|
||||||
|
return new DateTimeImmutable('now');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,463 @@
|
|||||||
|
# Apache configuration file
|
||||||
|
<Limit POST>
|
||||||
|
Require all granted
|
||||||
|
</Limit>
|
||||||
|
|
||||||
|
#
|
||||||
|
# Redirection HTTP => HTTPS
|
||||||
|
#
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteCond %{HTTPS} !=on
|
||||||
|
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Better website experience for IE users
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Force the latest IE version, in various cases when it may fall back to IE7 mode
|
||||||
|
# github.com/rails/rails/commit/123eb25#commitcomment-118920
|
||||||
|
# Use ChromeFrame if it's installed for a better experience for the poor IE folk
|
||||||
|
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
Header set X-UA-Compatible "IE=Edge,chrome=1"
|
||||||
|
# mod_headers can't match by content-type, but we don't want to send this header on *everything*...
|
||||||
|
<FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
|
||||||
|
Header unset X-UA-Compatible
|
||||||
|
</FilesMatch>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Cross-domain AJAX requests
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Serve cross-domain Ajax requests, disabled by default.
|
||||||
|
# enable-cors.org
|
||||||
|
# code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
|
||||||
|
|
||||||
|
# <IfModule mod_headers.c>
|
||||||
|
# Header set Access-Control-Allow-Origin "*"
|
||||||
|
# </IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# CORS-enabled images (@crossorigin)
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Send CORS headers if browsers request them; enabled by default for images.
|
||||||
|
# developer.mozilla.org/en/CORS_Enabled_Image
|
||||||
|
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
|
||||||
|
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
|
||||||
|
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute
|
||||||
|
|
||||||
|
<IfModule mod_setenvif.c>
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
# mod_headers, y u no match by Content-Type?!
|
||||||
|
<FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
|
||||||
|
SetEnvIf Origin ":" IS_CORS
|
||||||
|
Header set Access-Control-Allow-Origin "*" env=IS_CORS
|
||||||
|
</FilesMatch>
|
||||||
|
</IfModule>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Webfont access
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Allow access from all domains for webfonts.
|
||||||
|
# Alternatively you could only whitelist your
|
||||||
|
# subdomains like "subdomain.example.com".
|
||||||
|
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
|
||||||
|
Header set Access-Control-Allow-Origin "*"
|
||||||
|
</FilesMatch>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Proper MIME type for all files
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
# JavaScript
|
||||||
|
# Normalize to standard type (it's sniffed in IE anyways)
|
||||||
|
# tools.ietf.org/html/rfc4329#section-7.2
|
||||||
|
AddType application/javascript js
|
||||||
|
|
||||||
|
# Audio
|
||||||
|
AddType audio/ogg oga ogg
|
||||||
|
AddType audio/mp4 m4a
|
||||||
|
|
||||||
|
# Video
|
||||||
|
AddType video/ogg ogv
|
||||||
|
AddType video/mp4 mp4 m4v
|
||||||
|
AddType video/webm webm
|
||||||
|
|
||||||
|
# SVG
|
||||||
|
# Required for svg webfonts on iPad
|
||||||
|
# twitter.com/FontSquirrel/status/14855840545
|
||||||
|
AddType image/svg+xml svg svgz
|
||||||
|
AddEncoding gzip svgz
|
||||||
|
|
||||||
|
# Webfonts
|
||||||
|
AddType application/vnd.ms-fontobject eot
|
||||||
|
AddType application/x-font-ttf ttf ttc
|
||||||
|
AddType font/opentype otf
|
||||||
|
AddType application/x-font-woff woff
|
||||||
|
|
||||||
|
# Assorted types
|
||||||
|
AddType image/x-icon ico
|
||||||
|
AddType image/webp webp
|
||||||
|
AddType text/cache-manifest appcache manifest
|
||||||
|
AddType text/x-component htc
|
||||||
|
AddType application/x-chrome-extension crx
|
||||||
|
AddType application/x-opera-extension oex
|
||||||
|
AddType application/x-xpinstall xpi
|
||||||
|
AddType application/octet-stream safariextz
|
||||||
|
AddType application/x-web-app-manifest+json webapp
|
||||||
|
AddType text/x-vcard vcf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Allow concatenation from within specific js and css files
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# e.g. Inside of script.combined.js you could have
|
||||||
|
# <!--#include file="libs/jquery-1.5.0.min.js" -->
|
||||||
|
# <!--#include file="plugins/jquery.idletimer.js" -->
|
||||||
|
# and they would be included into this single file.
|
||||||
|
|
||||||
|
# This is not in use in the boilerplate as it stands. You may
|
||||||
|
# choose to name your files in this way for this advantage or
|
||||||
|
# concatenate and minify them manually.
|
||||||
|
# Disabled by default.
|
||||||
|
|
||||||
|
#<FilesMatch "\.combined\.js$">
|
||||||
|
# Options +Includes
|
||||||
|
# AddOutputFilterByType INCLUDES application/javascript application/json
|
||||||
|
# SetOutputFilter INCLUDES
|
||||||
|
#</FilesMatch>
|
||||||
|
#<FilesMatch "\.combined\.css$">
|
||||||
|
# Options +Includes
|
||||||
|
# AddOutputFilterByType INCLUDES text/css
|
||||||
|
# SetOutputFilter INCLUDES
|
||||||
|
#</FilesMatch>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Gzip compression
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
<IfModule mod_deflate.c>
|
||||||
|
|
||||||
|
# Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
|
||||||
|
<IfModule mod_setenvif.c>
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
|
||||||
|
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
|
||||||
|
</IfModule>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# HTML, TXT, CSS, JavaScript, JSON, XML, HTC:
|
||||||
|
<IfModule filter_module>
|
||||||
|
<IfModule version.c>
|
||||||
|
<IfVersion >= 2.4>
|
||||||
|
FilterDeclare COMPRESS
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'text/html'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'text/css'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'text/plain'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'text/xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'text/x-component'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/javascript'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/json'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/xhtml+xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/rss+xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/atom+xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/vnd.ms-fontobject'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'image/svg+xml'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'image/x-icon'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'application/x-font-ttf'"
|
||||||
|
FilterProvider COMPRESS DEFLATE "%{CONTENT_TYPE} = 'font/opentype'"
|
||||||
|
FilterChain COMPRESS
|
||||||
|
FilterProtocol COMPRESS DEFLATE change=yes;byteranges=no
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion <= 2.2>
|
||||||
|
FilterDeclare COMPRESS
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $text/html
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $text/css
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $text/plain
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $text/xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $text/x-component
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/javascript
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/json
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/xhtml+xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/rss+xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/atom+xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/vnd.ms-fontobject
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $image/svg+xml
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $image/x-icon
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $application/x-font-ttf
|
||||||
|
FilterProvider COMPRESS DEFLATE resp=Content-Type $font/opentype
|
||||||
|
FilterChain COMPRESS
|
||||||
|
FilterProtocol COMPRESS DEFLATE change=yes;byteranges=no
|
||||||
|
|
||||||
|
</IfVersion>
|
||||||
|
</IfModule>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule !mod_filter.c>
|
||||||
|
# Legacy versions of Apache
|
||||||
|
AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
|
||||||
|
AddOutputFilterByType DEFLATE application/javascript
|
||||||
|
AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
|
||||||
|
AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml
|
||||||
|
AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Expires headers (for better cache control)
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# These are pretty far-future expires headers.
|
||||||
|
# They assume you control versioning with cachebusting query params like
|
||||||
|
# <script src="application.js?20100608">
|
||||||
|
# Additionally, consider that outdated proxies may miscache
|
||||||
|
# www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
|
||||||
|
|
||||||
|
# If you don't use filenames to version, lower the CSS and JS to something like
|
||||||
|
# "access plus 1 week" or so.
|
||||||
|
|
||||||
|
<IfModule mod_expires.c>
|
||||||
|
ExpiresActive on
|
||||||
|
|
||||||
|
# Perhaps better to whitelist expires rules? Perhaps.
|
||||||
|
ExpiresDefault "access plus 1 month"
|
||||||
|
|
||||||
|
# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
|
||||||
|
ExpiresByType text/cache-manifest "access plus 0 seconds"
|
||||||
|
|
||||||
|
# Your document html
|
||||||
|
ExpiresByType text/html "access plus 0 seconds"
|
||||||
|
|
||||||
|
# Data
|
||||||
|
ExpiresByType text/xml "access plus 0 seconds"
|
||||||
|
ExpiresByType application/xml "access plus 0 seconds"
|
||||||
|
ExpiresByType application/json "access plus 0 seconds"
|
||||||
|
|
||||||
|
# Feed
|
||||||
|
ExpiresByType application/rss+xml "access plus 1 hour"
|
||||||
|
ExpiresByType application/atom+xml "access plus 1 hour"
|
||||||
|
|
||||||
|
# Favicon (cannot be renamed)
|
||||||
|
ExpiresByType image/x-icon "access plus 1 week"
|
||||||
|
|
||||||
|
# Media: images, video, audio
|
||||||
|
ExpiresByType image/gif "access plus 6 hours"
|
||||||
|
ExpiresByType image/png "access plus 6 hours"
|
||||||
|
ExpiresByType image/jpg "access plus 6 hours"
|
||||||
|
ExpiresByType image/jpeg "access plus 6 hours"
|
||||||
|
ExpiresByType video/ogg "access plus 6 hours"
|
||||||
|
ExpiresByType audio/ogg "access plus 6 hours"
|
||||||
|
ExpiresByType video/mp4 "access plus 6 hours"
|
||||||
|
ExpiresByType video/webm "access plus 6 hours"
|
||||||
|
|
||||||
|
# HTC files (css3pie)
|
||||||
|
ExpiresByType text/x-component "access plus 1 month"
|
||||||
|
|
||||||
|
# Webfonts
|
||||||
|
ExpiresByType application/x-font-ttf "access plus 1 month"
|
||||||
|
ExpiresByType font/opentype "access plus 1 month"
|
||||||
|
ExpiresByType application/x-font-woff "access plus 1 month"
|
||||||
|
ExpiresByType image/svg+xml "access plus 1 month"
|
||||||
|
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
|
||||||
|
|
||||||
|
# CSS and JavaScript
|
||||||
|
ExpiresByType text/css "access plus 1 year"
|
||||||
|
ExpiresByType application/javascript "access plus 1 year"
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# ETag removal
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# FileETag None is not enough for every server.
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
Header unset ETag
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# Since we're sending far-future expires, we don't need ETags for
|
||||||
|
# static content.
|
||||||
|
# developer.yahoo.com/performance/rules.html#etags
|
||||||
|
FileETag None
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Stop screen flicker in IE on CSS rollovers
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# The following directives stop screen flicker in IE on CSS rollovers - in
|
||||||
|
# combination with the "ExpiresByType" rules for images (see above). If
|
||||||
|
# needed, un-comment the following rules.
|
||||||
|
|
||||||
|
# BrowserMatch "MSIE" brokenvary=1
|
||||||
|
# BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
|
||||||
|
# BrowserMatch "Opera" !brokenvary
|
||||||
|
# SetEnvIf brokenvary 1 force-no-vary
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Cookie setting from iframes
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Allow cookies to be set from iframes (for IE only)
|
||||||
|
# If needed, uncomment and specify a path or regex in the Location directive
|
||||||
|
|
||||||
|
# <IfModule mod_headers.c>
|
||||||
|
# <Location />
|
||||||
|
# Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
|
||||||
|
# </Location>
|
||||||
|
# </IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Start rewrite engine
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Turning on the rewrite engine is necessary for the following rules and features.
|
||||||
|
# FollowSymLinks must be enabled for this to work.
|
||||||
|
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
Options +FollowSymlinks
|
||||||
|
RewriteEngine On
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Built-in filename-based cache busting
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# If you're not using the build script to manage your filename version revving,
|
||||||
|
# you might want to consider enabling this, which will route requests for
|
||||||
|
# /css/style.20110203.css to /css/style.css
|
||||||
|
|
||||||
|
# To understand why this is important and a better idea than all.css?v1231,
|
||||||
|
# read: github.com/h5bp/html5-boilerplate/wiki/Version-Control-with-Cachebusting
|
||||||
|
|
||||||
|
# Uncomment to enable.
|
||||||
|
# <IfModule mod_rewrite.c>
|
||||||
|
# RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
# RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
# RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
|
||||||
|
# </IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Prevent SSL cert warnings
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent
|
||||||
|
# https://www.example.com when your cert only allows https://secure.example.com
|
||||||
|
# Uncomment the following lines to use this feature.
|
||||||
|
|
||||||
|
# <IfModule mod_rewrite.c>
|
||||||
|
# RewriteCond %{SERVER_PORT} !^443
|
||||||
|
# RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
|
||||||
|
# </IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Prevent 404 errors for non-existing redirected folders
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# without -MultiViews, Apache will give a 404 for a rewrite if a folder of the same name does not exist
|
||||||
|
# e.g. /blog/hello : webmasterworld.com/apache/3808792.htm
|
||||||
|
|
||||||
|
#Options -MultiViews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# Custom 404 page
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# You can add custom pages to handle 500 or 403 pretty easily, if you like.
|
||||||
|
ErrorDocument 404 /main.php?action=erreur404
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# UTF-8 encoding
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Use UTF-8 encoding for anything served text/plain or text/html
|
||||||
|
AddDefaultCharset utf-8
|
||||||
|
|
||||||
|
# Force UTF-8 for a number of file formats
|
||||||
|
AddCharset utf-8 .css .js .xml .json .rss .atom
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# A little more security
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
# Do we want to advertise the exact version number of Apache we're running?
|
||||||
|
# Probably not.
|
||||||
|
## This can only be enabled if used in httpd.conf - It will not work in .htaccess
|
||||||
|
# ServerTokens Prod
|
||||||
|
|
||||||
|
|
||||||
|
# "-Indexes" will have Apache block users from browsing folders without a default document
|
||||||
|
# Usually you should leave this activated, because you shouldn't allow everybody to surf through
|
||||||
|
# every folder on your server (which includes rather private places like CMS system folders).
|
||||||
|
<IfModule mod_autoindex.c>
|
||||||
|
Options -Indexes
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# Block access to "hidden" directories whose names begin with a period. This
|
||||||
|
# includes directories used by version control systems such as Subversion or Git.
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
RewriteCond %{SCRIPT_FILENAME} -d
|
||||||
|
RewriteCond %{SCRIPT_FILENAME} -f
|
||||||
|
RewriteRule "(^|/)\." - [F]
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
# Block access to backup and source files
|
||||||
|
# This files may be left by some text/html editors and
|
||||||
|
# pose a great security danger, when someone can access them
|
||||||
|
<FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist|env)|~)$">
|
||||||
|
Order allow,deny
|
||||||
|
Deny from all
|
||||||
|
Satisfy All
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Increase cookie security
|
||||||
|
<IfModule php5_module>
|
||||||
|
php_value session.cookie_httponly true
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
#################################
|
||||||
|
# User #
|
||||||
|
#################################
|
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once __DIR__ . '/../vendor/autoload.php';
|
||||||
|
|
||||||
|
use WebSite\PublicHolidayCalendar;
|
||||||
|
|
||||||
|
mb_internal_encoding('UTF-8');
|
||||||
|
|
||||||
|
$page = new PublicHolidayCalendar();
|
||||||
|
$page->proceed();
|
Loading…
Reference in New Issue