Rewrite the schedule generation script #31

Merged
user890104 merged 19 commits from schedule-rewrite into master 2016-10-24 00:52:04 +03:00
3 changed files with 91 additions and 186 deletions
Showing only changes of commit 06080c6249 - Show all commits

View File

@ -4,6 +4,8 @@ function getSchedConfig($year = 2015) {
'lang' => 'bg', 'lang' => 'bg',
'cfp_url' => 'https://cfp.openfest.org', 'cfp_url' => 'https://cfp.openfest.org',
'cut_len' => 70, 'cut_len' => 70,
'hidden_speakers' => [4],
'hidden_language_tracks' => [],
]; ];
$config = [ $config = [
@ -20,6 +22,7 @@ function getSchedConfig($year = 2015) {
'lecture' => 3, 'lecture' => 3,
'workshop' => 4, 'workshop' => 4,
], ],
'hidden_language_tracks' => [16],
], ],
2016 => [ 2016 => [
'conferenceId' => 3, 'conferenceId' => 3,
@ -27,6 +30,7 @@ function getSchedConfig($year = 2015) {
'lecture' => 5, 'lecture' => 5,
'workshop' => 6, 'workshop' => 6,
], ],
'hidden_language_tracks' => [25],
], ],
]; ];

View File

@ -19,27 +19,9 @@ $content = parseData($sched_config, $data);
<link rel="stylesheet" type="text/css" href="http://www.openfest.org/2014/wp-content/themes/initfest/style.css" /> <link rel="stylesheet" type="text/css" href="http://www.openfest.org/2014/wp-content/themes/initfest/style.css" />
</head> </head>
<body> <body>
<table border="1" style="text-align: center;">
<thead>
<tr>
<td>&nbsp;</td>
<?php <?php
foreach ($data['halls'] as $hall_name) { echo $content['schedule'];
?> ?>
<td><?php echo htmlspecialchars($hall_name[$sched_config['lang']]); ?></td>
<?php
}
?>
</tr>
</thead>
<tbody>
<?php
foreach ($content['lines'] as $line) {
echo $line, PHP_EOL;
}
?>
</tbody>
</table>
<div class="separator"></div> <div class="separator"></div>
<table border="1"> <table border="1">
<tbody> <tbody>

View File

