social/lib/Command/Timeline.php

162 wiersze
4.8 KiB
PHP

<?php
declare(strict_types=1);
/**
* Nextcloud - Social Support
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Maxence Lange <maxence@artificial-owl.com>
* @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Social\Command;
use Exception;
use OCA\Social\Db\StreamRequest;
use OCA\Social\Model\ActivityPub\Stream;
use OCA\Social\Model\Client\Options\ProbeOptions;
use OCA\Social\Service\AccountService;
use OCA\Social\Service\CacheActorService;
use OCA\Social\Service\ConfigService;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class Stream
*
* @package OCA\Social\Command
*/
class Timeline extends ExtendedBase {
private IUserManager $userManager;
private StreamRequest $streamRequest;
private AccountService $accountService;
private CacheActorService $cacheActorService;
private ConfigService $configService;
private ?int $count = null;
/**
* Timeline constructor.
*
* @param IUserManager $userManager
* @param StreamRequest $streamRequest
* @param AccountService $accountService
* @param ConfigService $configService
*/
public function __construct(
IUserManager $userManager,
StreamRequest $streamRequest,
AccountService $accountService,
CacheActorService $cacheActorService,
ConfigService $configService
) {
parent::__construct();
$this->userManager = $userManager;
$this->streamRequest = $streamRequest;
$this->accountService = $accountService;
$this->cacheActorService = $cacheActorService;
$this->configService = $configService;
}
/**
*
*/
protected function configure() {
parent::configure();
$this->setName('social:timeline')
->addArgument('userId', InputArgument::REQUIRED, 'viewer')
->addArgument('timeline', InputArgument::REQUIRED, 'timeline')
->addOption('local', '', InputOption::VALUE_NONE, 'public')
->addOption('min_id', '', InputOption::VALUE_REQUIRED, 'min_id', 0)
->addOption('max_id', '', InputOption::VALUE_REQUIRED, 'max_id', 0)
->addOption('since', '', InputOption::VALUE_REQUIRED, 'since', 0)
->addOption('limit', '', InputOption::VALUE_REQUIRED, 'limit', 5)
->addOption('account', '', InputOption::VALUE_REQUIRED, 'account', '')
->addOption('crop', '', InputOption::VALUE_REQUIRED, 'crop', 0)
->setDescription('Get stream by timeline and viewer');
}
/**
* @param InputInterface $input
* @param OutputInterface $output
*
* @throws Exception
*/
protected function execute(InputInterface $input, OutputInterface $output): int {
$output = new ConsoleOutput();
$this->output = $output->section();
$this->asJson = (strtolower($input->getOption('output')) === 'json');
$this->crop = intval($input->getOption('crop'));
$userId = $input->getArgument('userId');
if ($this->userManager->get($userId) === null) {
throw new Exception('Unknown user');
}
$actor = $this->accountService->getActorFromUserId($userId);
if (!$this->asJson) {
$this->outputActor($actor);
}
$this->streamRequest->setViewer($actor);
$options = new ProbeOptions();
$options->setFormat(Stream::FORMAT_LOCAL);
$options->setLimit(intval($input->getOption('limit')))
->setMinId(intval($input->getOption('min_id')))
->setMaxId(intval($input->getOption('max_id')))
->setSince(intval($input->getOption('since')));
if ($input->getOption('local')) {
$options->setLocal(true);
}
$timeline = $input->getArgument('timeline');
if (str_starts_with($timeline, '#')) {
$options->setProbe(ProbeOptions::HASHTAG)
->setArgument(substr($timeline, 1));
} else {
$options->setProbe($timeline);
}
if ($input->getOption('account') !== '') {
$local = $this->cacheActorService->getFromLocalAccount($input->getOption('account'));
$options->setAccountId($local->getId());
}
$this->outputStreams($this->streamRequest->getTimeline($options));
return 0;
}
}