2011-05-28 00:01:30 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
2011-06-09 00:06:02 -04:00
|
|
|
function format_event_html($ev,$pre = '') {
|
2011-05-28 00:01:30 -04:00
|
|
|
|
2011-06-06 23:17:36 -04:00
|
|
|
require_once('include/bbcode.php');
|
|
|
|
|
2011-05-28 00:01:30 -04:00
|
|
|
if(! ((is_array($ev)) && count($ev)))
|
|
|
|
return '';
|
|
|
|
|
2011-06-09 00:06:02 -04:00
|
|
|
$bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM
|
|
|
|
|
2011-05-28 00:01:30 -04:00
|
|
|
$o = '<div class="vevent">';
|
|
|
|
|
2011-06-09 00:06:02 -04:00
|
|
|
$o .= '<p class="description event-description">' . bbcode($ev['desc']) . '</p>';
|
2011-05-28 00:01:30 -04:00
|
|
|
|
2011-06-09 00:06:02 -04:00
|
|
|
$o .= '<p class="event-start">' . t('Starts:') . ' <abbr class="dtstart" title="'
|
|
|
|
. datetime_convert('UTC','UTC',$ev['start'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
|
2011-05-28 00:01:30 -04:00
|
|
|
. '" >'
|
2011-06-09 00:06:02 -04:00
|
|
|
. (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(),
|
|
|
|
$ev['start'] , $bd_format ))
|
|
|
|
: day_translate(datetime_convert('UTC', 'UTC',
|
|
|
|
$ev['start'] , $bd_format)))
|
2011-05-28 00:01:30 -04:00
|
|
|
. '</abbr></p>';
|
|
|
|
|
2011-06-07 23:10:43 -04:00
|
|
|
if(! $ev['nofinish'])
|
2011-06-09 00:06:02 -04:00
|
|
|
$o .= '<p class="event-end" >' . t('Finishes:') . ' <abbr class="dtend" title="'
|
|
|
|
. datetime_convert('UTC','UTC',$ev['finish'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
|
2011-06-07 23:10:43 -04:00
|
|
|
. '" >'
|
2011-06-09 00:06:02 -04:00
|
|
|
. (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(),
|
|
|
|
$ev['finish'] , $bd_format ))
|
|
|
|
: day_translate(datetime_convert('UTC', 'UTC',
|
|
|
|
$ev['finish'] , $bd_format )))
|
2011-06-07 23:10:43 -04:00
|
|
|
. '</abbr></p>';
|
|
|
|
|
|
|
|
if(strlen($ev['location']))
|
2011-06-09 00:06:02 -04:00
|
|
|
$o .= '<p class="event-location"> ' . t('Location:') . '<span class="location">'
|
2011-06-07 23:10:43 -04:00
|
|
|
. bbcode($ev['location'])
|
|
|
|
. '</span></p>';
|
2011-05-28 00:01:30 -04:00
|
|
|
|
|
|
|
$o .= '</div>';
|
2011-06-07 23:10:43 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-09 00:06:02 -04:00
|
|
|
function parse_event($h) {
|
|
|
|
|
|
|
|
require_once('include/Scrape.php');
|
|
|
|
require_once('library/HTMLPurifier.auto.php');
|
|
|
|
require_once('include/html2bbcode');
|
|
|
|
|
|
|
|
$h = '<html><body>' . $h . '</body></html>';
|
|
|
|
|
|
|
|
$ret = array();
|
|
|
|
|
|
|
|
$dom = HTML5_Parser::parse($h);
|
|
|
|
|
|
|
|
if(! $dom)
|
|
|
|
return $ret;
|
|
|
|
|
|
|
|
$items = $dom->getElementsByTagName('*');
|
|
|
|
|
|
|
|
foreach($items as $item) {
|
|
|
|
if(attribute_contains($item->getAttribute('class'), 'vevent')) {
|
|
|
|
$level2 = $item->getElementsByTagName('*');
|
|
|
|
foreach($level2 as $x) {
|
|
|
|
if(attribute_contains($x->getAttribute('class'),'dtstart') && $x->getAttribute('title')) {
|
|
|
|
$ret['start'] = $x->getAttribute('title');
|
|
|
|
if(! strpos($ret['start'],'Z'))
|
|
|
|
$ret['adjust'] = true;
|
|
|
|
}
|
|
|
|
if(attribute_contains($x->getAttribute('class'),'dtend') && $x->getAttribute('title'))
|
|
|
|
$ret['finish'] = $x->getAttribute('title');
|
|
|
|
|
|
|
|
if(attribute_contains($x->getAttribute('class'),'description'))
|
|
|
|
$ret['desc'] = $x->textContent;
|
|
|
|
if(attribute_contains($x->getAttribute('class'),'location'))
|
|
|
|
$ret['location'] = $x->textContent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// sanitise
|
|
|
|
|
|
|
|
if((x($ret,'desc')) && ((strpos($ret['desc'],'<') !== false) || (strpos($ret['desc'],'>') !== false))) {
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$config->set('Cache.DefinitionImpl', null);
|
|
|
|
$purifier = new HTMLPurifier($config);
|
|
|
|
$ret['desc'] = html2bbcode($purifier->purify($ret['desc']));
|
|
|
|
}
|
|
|
|
|
|
|
|
if((x($ret,'location')) && ((strpos($ret['location'],'<') !== false) || (strpos($ret['location'],'>') !== false))) {
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$config->set('Cache.DefinitionImpl', null);
|
|
|
|
$purifier = new HTMLPurifier($config);
|
|
|
|
$ret['location'] = html2bbcode($purifier->purify($ret['location']));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(x($ret,'start'))
|
|
|
|
$ret['start'] = datetime_convert('UTC','UTC',$ret['start']);
|
|
|
|
if(x($ret,'finish'))
|
|
|
|
$ret['finish'] = datetime_convert('UTC','UTC',$ret['finish']);
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-06-07 23:10:43 -04:00
|
|
|
|
|
|
|
function sort_by_date($a) {
|
|
|
|
|
|
|
|
usort($a,'ev_compare');
|
|
|
|
return $a;
|
2011-06-06 02:10:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-07 23:10:43 -04:00
|
|
|
function ev_compare($a,$b) {
|
2011-06-06 02:10:07 -04:00
|
|
|
|
2011-06-07 23:10:43 -04:00
|
|
|
$date_a = (($a['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$a['start']) : $a['start']);
|
|
|
|
$date_b = (($b['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$b['start']) : $b['start']);
|
|
|
|
|
|
|
|
return strcmp($date_a,$date_b);
|
|
|
|
}
|