@ -18,19 +18,18 @@ function parseData($config, $data) {
) )
); );
$microslots = []; // We need to set these so we actually parse properly the dates. WP fucks up both.
date_default_timezone_set('Europe/Sofia');
setlocale(LC_TIME, $languages[$config['lang']]['locale']);
// Filter out invalid slots
$data['slots'] = array_filter($data['slots'], function($slot) { $data['slots'] = array_filter($data['slots'], function($slot) {
return isset($slot['starts_at'], $slot['ends_at'], $slot['hall_id'], $slot['event_id']); return isset($slot['starts_at'], $slot['ends_at'], $slot['hall_id'], $slot['event_id']);
}); });
$data['slots'] = array_map(function($slot) { // Collect the events for each hall, sort them in order of starting
$slot['start'] = date('d.m H:i', $slot['starts_at']);
$slot['end'] = date('d.m H:i', $slot['ends_at']);
return $slot;
}, $data['slots']);
$events = []; $events = [];
$microslots = [];
foreach ($data['halls'] as $hall_id => $hall) { foreach ($data['halls'] as $hall_id => $hall) {
$events[$hall_id] = []; $events[$hall_id] = [];
@ -56,42 +55,29 @@ function parseData($config, $data) {
sort($microslots); sort($microslots);
$times = []; // Find all microslots (the smallest time unit)
foreach ($microslots as $microslot) {
$times[$microslot] = date('d.m H:i', $microslot);
}
$intervals = []; $intervals = [];
$lastTs = 0; $lastTs = 0;
$last = '';
$first = true; $first = true;
foreach ($times as $ts => $time) { foreach ($microslots as $ts) {
if ($first) { if ($first) {
$last = $time;
$lastTs = $ts; $lastTs = $ts;
$first = false; $first = false;
continue; continue;
} }
if (date('d.m.Y', $lastTs) !== date('d.m.Y', $ts)) { if (date('d.m', $lastTs) !== date('d.m', $ts)) {
//echo PHP_EOL;
$last = $time;
$lastTs = $ts; $lastTs = $ts;
continue; continue;
} }
//echo count($intervals), '. ', $last, ' - ', $time, PHP_EOL;
$intervals[] = [$lastTs, $ts]; $intervals[] = [$lastTs, $ts];
$lastTs = $ts; $lastTs = $ts;
$last = $time;
} }
$schedule = []; // Fill in the event ID for each time slot in each hall
$hall_ids = array_keys($data['halls']); $slot_list = [];
foreach ($data['halls'] as $hall_id => $hall) { foreach ($data['halls'] as $hall_id => $hall) {
$hall_data = []; $hall_data = [];
@ -119,177 +105,109 @@ function parseData($config, $data) {
} }
} }
$schedule[] = $hall_data; $slot_list[] = $hall_data;
} }
$schedule = array_map(null, ...$schedule); // Transpose the matrix
$table = '<table border="1"><thead><tr><th></th>'; // rows->halls, cols->timeslots ===> rows->timeslots, cols->halls
$slot_list = array_map(null, ...$slot_list);
foreach ($hall_ids as $hall_id) { // Build the HTML
$table .= '<th>' . $data['halls'][$hall_id]['bg'] . '</th>'; $schedule = '<table border="1"><thead><tr><th></th>';
foreach ($data['halls'] as $hall_id => $hall) {
$schedule .= '<th>' . $hall['bg'] . '</th>';
} }
$table .= '</tr></thead><tbody>'; $schedule .= '</tr></thead><tbody>';
$lastTs = 0; $lastTs = 0;
foreach ($schedule as $slot_index => $events) { foreach ($slot_list as $slot_index => $events) {
$columns = []; $columns = [];
$hasEvents = false; $hasEvents = false;
if (date('d.m', $intervals[$slot_index][0]) !== date('d.m', $lastTs)) { if (date('d.m', $intervals[$slot_index][0]) !== date('d.m', $lastTs)) {
$table .= '<tr><th colspan="' . (count($events) + 1) . '">' . date('d.m', $intervals[$slot_index][0]) . '</th></tr>'; $schedule .= '<tr><th colspan="' . (count($events) + 1) . '">' . strftime('%d %B - %A', $intervals[$slot_index][0]) . '</th></tr>';
} }
$lastTs = $intervals[$slot_index][0]; $lastTs = $intervals[$slot_index][0];
$lastEventId = 0; $lastEventId = 0;
$colspan = 1;
foreach ($events as $hall_index => $event) { foreach ($events as $hall_index => $hall_data) {
if (is_null($event['event_id']) || !array_key_exists($event['event_id'], $data['events'])) { if (is_null($hall_data['event_id']) || !array_key_exists($hall_data['event_id'], $data['events'])) {
$columns[] = '<td>&nbsp;</td>'; $columns[] = '<td>&nbsp;</td>';
continue; continue;
} }
if ($event['edge']) { if ($hall_data['edge']) {
$hasEvents = true; $hasEvents = true;
} }
if ($lastEventId === $event['event_id']) { $eid = &$hall_data['event_id'];
$lastColumn = array_pop($columns); $event = &$data['events'][$eid];
$lastColumn = preg_replace_callback('/<td(?: colspan="(\d+)")?>/', function($matches) {
$colspan = array_key_exists(1, $matches) ? intval($matches[1]) + 1 : 2; $title = mb_substr($event['title'], 0, $config['cut_len']) . (mb_strlen($event['title']) > $config['cut_len'] ? '...' : '');
return '<td colspan="' . $colspan . '">'; $speakers = '';
}, $lastColumn);
$columns[] = $lastColumn; if (count($event['participant_user_ids']) > 0) {
continue; $spk = array();
$speaker_name = array();
foreach ($event['participant_user_ids'] as $uid) {
if (in_array($uid, $config['hidden_speakers']) || empty($data['speakers'][$uid])) {
continue;
}
$name = $data['speakers'][$uid]['first_name'] . ' ' . $data['speakers'][$uid]['last_name'];
$spk[$uid] = '<a class="vt-p" href="#' . $name . '">' . $name . '</a>';
}
$speakers = implode (', ', $spk);
} }
$columns[] = '<td>' . $data['events'][$event['event_id']]['title'] . ' (' . $event['event_id'] . ')</td>'; if (in_array($event['track_id'], $config['hidden_language_tracks'])) {
$lastEventId = $event['event_id']; $csslang = '';
} else {
$csslang = 'schedule-' . $event['language'];
}
$cssclass = &$data['tracks'][$event['track_id']]['css_class'];
$style = ' class="' . $cssclass . ' ' . $csslang . '"';
$content = '<a href="#lecture-' . $eid . '">' . htmlspecialchars($title) . '</a><br>' . $speakers;
/* these are done by $eid, as otherwise we get some talks more than once (for example the lunch) */
$fulltalks .= '<section id="lecture-' . $eid . '">';
/* We don't want '()' when we don't have a speaker name */
$fulltalk_spkr = strlen($speakers) > 0 ? (' (' . $speakers . ')') : '';
$fulltalks .= '<p><strong>' . $event['title'] . ' ' . $fulltalk_spkr . '</strong></p>';
$fulltalks .= '<p>' . $event['abstract'] . '</p>';
$fulltalks .= '<div class="separator"></div></section>';
/*
if ($eid === $lastEventId) {
array_pop($columns);
++$colspan;
}
else {
$colspan = 1;
}
*/
$columns[] = '<td' . $style . ($colspan > 1 ? ' colspan="' . $colspan . '"' : '') . '>' . $content . '</td>';
$lastEventId = $eid;
} }
if (!$hasEvents) { if (!$hasEvents) {
continue; continue;
} }
$table .= '<tr><td>'; $schedule .= '<tr><td>';
$table .= date('H:i', $intervals[$slot_index][0]) . ' - ' . date('H:i', $intervals[$slot_index][1]); $schedule .= strftime('%H:%M', $intervals[$slot_index][0]) . ' - ' . strftime('%H:%M', $intervals[$slot_index][1]);
$table .= '</td>'; $schedule .= '</td>';
$table .= implode('', $columns); $schedule .= implode('', $columns);
$table .= '</tr>'; $schedule .= '</tr>';
} }
$table .= '</tbody></table>'; $schedule .= '</tbody></table>';
echo $table; // Create the legend
//var_dump($schedule);
exit;
/* We need to set these so we actually parse properly the dates. WP fucks up both. */
date_default_timezone_set('Europe/Sofia');
setlocale(LC_TIME, $languages[$config['lang']]['locale']);
foreach ($data['slots'] as $slot) {
$slotTime = $slot['starts_at'];
$slotDate = date('d', $slotTime);
if ($slotDate !== $date) {
$lines[] = '<tr>';
$lines[] = '<td>' . strftime('%d %B - %A', $slotTime) . '</td>';
$lines[] = '<td colspan="3">&nbsp;</td>';
$lines[] = '</tr>';
$date = $slotDate;
}
if ($slotTime !== $time) {
if ($time !== 0) {
$lines[] = '</tr>';
}
$lines[] = '<tr>';
$lines[] = '<td>' . date('H:i', $slot['starts_at']) . ' - ' . date('H:i', $slot['ends_at']) . '</td>';
$time = $slotTime;
}
$eid = &$slot['event_id'];
if (!array_key_exists($eid, $data['events'])) {
continue;
}
$event = &$data['events'][$eid];
if (
array_key_exists('filterEventType', $config) &&
array_key_exists($config['filterEventType'], $config['eventTypes'])
) {
if ($config['eventTypes'][$config['filterEventType']] !== $event['event_type_id']) {
continue;
}
}
if (is_null($eid)) {
$lines[] = '<td>TBA</td>';
}
else {
$title = mb_substr($event['title'], 0, $config['cut_len']) . (mb_strlen($event['title']) > $config['cut_len'] ? '...' : '');
$speakers = '';
if (count($event['participant_user_ids']) > 0) {
$speakers = json_encode($event['participant_user_ids']) . '<br>';
$spk = array();
$speaker_name = array();
foreach ($event['participant_user_ids'] as $uid) {
/* The check for uid==4 is for us not to show the "Opefest Team" as a presenter for lunches, etc. */
if ($uid == 4 || empty ($data['speakers'][$uid])) {
continue;
} else {
/* TODO: fix the URL */
$name = $data['speakers'][$uid]['first_name'] . ' ' . $data['speakers'][$uid]['last_name'];
$spk[$uid] = '<a class="vt-p" href="#' . $name . '">' . $name . '</a>';
}
}
$speakers = implode (', ', $spk);
}
/* Hack, we don't want language for the misc track. This is the same for all years. */
if ('misc' !== $data['tracks'][$event['track_id']]['name']['en']) {
$csslang = 'schedule-' . $event['language'];
} else {
$csslang = '';
}
$cssclass = &$data['tracks'][$event['track_id']]['css_class'];
$style = ' class="' . $cssclass . ' ' . $csslang . '"';
$content = '<a href=#lecture-' . $eid . '>' . htmlspecialchars($title) . '</a> <br>' . $speakers;
/* these are done by $eid, as otherwise we get some talks more than once (for example the lunch) */
$fulltalks .= '<section id="lecture-' . $eid . '">';
/* We don't want '()' when we don't have a speaker name */
$fulltalk_spkr = strlen($speakers)>1 ? ' (' . $speakers . ')' : '';
$fulltalks .= '<p><strong>' . $event['title'] . ' ' . $fulltalk_spkr . '</strong></p>';
$fulltalks .= '<p>' . $event['abstract'] . '</p>';
$fulltalks .= '<div class="separator"></div></section>';
if ($slot['event_id'] === $prev_event_id) {
array_pop($lines);
$lines[] = '<td' . $style . ' colspan="' . ++$colspan . '">' . $content . '</td>';
}
else {
$lines[] = '<td' . $style . '>' . $content . '</td>';
$colspan = 1;
}
}
$prev_event_id = $slot['event_id'];
}
$lines[] = '</tr>';
/* create the legend */
$legend = ''; $legend = '';
foreach($data['tracks'] as $track) { foreach($data['tracks'] as $track) {
@ -300,6 +218,7 @@ function parseData($config, $data) {
$legend .= '<tr><td class="schedule-' . $code . '">' . $lang['name'] . '</td></tr>'; $legend .= '<tr><td class="schedule-' . $code . '">' . $lang['name'] . '</td></tr>';
} }
// Speaker list
$gspk = '<div class="grid members">'; $gspk = '<div class="grid members">';
$fspk = ''; $fspk = '';
$types = [ $types = [
@ -343,5 +262,5 @@ function parseData($config, $data) {
$gspk .= '</div>'; $gspk .= '</div>';
return compact('lines', 'fulltalks', 'gspk', 'fspk', 'legend'); return compact('schedule', 'fulltalks', 'gspk', 'fspk', 'legend');
} }