2012-05-03 09:21:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorCalendarHoliday extends PhabricatorCalendarDAO {
|
|
|
|
|
|
|
|
protected $day;
|
|
|
|
protected $name;
|
|
|
|
|
|
|
|
public function getConfiguration() {
|
|
|
|
return array(
|
|
|
|
self::CONFIG_TIMESTAMPS => false,
|
2014-09-19 20:46:20 +02:00
|
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
|
|
'day' => 'date',
|
|
|
|
'name' => 'text64',
|
|
|
|
),
|
|
|
|
self::CONFIG_KEY_SCHEMA => array(
|
|
|
|
'day' => array(
|
|
|
|
'columns' => array('day'),
|
2014-10-01 16:53:50 +02:00
|
|
|
'unique' => true,
|
2014-09-19 20:46:20 +02:00
|
|
|
),
|
|
|
|
),
|
2012-05-03 09:21:47 +02:00
|
|
|
) + parent::getConfiguration();
|
|
|
|
}
|
|
|
|
|
2012-05-03 21:16:09 +02:00
|
|
|
public static function getNthBusinessDay($epoch, $n) {
|
|
|
|
// Sadly, there are not many holidays. So we can load all of them.
|
|
|
|
$holidays = id(new PhabricatorCalendarHoliday())->loadAll();
|
|
|
|
$holidays = mpull($holidays, null, 'getDay');
|
|
|
|
$interval = ($n > 0 ? 1 : -1) * 24 * 60 * 60;
|
|
|
|
|
|
|
|
$return = $epoch;
|
|
|
|
for ($i = abs($n); $i > 0; ) {
|
|
|
|
$return += $interval;
|
|
|
|
$weekday = date('w', $return);
|
|
|
|
if ($weekday != 0 && $weekday != 6 && // Sunday and Saturday
|
|
|
|
!isset($holidays[date('Y-m-d', $return)])) {
|
|
|
|
$i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2012-05-03 09:21:47 +02:00
|
|
|
}
|