Rewrite the schedule generation script #31

Merged
user890104 merged 19 commits from schedule-rewrite into master 2016-10-24 00:52:04 +03:00
4 changed files with 254 additions and 252 deletions
Showing only changes of commit 0857039fc5 - Show all commits

17
schedule/config.php Normal file
View File

@ -0,0 +1,17 @@
<?php
function getSchedConfig($year = 2015) {
$globalConfig = [
'lang' => 'bg',
'cfp_url' => 'https://cfp.openfest.org',
'cut_len' => 70,
];
$config = [
2015 => [
'allowedHallIds' => [6, 7, 8],
],
];
return array_merge($globalConfig, $config[$year]);
}

View File

@ -2,7 +2,14 @@
error_reporting(~0); error_reporting(~0);
ini_set('display_errors', 1); ini_set('display_errors', 1);
define('SCHED_LANG', 'bg'); $requirePath = __DIR__ . DIRECTORY_SEPARATOR;
require $requirePath . 'class.SmartCurl.php';
require $requirePath . 'config.php';
require $requirePath . 'load.php';
require $requirePath . 'parse.php';
$sched_config = getSchedConfig();
$data = loadData($sched_config);
$content = parseData($sched_config, $data);
?> ?>
<html> <html>
<head> <head>
@ -11,19 +18,14 @@ define('SCHED_LANG', 'bg');
<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>
<pre>
<?php
$content = require __DIR__ . DIRECTORY_SEPARATOR . 'parse.php';
?>
</pre>
<table border="1" style="text-align: center;"> <table border="1" style="text-align: center;">
<thead> <thead>
<tr> <tr>
<td>&nbsp;</td> <td>&nbsp;</td>
<?php <?php
foreach ($content['halls'] as $hall_name) { foreach ($data['halls'] as $hall_name) {
?> ?>
<td><?php echo htmlspecialchars($hall_name[SCHED_LANG]); ?></td> <td><?php echo htmlspecialchars($hall_name[$sched_config['lang']]); ?></td>
<?php <?php
} }
?> ?>

View File

