4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-18 15:07:05 +00:00
AzuraCast/app/src/Entity/StationPlaylist.php

526 lines
12 KiB
PHP
Raw Normal View History

<?php
namespace Entity;
use Cake\Chronos\Chronos;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use DateTime;
/**
* @Table(name="station_playlists")
* @Entity
* @HasLifecycleCallbacks
*/
class StationPlaylist
{
/**
* @Column(name="id", type="integer")
* @Id
* @GeneratedValue(strategy="IDENTITY")
* @var int
*/
protected $id;
/**
* @Column(name="station_id", type="integer")
* @var int
*/
protected $station_id;
/**
* @ManyToOne(targetEntity="Station", inversedBy="playlists")
* @JoinColumns({
* @JoinColumn(name="station_id", referencedColumnName="id", onDelete="CASCADE")
* })
* @var Station
*/
protected $station;
/**
* @Column(name="name", type="string", length=200)
* @var string
*/
protected $name;
/**
* @Column(name="type", type="string", length=50)
* @var string
*/
protected $type;
/**
* @Column(name="is_enabled", type="boolean")
* @var bool
*/
protected $is_enabled;
/**
* @Column(name="play_per_songs", type="smallint")
* @var int
*/
protected $play_per_songs;
/**
* @Column(name="play_per_minutes", type="smallint")
* @var int
*/
protected $play_per_minutes;
/**
* @Column(name="schedule_start_time", type="smallint")
* @var int
*/
protected $schedule_start_time;
/**
* @Column(name="schedule_end_time", type="smallint")
* @var int
*/
protected $schedule_end_time;
/**
* @Column(name="schedule_days", type="string", length=50, nullable=true)
* @var string
*/
protected $schedule_days;
/**
* @Column(name="play_once_time", type="smallint")
* @var int
*/
protected $play_once_time;
/**
* @Column(name="play_once_days", type="string", length=50, nullable=true)
* @var string
*/
protected $play_once_days;
/**
* @Column(name="weight", type="smallint")
* @var int
*/
protected $weight;
/**
* @Column(name="include_in_automation", type="boolean")
* @var bool
*/
protected $include_in_automation;
/**
* @ManyToMany(targetEntity="StationMedia", mappedBy="playlists", fetch="EXTRA_LAZY")
* @var Collection
*/
protected $media;
public function __construct(Station $station)
{
$this->station = $station;
$this->type = 'default';
$this->is_enabled = 1;
$this->weight = 3;
$this->include_in_automation = false;
$this->play_once_time = 0;
$this->play_per_minutes = 0;
$this->play_per_songs = 0;
$this->schedule_start_time = 0;
$this->schedule_end_time = 0;
$this->media = new ArrayCollection;
}
/**
* @return int
*/
public function getId(): int
{
return $this->id;
}
/**
* @return Station
*/
public function getStation(): Station
{
return $this->station;
}
/**
* @return string
*/
public function getName(): string
{
return $this->name;
}
/**
* @return string
*/
public function getShortName(): string
{
return Station::getStationShortName($this->name);
}
/**
* @param string $name
*/
public function setName(string $name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
/**
* @param string $type
*/
public function setType(string $type)
{
$this->type = $type;
}
/**
* @return bool
*/
public function getIsEnabled(): bool
{
return $this->is_enabled;
}
/**
* @param bool $is_enabled
*/
public function setIsEnabled(bool $is_enabled)
{
$this->is_enabled = $is_enabled;
}
/**
* @return int
*/
public function getPlayPerSongs(): int
{
return $this->play_per_songs;
}
/**
* @param int $play_per_songs
*/
public function setPlayPerSongs(int $play_per_songs)
{
$this->play_per_songs = $play_per_songs;
}
/**
* @return int
*/
public function getPlayPerMinutes(): int
{
return $this->play_per_minutes;
}
/**
* @param int $play_per_minutes
*/
public function setPlayPerMinutes(int $play_per_minutes)
{
$this->play_per_minutes = $play_per_minutes;
}
/**
* @return int
*/
public function getScheduleStartTime(): int
{
return $this->schedule_start_time;
}
/**
* @return string
*/
public function getScheduleStartTimeText(): string
{
return self::formatTimeCodeForInput($this->schedule_start_time);
}
/**
* @param int $schedule_start_time
*/
public function setScheduleStartTime(int $schedule_start_time)
{
$this->schedule_start_time = $schedule_start_time;
}
/**
* @return int
*/
public function getScheduleEndTime(): int
{
return $this->schedule_end_time;
}
/**
* @return string
*/
public function getScheduleEndTimeText(): string
{
return self::formatTimeCodeForInput($this->schedule_end_time);
}
/**
* @param int $schedule_end_time
*/
public function setScheduleEndTime(int $schedule_end_time)
{
$this->schedule_end_time = $schedule_end_time;
}
/**
* @return array|null
*/
public function getScheduleDays(): ?array
{
return (!empty($this->schedule_days)) ? explode(',', $this->schedule_days) : null;
}
/**
* @param array $schedule_days
*/
public function setScheduleDays($schedule_days)
{
$this->schedule_days = implode(',', (array)$schedule_days);
}
/**
* Returns whether the playlist is scheduled to play according to schedule rules.
* @return bool
*/
public function canPlayScheduled(): bool
{
$play_once_days = $this->getScheduleDays();
if (!empty($play_once_days) && !in_array(gmdate('N'), $play_once_days)) {
return false;
}
$current_timecode = self::getCurrentTimeCode();
if ($this->getScheduleEndTime() < $this->getScheduleStartTime()) {
// Overnight playlist
return ($current_timecode >= $this->getScheduleStartTime() || $current_timecode <= $this->getScheduleEndTime());
} else {
// Normal playlist
return ($current_timecode >= $this->getScheduleStartTime() && $current_timecode <= $this->getScheduleEndTime());
}
}
/**
* @return int
*/
public function getPlayOnceTime(): int
{
return $this->play_once_time;
}
/**
* @return string
*/
public function getPlayOnceTimeText(): string
{
return self::formatTimeCodeForInput($this->play_once_time);
}
/**
* @param int $play_once_time
*/
public function setPlayOnceTime(int $play_once_time)
{
$this->play_once_time = $play_once_time;
}
/**
* @return array
*/
public function getPlayOnceDays(): array
{
return explode(',', $this->play_once_days);
}
/**
* @param array $play_once_days
*/
public function setPlayOnceDays($play_once_days)
{
$this->play_once_days = implode(',', (array)$play_once_days);
}
/**
* Returns whether the playlist is scheduled to play once.
* @return bool
*/
public function canPlayOnce(): bool
{
$play_once_days = $this->getPlayOnceDays();
if (!empty($play_once_days) && !in_array(gmdate('N'), $play_once_days)) {
return false;
}
$current_timecode = self::getCurrentTimeCode();
$playlist_play_time = $this->getPlayOnceTime();
$playlist_diff = $current_timecode - $playlist_play_time;
return ($playlist_diff > 0 && $playlist_diff <= 15);
}
/**
* @return int
*/
public function getWeight(): int
{
return $this->weight;
}
/**
* @param int $weight
*/
public function setWeight(int $weight)
{
$this->weight = $weight;
}
/**
* @return bool
*/
public function getIncludeInAutomation(): bool
{
return $this->include_in_automation;
}
/**
* @param bool $include_in_automation
*/
public function setIncludeInAutomation(bool $include_in_automation)
{
$this->include_in_automation = $include_in_automation;
}
/**
* @return Collection
*/
public function getMedia(): Collection
{
return $this->media;
}
/**
* Export the playlist into a reusable format.
*
* @param string $file_format
* @param bool $absolute_paths
* @return string
*/
public function export($file_format = 'pls', $absolute_paths = false)
{
$media_path = ($absolute_paths) ? $this->station->getRadioMediaDir().'/' : '';
switch($file_format)
{
case 'm3u':
$playlist_file = [];
foreach ($this->media as $media_file) {
$media_file_path = $media_path . $media_file->getPath();
$playlist_file[] = $media_file_path;
}
shuffle($playlist_file);
return implode("\n", $playlist_file);
break;
case 'pls':
default:
$playlist_file = [
'[playlist]',
];
$i = 0;
foreach($this->media as $media_file) {
$i++;
$media_file_path = $media_path . $media_file->getPath();
$playlist_file[] = 'File'.$i.'='.$media_file_path;
$playlist_file[] = 'Title'.$i.'='.$media_file->getArtist().' - '.$media_file->getTitle();
$playlist_file[] = 'Length'.$i.'='.$media_file->getLength();
$playlist_file[] = '';
}
$playlist_file[] = 'NumberOfEntries='.$i;
$playlist_file[] = 'Version=2';
return implode("\n", $playlist_file);
break;
}
}
/**
* Given a time code i.e. "2300", return a UNIX timestamp that can be used to format the time for display.
*
* @param $time_code
* @return int
*/
public static function getTimestamp($time_code): int
{
return self::getDateTime($time_code)
->getTimestamp();
}
/**
* Given a time code i.e. "2300", return a time suitable for HTML5 inputs, i.e. "23:00".
*
* @param $time_code
* @return string
*/
public static function formatTimeCodeForInput($time_code): string
{
$dt = self::getDateTime($time_code);
if ($dt) {
$dt->setTimezone(new \DateTimeZone(date_default_timezone_get()));
return $dt->format('H:i');
}
return '';
}
/**
* Return a \DateTime object (or null) for a given time code, by default in the UTC time zone.
*
* @param $time_code
* @return Chronos
*/
public static function getDateTime($time_code): Chronos
{
$time_code = str_pad($time_code, 4, '0', STR_PAD_LEFT);
return Chronos::now(new \DateTimeZone('UTC'))
->setTime(substr($time_code, 0, 2), substr($time_code, 2));
}
/**
* Return the current UTC time in "time code" style.
* @return int
*/
public static function getCurrentTimeCode(): int
{
return (int)gmdate('Hi');
}
}