backend code for importing events from "simple" ics calendar files.

This commit is contained in:
redmatrix 2015-07-26 21:39:46 -07:00
parent 44e92d80c7
commit 9e6aea7382

View File

@ -90,6 +90,7 @@ function format_event_ical($ev) {
$o .= "\nLOCATION:" . format_ical_text($ev['location']); $o .= "\nLOCATION:" . format_ical_text($ev['location']);
if($ev['description']) if($ev['description'])
$o .= "\nDESCRIPTION:" . format_ical_text($ev['description']); $o .= "\nDESCRIPTION:" . format_ical_text($ev['description']);
$o .= "\nUID:" . $ev['event_hash'] ;
$o .= "\nEND:VEVENT\n"; $o .= "\nEND:VEVENT\n";
return $o; return $o;
@ -364,6 +365,70 @@ function event_addtocal($item_id, $uid) {
} }
function parse_ical_file($f,$uid) {
require_once('library/ical.php');
$ical = new ICAL($f);
if($ical) {
$events = $ical->events();
if($events) {
foreach($events as $ev) {
event_import_ical($ev,$uid);
}
}
return true;
}
return false;
}
function event_import_ical($ical, $uid) {
$c = q("select * from channel where channel_id = %d limit 1",
intval($uid)
);
if(! $c)
return false;
$channel = $c[0];
$ev = array();
if($ical['UID'])
$ev['event_hash'] = $ical['UID'];
if($ical['CREATED'])
$ev['created'] = $ical['CREATED'];
if($ical['LAST-MODIFIED'])
$ev['edited'] = $ical['LAST-MODIFIED'];
if($ical['LOCATION'])
$ev['location'] = $ical['LOCATION'];
if($ical['DESCRIPTION'])
$ev['description'] = $ical['DESCRIPTION'];
if($ical['DTEND'])
$ev['finish'] = datetime_convert('UTC','UTC', $ical['DTEND']);
else
$ev['nofinish'] = 1;
$ev['start'] = datetime_convert('UTC','UTC',$ical['DTSTART']);
if(substr($ical['DTSTART'],-1) === 'Z')
$ev['adjust'] = 1;
if($ical['SUMMARY'] && $ical['DTSTART']) {
$ev['event_xchan'] = $channel['channel_hash'];
$ev['uid'] = $channel['channel_id'];
$ev['account'] = $channel['channel_account_id'];
$ev['private'] = 1;
$event = event_store_event($ev);
if($event) {
return true;
}
}
return false;
}
function event_store_item($arr, $event) { function event_store_item($arr, $event) {
require_once('include/datetime.php'); require_once('include/datetime.php');