@ -1,7 +1,13 @@
<?php <?php
require __DIR__ . DIRECTORY_SEPARATOR . 'class.SmartCurl.php'; function compareKeys($a, $b, $key) {
$valA = &$a[$key];
$valB = &$b[$key];
$base_url = 'https://cfp.openfest.org/api/conferences/2/'; return ($valA < $valB) ? -1 : (($valA > $valB) ? 1 : 0);
}
function loadData($config) {
$base_url = $config['cfp_url'] . '/api/conferences/2/';
$filenames = [ $filenames = [
'events' => 'events.json', 'events' => 'events.json',
@ -12,17 +18,6 @@ $filenames = [
'slots' => 'slots.json', 'slots' => 'slots.json',
]; ];
if (empty($allowedhallids)) {
$allowedhallids = array(6, 7, 8);
}
function compareKeys($a, $b, $key) {
$valA = &$a[$key];
$valB = &$b[$key];
return ($valA < $valB) ? -1 : (($valA > $valB) ? 1 : 0);
}
$data = []; $data = [];
foreach ($filenames as $name => $filename) { foreach ($filenames as $name => $filename) {
@ -67,8 +62,9 @@ uasort($data['slots'], function($a, $b) {
return compareKeys($a, $b, 'starts_at') ?: compareKeys($a, $b, 'hall_id'); return compareKeys($a, $b, 'starts_at') ?: compareKeys($a, $b, 'hall_id');
}); });
$data['halls'] = array_filter($data['halls'], function($key) use ($allowedhallids) { $data['halls'] = array_filter($data['halls'], function($key) use ($config) {
return in_array($key, $allowedhallids); return in_array($key, $config['allowedHallIds']);
}, ARRAY_FILTER_USE_KEY); }, ARRAY_FILTER_USE_KEY);
return $data; return $data;
}

View File

@ -1,29 +1,11 @@
<?php <?php
// 'halfnarp_friendly' function parseData($config, $data) {
// 'events'
// 'speakers'
// 'tracks' [en/bg]
// 'event_types' [en/bg]
// 'halls'
// 'slots'
$data = require __DIR__ . DIRECTORY_SEPARATOR . 'load.php';
if (!defined('SCHED_LANG')) {
define('SCHED_LANG', 'bg');
}
$cut_len = 70;
$cfp_url = 'http://cfp.openfest.org';
$time = 0; $time = 0;
$date = 0; $date = 0;
$lines = []; $lines = [];
$fulltalks = []; $fulltalks = [];
$prev_event_id = 0; $prev_event_id = 0;
$colspan = 1; $colspan = 1;
$hall_ids = array_keys($data['halls']);
$first_hall_id = min($hall_ids);
$last_hall_id = max($hall_ids);
$languages = array( $languages = array(
'en' => array( 'en' => array(
@ -38,9 +20,13 @@ $languages = array(
/* We need to set these so we actually parse properly the dates. WP fucks up both. */ /* We need to set these so we actually parse properly the dates. WP fucks up both. */
date_default_timezone_set('Europe/Sofia'); date_default_timezone_set('Europe/Sofia');
setlocale(LC_TIME, $languages[SCHED_LANG]['locale']); setlocale(LC_TIME, $languages[$config['lang']]['locale']);
foreach ($data['slots'] as $slot_id => $slot) { foreach ($data['slots'] as $slot_id => $slot) {
if (!in_array($slot['hall_id'], $config['allowedHallIds'])) {
continue;
}
$slotTime = $slot['starts_at']; $slotTime = $slot['starts_at'];
$slotDate = date('d', $slotTime); $slotDate = date('d', $slotTime);
@ -76,7 +62,7 @@ foreach ($data['slots'] as $slot_id => $slot) {
$lines[] = '<td>TBA</td>'; $lines[] = '<td>TBA</td>';
} }
else { else {
$title = mb_substr($event['title'], 0, $cut_len) . (mb_strlen($event['title']) > $cut_len ? '...' : ''); $title = mb_substr($event['title'], 0, $config['cut_len']) . (mb_strlen($event['title']) > $config['cut_len'] ? '...' : '');
$speakers = ''; $speakers = '';
if (count($event['participant_user_ids']) > 0) { if (count($event['participant_user_ids']) > 0) {
@ -137,7 +123,7 @@ $lines[] = '</tr>';
$legend = []; $legend = [];
foreach($data['tracks'] as $track) { foreach($data['tracks'] as $track) {
$legend[] = '<tr><td class="' . $track['css_class'] . '">' . $track['name'][SCHED_LANG] . '</td></tr>'; $legend[] = '<tr><td class="' . $track['css_class'] . '">' . $track['name'][$config['lang']] . '</td></tr>';
} }
foreach ($languages as $code => $lang) { foreach ($languages as $code => $lang) {
@ -161,11 +147,11 @@ foreach ($data['speakers'] as $speaker) {
$gspk[] = '<div class="member col4">'; $gspk[] = '<div class="member col4">';
$gspk[] = '<a href="#' . $name . '">'; $gspk[] = '<a href="#' . $name . '">';
$gspk[] = '<img width="100" height="100" src="' . $cfp_url . $speaker['picture']['schedule']['url'].'" class="attachment-100x100 wp-post-image" alt="' . $name .'" />'; $gspk[] = '<img width="100" height="100" src="' . $config['cfp_url'] . $speaker['picture']['schedule']['url'].'" class="attachment-100x100 wp-post-image" alt="' . $name .'" />';
$gspk[] = '</a> </div>'; $gspk[] = '</a> </div>';
$fspk[] = '<div class="speaker" id="' . $name . '">'; $fspk[] = '<div class="speaker" id="' . $name . '">';
$fspk[] = '<img width="100" height="100" src="' . $cfp_url . $speaker['picture']['schedule']['url'].'" class="attachment-100x100 wp-post-image" alt="' . $name .'" />'; $fspk[] = '<img width="100" height="100" src="' . $config['cfp_url'] . $speaker['picture']['schedule']['url'].'" class="attachment-100x100 wp-post-image" alt="' . $name .'" />';
$fspk[] = '<h3>' . $name . '</h3>'; $fspk[] = '<h3>' . $name . '</h3>';
$fspk[] = '<div class="icons">'; $fspk[] = '<div class="icons">';
foreach ($types as $type => $parm) { foreach ($types as $type => $parm) {
@ -180,4 +166,5 @@ foreach ($data['speakers'] as $speaker) {
$gspk[] = '</div>'; $gspk[] = '</div>';
return array_merge($data, compact('lines', 'fulltalks', 'gspk', 'fspk', 'legend')); return compact('lines', 'fulltalks', 'gspk', 'fspk', 'legend');
}