mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-24 13:42:47 +01:00
2baa7a2b91
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace OCA\News\Command\Config;
|
|
|
|
use OCA\News\Db\Feed;
|
|
use OCA\News\Service\Exceptions\ServiceConflictException;
|
|
use OCA\News\Service\Exceptions\ServiceNotFoundException;
|
|
use OCA\News\Service\FeedServiceV2;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class FeedAdd extends Command
|
|
{
|
|
/**
|
|
* @var FeedServiceV2 service for the feeds.
|
|
*/
|
|
protected $feedService;
|
|
|
|
/**
|
|
* FeedAdd constructor.
|
|
*
|
|
* @param FeedServiceV2 $feedService
|
|
*/
|
|
public function __construct(FeedServiceV2 $feedService)
|
|
{
|
|
parent::__construct(null);
|
|
|
|
$this->feedService = $feedService;
|
|
}
|
|
|
|
/**
|
|
* Configure command
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function configure()
|
|
{
|
|
$this->setName('news:feed:add')
|
|
->setDescription('Add a feed')
|
|
->addArgument('user-id', InputArgument::REQUIRED, 'User to add the feed for')
|
|
->addArgument('feed', InputArgument::REQUIRED, 'Feed to parse')
|
|
->addOption('folder', null, InputOption::VALUE_OPTIONAL, 'Folder ID')
|
|
->addOption('title', null, InputOption::VALUE_OPTIONAL, 'Feed title')
|
|
->addOption('full-text', null, InputOption::VALUE_OPTIONAL, 'Scrape item URLs', false)
|
|
->addOption('username', null, InputOption::VALUE_OPTIONAL, 'Basic auth username')
|
|
->addOption('password', null, InputOption::VALUE_OPTIONAL, 'Basic auth password');
|
|
}
|
|
|
|
/**
|
|
* Execute command
|
|
*
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
*
|
|
* @return int
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
$user = $input->getArgument('user-id');
|
|
$url = $input->getArgument('feed');
|
|
$folder = $input->getOption('folder');
|
|
$title = $input->getOption('title');
|
|
$full_text = (bool) $input->getOption('full-text');
|
|
$username = $input->getOption('username');
|
|
$password = $input->getOption('password');
|
|
|
|
if ($folder !== null) {
|
|
$folder = intval($folder);
|
|
}
|
|
|
|
try {
|
|
/** @var Feed $feed */
|
|
$feed = $this->feedService->create(
|
|
$user,
|
|
$url,
|
|
$folder,
|
|
$full_text,
|
|
$title,
|
|
$username,
|
|
$password
|
|
);
|
|
} catch (ServiceNotFoundException|ServiceConflictException $e) {
|
|
$output->write($e->getMessage());
|
|
return 1;
|
|
}
|
|
|
|
$this->feedService->fetch($feed);
|
|
|
|
$output->writeln(json_encode($feed->toAPI(), JSON_PRETTY_PRINT));
|
|
|
|
return 0;
|
|
}
|
|
}
|