19 declare(strict_types=1);
45 $this->log =
$GLOBALS[
'DIC']->logger()->cal();
46 $this->
event = $entry;
47 $this->recurrence = $rec;
73 $this->valid_dates->add($this->
event->getStart());
88 $this->valid_dates->add($this->
event->getStart());
89 #$this->valid_dates->add($this->event->getStart()); 94 $time = microtime(
true);
99 #echo "ZEIT: ADJUST: ".(microtime(true) - $time).'<br>'; 107 $this->frequence_context = $this->recurrence->getFrequenceType();
110 $freq_res->add($start);
114 #echo "BYMONTH: ".$freq_res; 117 #echo "BYWEEKNO: ".$freq_res; 120 #echo "BYYEARDAY: ".$freq_res; 123 #echo "BYMONTHDAY: ".$freq_res; 125 #$time = microtime(true); 127 #echo "ZEIT: ".(microtime(true) - $time); 128 #echo "BYDAY: ".$freq_res; 131 #echo "BYSETPOS: ".$freq_res; 145 $this->valid_dates->sort();
157 $list_copy = clone $list;
158 foreach ($list_copy as $start_date) {
159 $end_date = clone $start_date;
170 $this->log->debug(
'Removed invalid date ' . $start_date .
' <-> ' . $end_date);
171 $list->
remove($start_date);
181 $this->timezone = $this->
event->isFullday() ?
ilTimeZone::UTC : $this->recurrence->getTimeZone();
184 $this->period_start = clone $a_start;
185 $this->period_end = clone $a_end;
186 $this->start = clone $this->
event->getStart();
189 if ($this->
event->isFullday()) {
194 $this->period_start->switchTimeZone($this->recurrence->getTimeZone());
195 $this->period_end->switchTimeZone($this->recurrence->getTimeZone());
196 $this->start->switchTimeZone($this->recurrence->getTimeZone());
200 $this->log->debug(
': ' . $e->getMessage());
209 if ($this->recurrence->getFrequenceUntilCount() > 0) {
215 $optimized = clone
$start;
233 switch ($this->recurrence->getFrequenceType()) {
251 $this->log->warning(
'No frequence defined.');
260 if (!$this->recurrence->getBYMONTHList()) {
264 foreach ($list->
get() as $date) {
265 foreach ($this->recurrence->getBYMONTHList() as $month) {
270 $month_date->increment(
275 #echo "BYMONTH: ".$month_date; 276 $month_list->add($month_date);
277 } elseif ($date->get(
IL_CAL_FKT_DATE,
'n', $this->timezone) == $month) {
278 $month_list->add($date);
299 if (!$this->recurrence->getBYWEEKNOList()) {
303 foreach ($list->
get() as $seed) {
304 $weeks_in_year = date(
'W', mktime(0, 0, 0, 12, 28, $seed->get(
IL_CAL_FKT_DATE,
'Y', $this->timezone)));
305 $this->log->debug(
': Year ' . $seed->get(
309 ) .
' has ' . $weeks_in_year .
' weeks');
310 foreach ($this->recurrence->getBYWEEKNOList() as $week_no) {
311 $week_no = $week_no < 0 ? ((
int) $weeks_in_year + $week_no + 1) : $week_no;
313 switch ($this->frequence_context) {
315 $this->log->debug(
': Handling BYWEEKNO in MONTHLY context');
318 $weeks_list->add($seed);
323 $this->log->debug(
': Handling BYWEEKNO in YEARLY context');
324 $week_diff = $week_no - $seed->get(
IL_CAL_FKT_DATE,
'W', $this->timezone);
329 $weeks_list->add($new_week);
341 if (!$this->recurrence->getBYYEARDAYList()) {
345 foreach ($list->
get() as $seed) {
346 $num_days = date(
'z', mktime(0, 0, 0, 12, 31, $seed->get(
IL_CAL_FKT_DATE,
'Y', $this->timezone)));
347 $this->log->debug(
': Year ' . $seed->get(
351 ) .
' has ' . $num_days .
' days.');
353 foreach ($this->recurrence->getBYYEARDAYList() as $day_no) {
354 $day_no = $day_no < 0 ? ((
int) $num_days + $day_no + 1) : $day_no;
356 $day_diff = $day_no - $seed->get(
IL_CAL_FKT_DATE,
'z', $this->timezone);
360 switch ($this->frequence_context) {
364 $days_list->add($new_day);
369 if ($seed->get(
IL_CAL_FKT_DATE,
'W', $this->timezone) == $new_day->get(
374 $days_list->add($new_day);
379 if ($seed->get(
IL_CAL_FKT_DATE,
'n', $this->timezone) == $new_day->get(
384 $days_list->add($new_day);
389 $days_list->add($new_day);
402 if (!$this->recurrence->getBYMONTHDAYList()) {
406 foreach ($list->
get() as $seed) {
411 foreach ($this->recurrence->getBYMONTHDAYList() as $bymonth_no) {
412 $day_no = $bymonth_no < 0 ? ($num_days + $bymonth_no + 1) : $bymonth_no;
414 if ($day_no < 1 or $day_no > $num_days) {
415 $this->log->debug(
': Ignoring BYMONTHDAY rule: ' . $day_no .
' for month ' .
420 $day_diff = $day_no - $seed->get(
IL_CAL_FKT_DATE,
'j', $this->timezone);
424 switch ($this->frequence_context) {
428 $days_list->add($new_day);
434 if ($seed->get(
IL_CAL_FKT_DATE,
'W', $this->timezone) == $new_day->get(
439 $days_list->add($new_day);
445 $days_list->add($new_day);
455 for ($month = 1; $month <= 12; $month++) {
460 $day_no = $bymonth_no < 0 ? ($num_days + $bymonth_no + 1) : $bymonth_no;
461 if ($day_no < 1 or $day_no > $num_days) {
462 $this->log->debug(
': Ignoring BYMONTHDAY rule: ' . $day_no .
' for month ' . $month);
466 $unix = mktime($h, $i, $s, $month, $day_no, $y);
467 $tz_obj->restoreTZ();
469 $days_list->add($new_day);
483 if (!$this->recurrence->getBYDAYList()) {
492 foreach ($list->
get() as $seed) {
497 $date_info[
'mday'] = 1;
498 $date_info[
'mon'] = 1;
501 switch ($this->frequence_context) {
507 $day_array = $this->
getMonthWeekDays($seed_info[
'year'], $seed_info[
'mon']);
517 $day_array[strtoupper(substr($seed->get(
IL_CAL_FKT_DATE,
'D'), 0, 2))] = array($seed_info[
'yday']);
520 foreach ($this->recurrence->getBYDAYList() as $byday) {
522 $day = strtoupper(substr($byday, -2));
523 $num_by_day = (
int) $byday;
526 if ($num_by_day > 0) {
527 if (isset($day_array[$day][$num_by_day - 1])) {
528 $year_day = array($day_array[$day][$num_by_day - 1]);
530 } elseif (isset($day_array[$day][count($day_array[$day]) + $num_by_day])) {
531 $year_day = array($day_array[$day][count($day_array[$day]) + $num_by_day]);
533 } elseif (isset($day_array[$day])) {
534 $year_day = $day_array[$day];
536 foreach ($year_day as $day) {
537 switch ($this->frequence_context) {
544 $days_list->add($tmp_date);
558 $time = microtime(
true);
560 $year_days = array();
565 $days = array(0 =>
'SU', 1 =>
'MO', 2 =>
'TU', 3 =>
'WE', 4 =>
'TH', 5 =>
'FR', 6 =>
'SA');
566 for ($i = 0; $i < $offset; $i++) {
571 for ($i = 0; $i < $num_days; $i++) {
572 if (!($current_day = current($days))) {
573 $current_day = reset($days);
575 $year_days[$current_day][] = $i;
583 static $month_days = array();
585 if (isset($month_days[$year][$month])) {
586 return $month_days[$year][$month];
589 $month_str = $month < 10 ? (
'0' . $month) : $month;
593 $days = array(0 =>
'SU', 1 =>
'MO', 2 =>
'TU', 3 =>
'WE', 4 =>
'TH', 5 =>
'FR', 6 =>
'SA');
594 for ($i = 0; $i < $begin_month_info[
'wday']; $i++) {
601 if (!($current_day = current($days))) {
602 $current_day = reset($days);
604 $month_days[$year][$month][$current_day][] = $i;
607 return $month_days[$year][$month];
615 $days = array(0 =>
'SU', 1 =>
'MO', 2 =>
'TU', 3 =>
'WE', 4 =>
'TH', 5 =>
'FR', 6 =>
'SA');
617 $start_day = $seed_info[
'yday'] - $seed_info[
'wday'];
618 foreach ($days as $num => $day) {
619 $week_days[$day][] = $start_day++;
630 if (!$this->recurrence->getBYSETPOSList()) {
635 $candidates = $list->
get();
636 $candidates_count = count($candidates);
637 foreach ($this->recurrence->getBYSETPOSList() as $position) {
638 if ($position > 0 and $date = $list->
getAtPosition($position)) {
639 $pos_list->add($date);
641 if ($position < 0 and $date = $list->getAtPosition($candidates_count + $position + 1)) {
642 $pos_list->add($date);
655 foreach ($list->
get() as $check_date) {
657 $this->log->debug(
'Removed invalid date: ' . $check_date .
' before starting date: ' . $this->
event->getStart());
658 $list->
remove($check_date);
663 if ($this->recurrence->getFrequenceUntilCount()) {
664 foreach ($list->
get() as
$res) {
666 if (count($this->valid_dates->get()) < $this->recurrence->getFrequenceUntilCount()) {
667 $this->valid_dates->add(
$res);
669 $this->limit_reached =
true;
674 } elseif ($this->recurrence->getFrequenceUntilDate()) {
675 $date = $this->recurrence->getFrequenceUntilDate();
676 foreach ($list->
get() as
$res) {
678 $this->limit_reached =
true;
681 $this->valid_dates->add(
$res);
685 $this->valid_dates->merge($list);
691 if (!$this->recurrence->getExclusionDates()) {
694 foreach ($this->recurrence->getExclusionDates() as $excl) {
695 $this->valid_dates->removeByDAY($excl->getDate());
706 if ($this->
event->isFullday()) {
707 return new ilDate($a_date, $a_format_type);
710 return new ilDateTime($a_date, $a_format_type, $this->timezone);
716 return $this->recurrence->validate();
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
applyBYMONTHDAYRules(ilDateList $list)
remove(ilDateTime $remove)
applyDurationPeriod(ilDateList $list, ilDateTime $start, ilDateTime $end)
Apply duration period.
static _getMaxDayOfMonth(int $a_year, int $a_month)
get max day of month 2008,2 => 29
applyBYDAYRules(ilDateList $list)
applyBYMONTHRules(ilDateList $list)
static _getInstance(string $a_tz='')
get instance by timezone
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
increment(string $a_type, int $a_count=1)
applyBYYEARDAYRules(ilDateList $list)
getAtPosition(int $a_pos)
static _restoreDefaultTimeZone()
static _setDefaultTimeZone(string $a_tz)
__construct(ilDatePeriod $entry, ilCalendarRecurrenceCalculation $rec)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getYearWeekDays(ilDateTime $seed)
get a list of year week days according to the BYMONTH rule
getWeekWeekDays(array $seed_info)
get weedays of week
adjustTimeZones(ilDateTime $a_start, ilDateTime $a_end)
Adjust timezone.
ilCalendarRecurrenceCalculation $recurrence
Calculates an ilDateList for a given calendar entry and recurrence rule.
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
getStart()
Get start of date period.
getDuration()
Get duration of event.
static _isLeapYear(int $a_year)
check if a given year is a leap year
string $frequence_context
applyBYSETPOSRules(ilDateList $list)
Apply BYSETPOST rules.
getMonthWeekDays(int $year, int $month)
getEnd()
Get end of period.
createDate($a_date, $a_format_type=IL_CAL_UNIX)
incrementByFrequency(ilDateTime $start)
applyLimits(ilDateList $list)
Apply limits (count or until)
static _equals(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check if two date are equal.
switchTimeZone(string $a_timezone_identifier='')
Switch timezone.
calculateDateList(ilDateTime $a_start, ilDateTime $a_end, int $a_limit=-1)
calculate date list
applyBYWEEKNORules(ilDateList $list)
Apply BYWEEKNO rules (1 to 53 and -1 to -53).