. */ namespace Sikofitt\SamsungTV\Console\Command; use Sikofitt\SamsungTV\Actions\Actions; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Exception\InvalidArgumentException; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; /** * Command to change channels */ class ChannelCommand extends Command { /** * {@inheritDoc} * * @throws \Symfony\Component\Console\Exception\InvalidArgumentException */ protected function configure(): void { $this->setName('channel') ->setDescription('change the channel') ->addArgument( 'channel', InputArgument::REQUIRED, 'chanel to change to' ) ->addOption( 'address', 'a', InputOption::VALUE_OPTIONAL, 'The IP address of the tv.' ) ; } /** * {@inheritDoc} * * @throws \Symfony\Component\Console\Exception\InvalidArgumentException */ protected function execute(InputInterface $input, OutputInterface $output): void { $io = new SymfonyStyle($input, $output); $channel = $input->getArgument('channel'); if ((null === $address = $input->getOption('address')) && (false === $address = getenv('SAMSUNG_IP'))) { throw new InvalidArgumentException('Address is required. You can also set it in the SAMSUNG_IP environment variable.'); } //'10.5.4.18'; $actions = new Actions($address); $off = mb_strtolower($channel); if ('off' === $off || 'power' === $off) { $actions->powerOff(); } else { $actions->changeChannel($channel); } $io->success('Changed the Channel to ' . $channel); } }