AzuraCast/app/src/AzuraCast/Console/Command/NextSong.php

64 lines
1.8 KiB
PHP

<?php
namespace AzuraCast\Console\Command;
use AzuraCast\Radio\Adapters;
use AzuraCast\Radio\Backend\Liquidsoap;
use Entity;
use Doctrine\ORM\EntityManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class NextSong extends \App\Console\Command\CommandAbstract
{
/**
* {@inheritdoc}
*/
protected function configure()
{
$this->setName('azuracast:internal:nextsong')
->setDescription('Return the next song to the AutoDJ.')
->addArgument(
'station_id',
InputArgument::REQUIRED,
'The ID of the station.'
)->addArgument(
'as_autodj',
InputArgument::OPTIONAL,
'Force the AutoDJ to select a new song after executing this command.',
true
);
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
/** @var EntityManager $em */
$em = $this->get(EntityManager::class);
$station_id = (int)$input->getArgument('station_id');
$station = $em->getRepository(Entity\Station::class)->find($station_id);
if (!($station instanceof Entity\Station)) {
$output->write('false');
return false;
}
$as_autodj = ($input->getArgument('as_autodj') !== 'false');
/** @var Adapters $adapters */
$adapters = $this->get(Adapters::class);
$adapter = $adapters->getBackendAdapter($station);
if ($adapter instanceof Liquidsoap) {
$output->write($adapter->getNextSong($as_autodj));
return 0;
}
$output->write('');
return 1;
}
}