mirror of
https://github.com/voc/streaming-website
synced 2024-11-14 00:17:18 +00:00
92 lines
2.1 KiB
PHP
92 lines
2.1 KiB
PHP
<?php
|
|
|
|
class Relive extends ModelBase
|
|
{
|
|
public function isEnabled()
|
|
{
|
|
// having CONFERENCE.RELIVE is not enough!
|
|
return $this->has('CONFERENCE.RELIVE_JSON');
|
|
}
|
|
|
|
public function getJsonUrl()
|
|
{
|
|
return $this->get('CONFERENCE.RELIVE_JSON');
|
|
}
|
|
|
|
public function getTalks()
|
|
{
|
|
$talks = file_get_contents($this->getJsonUrl());
|
|
$talks = (array)json_decode($talks, true);
|
|
|
|
$mapping = $this->getScheduleToRoomMapping();
|
|
|
|
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']);
|
|
}
|
|
|
|
// all other talks get sorted by their name
|
|
|
|
return strcmp($a['title'], $b['title']);
|
|
});
|
|
|
|
$talks_by_id = array();
|
|
foreach ($talks as $talk)
|
|
{
|
|
if($talk['status'] == 'not_running')
|
|
continue;
|
|
|
|
if($talk['status'] == 'released')
|
|
$talk['url'] = $talk['release_url'];
|
|
else
|
|
$talk['url'] = 'relive/'.rawurlencode($talk['id']).'/';
|
|
|
|
if(isset($mapping[$talk['room']]))
|
|
{
|
|
$room = $mapping[$talk['room']];
|
|
$talk['room'] = $room->getDisplay();
|
|
$talk['roomlink'] = $room->getLink();
|
|
}
|
|
|
|
$talks_by_id[$talk['id']] = $talk;
|
|
}
|
|
|
|
return $talks_by_id;
|
|
}
|
|
|
|
public function getTalk($id)
|
|
{
|
|
$talks = $this->getTalks();
|
|
if(!isset($talks[$id]))
|
|
throw new NotFoundException('Relive-Talk id '.$id);
|
|
|
|
return $talks[$id];
|
|
}
|
|
|
|
private function getScheduleToRoomMapping()
|
|
{
|
|
$schedule = new Schedule();
|
|
$mapping = array();
|
|
|
|
foreach($schedule->getScheduleToRoomSlugMapping() as $schedule => $slug)
|
|
{
|
|
try {
|
|
$mapping[$schedule] = new Room($slug);
|
|
}
|
|
catch(NotFoundException $e)
|
|
{
|
|
//
|
|
}
|
|
}
|
|
|
|
return $mapping;
|
|
}
|
|
|
|
}
|