2015-03-30 14:20:30 +00:00
|
|
|
<?php
|
|
|
|
|
2016-12-10 17:22:34 +00:00
|
|
|
class Relive
|
2015-03-30 14:20:30 +00:00
|
|
|
{
|
2016-12-10 17:22:34 +00:00
|
|
|
private $conference;
|
|
|
|
|
|
|
|
public function __construct($conference)
|
|
|
|
{
|
|
|
|
$this->conference = $conference;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConference() {
|
|
|
|
return $this->conference;
|
|
|
|
}
|
|
|
|
|
2015-03-31 21:17:01 +00:00
|
|
|
public function isEnabled()
|
2015-03-30 14:20:30 +00:00
|
|
|
{
|
2015-03-31 21:17:01 +00:00
|
|
|
// having CONFERENCE.RELIVE is not enough!
|
2016-12-10 17:22:34 +00:00
|
|
|
return $this->getConference()->has('CONFERENCE.RELIVE_JSON');
|
2015-03-31 21:17:01 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 19:03:51 +00:00
|
|
|
public function getJsonUrl()
|
|
|
|
{
|
2016-12-10 17:22:34 +00:00
|
|
|
return $this->getConference()->get('CONFERENCE.RELIVE_JSON');
|
2015-04-01 19:03:51 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 20:46:01 +00:00
|
|
|
public function getJsonCache()
|
|
|
|
{
|
2016-12-17 13:11:47 +00:00
|
|
|
return sprintf('/tmp/relive-cache-%s.json', $this->getConference()->getSlug());
|
2016-12-11 20:46:01 +00:00
|
|
|
}
|
|
|
|
|
2015-03-31 21:17:01 +00:00
|
|
|
public function getTalks()
|
|
|
|
{
|
2016-12-18 09:37:10 +00:00
|
|
|
if(!file_exists($this->getJsonCache()))
|
2016-10-23 13:42:20 +00:00
|
|
|
return array();
|
|
|
|
|
2016-12-27 08:27:28 +00:00
|
|
|
$talks = file_get_contents($this->getJsonCache());
|
2015-03-30 14:20:30 +00:00
|
|
|
$talks = (array)json_decode($talks, true);
|
|
|
|
|
2015-04-04 11:31:01 +00:00
|
|
|
$mapping = $this->getScheduleToRoomMapping();
|
|
|
|
|
2016-12-10 17:24:03 +00:00
|
|
|
usort($talks, function($a, $b) {
|
|
|
|
// first, make sure that live talks are always on top
|
|
|
|
if($a['status'] == 'live' && $b['status'] != 'live') {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if($a['status'] != 'live' && $b['status'] == 'live') {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if($a['status'] == 'live' && $b['status'] == 'live') {
|
|
|
|
// sort live talks by room
|
|
|
|
return strcmp($a['room'], $b['room']);
|
|
|
|
}
|
|
|
|
|
2016-12-30 12:27:28 +00:00
|
|
|
// all other talks get sorted by their start time
|
|
|
|
// sorting the most recent talks to the top
|
|
|
|
$delta = $b['start'] - $a['start'];
|
|
|
|
|
|
|
|
// sort by room in case of a collision
|
|
|
|
if($delta == 0)
|
|
|
|
return strcmp($a['room'], $b['room']);
|
|
|
|
else
|
|
|
|
return $delta;
|
2016-12-10 17:24:03 +00:00
|
|
|
});
|
2015-03-30 14:20:30 +00:00
|
|
|
|
|
|
|
$talks_by_id = array();
|
2015-03-31 21:17:01 +00:00
|
|
|
foreach ($talks as $talk)
|
2015-03-30 14:20:30 +00:00
|
|
|
{
|
2015-04-05 13:25:45 +00:00
|
|
|
if($talk['status'] == 'not_running')
|
|
|
|
continue;
|
|
|
|
|
2016-12-27 10:26:07 +00:00
|
|
|
if($talk['status'] == 'released') {
|
2015-03-31 21:17:01 +00:00
|
|
|
$talk['url'] = $talk['release_url'];
|
2016-12-27 10:26:07 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$talk['url'] = joinpath([
|
|
|
|
$this->getConference()->getSlug(),
|
|
|
|
'relive',
|
|
|
|
rawurlencode($talk['id']),
|
|
|
|
]);
|
|
|
|
}
|
2015-03-31 21:17:01 +00:00
|
|
|
|
2015-04-04 11:31:01 +00:00
|
|
|
if(isset($mapping[$talk['room']]))
|
|
|
|
{
|
|
|
|
$room = $mapping[$talk['room']];
|
|
|
|
$talk['room'] = $room->getDisplay();
|
|
|
|
$talk['roomlink'] = $room->getLink();
|
|
|
|
}
|
|
|
|
|
2015-03-31 21:17:01 +00:00
|
|
|
$talks_by_id[$talk['id']] = $talk;
|
2015-03-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-02 15:03:16 +00:00
|
|
|
return $talks_by_id;
|
2015-03-31 21:17:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTalk($id)
|
|
|
|
{
|
|
|
|
$talks = $this->getTalks();
|
|
|
|
if(!isset($talks[$id]))
|
|
|
|
throw new NotFoundException('Relive-Talk id '.$id);
|
|
|
|
|
|
|
|
return $talks[$id];
|
|
|
|
}
|
|
|
|
|
2015-04-04 11:31:01 +00:00
|
|
|
private function getScheduleToRoomMapping()
|
|
|
|
{
|
2016-12-27 08:17:46 +00:00
|
|
|
$schedule = $this->getConference()->getSchedule();
|
2015-04-04 11:31:01 +00:00
|
|
|
$mapping = array();
|
|
|
|
|
|
|
|
foreach($schedule->getScheduleToRoomSlugMapping() as $schedule => $slug)
|
|
|
|
{
|
|
|
|
try {
|
2016-12-27 08:17:46 +00:00
|
|
|
$mapping[$schedule] = $this->getConference()->getRoom($slug);
|
2015-04-04 11:31:01 +00:00
|
|
|
}
|
|
|
|
catch(NotFoundException $e)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $mapping;
|
|
|
|
}
|
|
|
|
|
2015-03-30 14:20:30 +00:00
|
|
|
}
|