19 declare(strict_types=1);
42 if ($a_type == self::INPUT_STRING) {
43 $this->ical = $a_ical;
44 } elseif ($a_type == self::INPUT_FILE) {
45 $this->file = $a_ical;
46 $this->ical = file_get_contents($a_ical);
48 if (!strlen($this->ical)) {
52 $this->log = $DIC->logger()->cal();
64 if (count($lines) == 1) {
67 for (
$i = 0;
$i < count($lines);
$i++) {
73 isset($lines[
$i + $offset]) &&
80 $line = $line . substr($lines[
$i + $offset], 1);
92 if (count($this->container)) {
93 return $this->container[count($this->container) - 1];
103 $this->container = array($a_container);
108 if (is_array($this->container)) {
109 return array_pop($this->container);
116 $this->container[] = $a_container;
121 switch (trim($line)) {
122 case 'BEGIN:VCALENDAR':
123 $this->log->debug(
'BEGIN VCALENDAR');
127 case 'END:VCALENDAR':
128 $this->log->debug(
'END VCALENDAR');
132 $this->log->debug(
'BEGIN VEVENT');
137 $this->log->debug(
'END VEVENT');
142 case 'BEGIN:VTIMEZONE':
143 $this->log->debug(
'BEGIN VTIMEZONE');
148 case 'END:VTIMEZONE':
149 $this->log->debug(
'END VTIMEZONE');
150 if ($tzid = $this->
getContainer()->getItemsByName(
'TZID')) {
151 $this->default_timezone = $this->
getTZ($tzid[0]->
getValue());
157 if (strpos(trim($line),
'BEGIN') === 0) {
158 $this->log->info(
'Do not handling line:' . $line);
161 if (strpos(trim($line),
'X-WR-TIMEZONE') === 0) {
163 $this->default_timezone = $this->
getTZ($value);
172 protected function storeItems(
string $a_param_part,
string $a_value_part): void
176 if ($splitted_param = explode(
';', $a_param_part)) {
178 foreach ($splitted_param as
$param) {
180 $items[$counter][
'param'] =
$param;
181 $items[$counter][
'value'] = $a_value_part;
182 } elseif ($splitted_param_values = explode(
'=', $param)) {
183 $items[$counter][
'param'] = $splitted_param_values[0];
184 $items[$counter][
'value'] = $splitted_param_values[1];
190 $substituted_values = str_replace(
'\;',
'', $a_value_part);
193 if ($splitted_values = explode(
';', $substituted_values)) {
195 foreach ($splitted_values as $value) {
197 $splitted_value_values = explode(
'=', $value);
198 if (is_array($splitted_value_values) && count($splitted_value_values) >= 2) {
199 $values[$counter][
'param'] = $splitted_value_values[0];
200 $values[$counter][
'value'] = $splitted_value_values[1];
207 if (!count($items)) {
208 $this->log->write(__METHOD__ .
': Cannot parse parameter: ' . $a_param_part .
', value: ' . $a_value_part);
213 foreach ($items as $item) {
225 if (count($values) > 1) {
226 foreach ($values as $value) {
227 $value =
new ilICalValue($value[
'param'], $value[
'value']);
244 if (preg_match(
'/([^:]+):(.*)/', $a_line, $matches)) {
245 return array($matches[1], $matches[2]);
247 $this->log->notice(
' Found invalid parameter: ' . $a_line);
249 return array(
'',
'');
252 protected function tokenize(
string $a_string,
string $a_tokenizer): array
254 return explode($a_tokenizer, $a_string);
259 $parts = explode(
'/', $a_timezone);
261 $continent = array_pop(
$parts);
262 if (isset($continent) and $continent) {
263 $timezone = $continent .
'/' . $tz;
265 $timezone = $a_timezone;
268 if ($this->default_timezone->getIdentifier() == $timezone) {
271 $this->log->info(
': Found new timezone: ' . $timezone);
275 $this->log->notice(
': Found invalid timezone: ' . $timezone);
285 $this->log->notice(
': Found invalid timezone: ' . $timezone->
getIdentifier());
291 $this->default_timezone->restoreTZ();
299 foreach ($this->
getContainer()->getItemsByName(
'SUMMARY',
false) as $item) {
300 if (is_a($item,
'ilICalProperty')) {
301 $entry->setTitle($this->
purgeString($item->getValue()));
306 foreach ($this->
getContainer()->getItemsByName(
'DESCRIPTION',
false) as $item) {
307 if (is_a($item,
'ilICalProperty')) {
308 $entry->setDescription($this->
purgeString($item->getValue()));
314 foreach ($this->
getContainer()->getItemsByName(
'LOCATION',
false) as $item) {
315 if (is_a($item,
'ilICalProperty')) {
316 $entry->setLocation($this->
purgeString($item->getValue()));
321 foreach ($this->
getContainer()->getItemsByName(
'DTSTART') as $start) {
323 foreach ($start->getItemsByName(
'VALUE') as
$type) {
324 if (
$type->getValue() ==
'DATE') {
329 foreach ($start->getItemsByName(
'TZID') as
$param) {
341 $start_tz->getIdentifier()
344 $entry->setStart($start);
345 $entry->setFullday($fullday);
348 foreach ($this->
getContainer()->getItemsByName(
'DTEND') as $end) {
350 foreach ($end->getItemsByName(
'VALUE') as
$type) {
351 if (
$type->getValue() ==
'DATE') {
356 foreach ($end->getItemsByName(
'TZID') as
$param) {
369 $end_tz->getIdentifier()
372 $entry->setEnd($end);
373 $entry->setFullday($fullday);
376 if (!$entry->getStart() instanceof
ilDateTime) {
377 $this->log->warning(
'Cannot find start date. Event ignored.');
386 $entry->setEnd($entry->getStart());
391 $entry->setAutoGenerated(
true);
397 foreach ($this->
getContainer()->getItemsByName(
'EXDATE',
false) as $item) {
398 if (is_a($item,
'ilICalProperty')) {
400 $rec_exclusion->setEntryId($entry->getEntryId());
402 $rec_exclusion->save();
410 foreach ($this->
getContainer()->getItemsByName(
'RRULE') as $recurrence) {
412 $rec->setEntryId($entry->getEntryId());
414 foreach ($recurrence->getItemsByName(
'FREQ') as $freq) {
415 switch ($freq->getValue()) {
420 $rec->setFrequenceType((
string) $freq->getValue());
424 $this->log->notice(
': Cannot handle recurring event of type: ' . $freq->getValue());
429 foreach ($recurrence->getItemsByName(
'COUNT') as $value) {
430 $rec->setFrequenceUntilCount((
int) $value->getValue());
433 foreach ($recurrence->getItemsByName(
'UNTIL') as $until) {
437 foreach ($recurrence->getItemsByName(
'INTERVAL') as $value) {
438 $rec->setInterval((
int) $value->getValue());
441 foreach ($recurrence->getItemsByName(
'BYDAY') as $value) {
442 $rec->setBYDAY((
string) $value->getValue());
445 foreach ($recurrence->getItemsByName(
'BYWEEKNO') as $value) {
446 $rec->setBYWEEKNO((
string) $value->getValue());
449 foreach ($recurrence->getItemsByName(
'BYMONTH') as $value) {
450 $rec->setBYMONTH((
string) $value->getValue());
453 foreach ($recurrence->getItemsByName(
'BYMONTHDAY') as $value) {
454 $rec->setBYMONTHDAY((
string) $value->getValue());
457 foreach ($recurrence->getItemsByName(
'BYYEARDAY') as $value) {
458 $rec->setBYYEARDAY((
string) $value->getValue());
461 foreach ($recurrence->getItemsByName(
'BYSETPOS') as $value) {
462 $rec->setBYSETPOS((
string) $value->getValue());
465 foreach ($recurrence->getItemsByName(
'WKST') as $value) {
466 $rec->setWeekstart((
string) $value->getValue());
475 $a_string = str_replace(
"\;",
";", $a_string);
476 $a_string = str_replace(
"\,",
",", $a_string);
477 $a_string = str_replace(
"\:",
":", $a_string);
getTZ(string $a_timezone)
purgeString(string $a_string)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
pushContainer(ilICalItem $a_container)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
static _getInstance(string $a_tz='')
get instance by timezone
switchTZ()
Switch timezone to given timezone.
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilCalendarCategory $category
switchTZ(ilTimeZone $timezone)
ilTimeZone $default_timezone
storeItems(string $a_param_part, string $a_value_part)
tokenize(string $a_string, string $a_tokenizer)
Stores calendar categories.
setContainer(ilICalItem $a_container)
Represents a ical property.
Used for storage og multiple values E.g RRULE:FREQ=WEEKLY;COUNT=20;INTERVAL=2;BYDAY=TU.
Class for TimeZone exceptions.
addAssignment(int $a_cal_cat_id)
Represents a ical component.
__construct(string $a_ical, int $a_type)
This class represents a ical parameter E.g VALUE=DATETIME.
splitLine(string $a_line)
Stores exclusion dates for calendar recurrences.
Abstract base class for all ical items (Component, Parameter and Value)