1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-10-17 08:42:48 +02:00
Nextcloud-News/lib/Command/Config/OpmlExport.php
Sean Molenaar 67b6c4e1b0 Fix psalm issues
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
2021-01-12 13:29:08 +01:00

53 lines
1.2 KiB
PHP

<?php
namespace OCA\News\Command\Config;
use OCA\News\Service\OpmlService;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class OpmlExport extends Command
{
/**
* @var OpmlService service for the data.
*/
protected $opmlService;
public function __construct(OpmlService $opmlService)
{
parent::__construct(null);
$this->opmlService = $opmlService;
}
/**
* Configure command
*
* @return void
*/
protected function configure()
{
$this->setName('news:opml:export')
->setDescription('Print OPML file')
->addArgument('user-id', InputArgument::REQUIRED, 'User data to export');
}
/**
* Execute command
*
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$user = $input->getArgument('user-id');
$output->write($this->opmlService->export($user));
return 0;
}
}