2019-06-26 00:32:46 +00:00
|
|
|
<?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\Actor\Person;
|
2019-06-27 14:01:05 +00:00
|
|
|
use OCA\Social\Service\AccountService;
|
2019-06-26 00:32:46 +00:00
|
|
|
use OCA\Social\Service\ConfigService;
|
|
|
|
use OCA\Social\Service\MiscService;
|
|
|
|
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
|
|
|
|
*/
|
2019-08-12 11:00:40 +00:00
|
|
|
class Timeline extends ExtendedBase {
|
2019-06-26 00:32:46 +00:00
|
|
|
|
|
|
|
/** @var IUserManager */
|
|
|
|
private $userManager;
|
|
|
|
|
|
|
|
/** @var StreamRequest */
|
|
|
|
private $streamRequest;
|
|
|
|
|
2019-06-27 14:01:05 +00:00
|
|
|
/** @var AccountService */
|
|
|
|
private $accountService;
|
2019-06-26 00:32:46 +00:00
|
|
|
|
|
|
|
/** @var ConfigService */
|
|
|
|
private $configService;
|
|
|
|
|
|
|
|
/** @var MiscService */
|
|
|
|
private $miscService;
|
|
|
|
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $count;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-08-12 11:00:40 +00:00
|
|
|
* Timeline constructor.
|
2019-06-26 00:32:46 +00:00
|
|
|
*
|
|
|
|
* @param IUserManager $userManager
|
|
|
|
* @param StreamRequest $streamRequest
|
2019-06-27 14:01:05 +00:00
|
|
|
* @param AccountService $accountService
|
2019-06-26 00:32:46 +00:00
|
|
|
* @param ConfigService $configService
|
|
|
|
* @param MiscService $miscService
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
IUserManager $userManager, StreamRequest $streamRequest,
|
2019-06-27 14:01:05 +00:00
|
|
|
AccountService $accountService, ConfigService $configService,
|
2019-06-26 00:32:46 +00:00
|
|
|
MiscService $miscService
|
|
|
|
) {
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->streamRequest = $streamRequest;
|
2019-06-27 14:01:05 +00:00
|
|
|
$this->accountService = $accountService;
|
2019-06-26 00:32:46 +00:00
|
|
|
$this->configService = $configService;
|
|
|
|
$this->miscService = $miscService;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
protected function configure() {
|
|
|
|
parent::configure();
|
|
|
|
$this->setName('social:stream')
|
|
|
|
->addArgument('userId', InputArgument::REQUIRED, 'viewer')
|
|
|
|
->addArgument('timeline', InputArgument::REQUIRED, 'timeline')
|
|
|
|
->addOption('count', '', InputOption::VALUE_REQUIRED, 'number of elements', '5')
|
|
|
|
->addOption('json', '', InputOption::VALUE_NONE, 'return JSON format')
|
|
|
|
->setDescription('Get stream by timeline and viewer');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param InputInterface $input
|
|
|
|
* @param OutputInterface $output
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$output = new ConsoleOutput();
|
|
|
|
$this->output = $output->section();
|
|
|
|
|
|
|
|
$this->asJson = $input->getOption('json');
|
|
|
|
$this->count = intval($input->getOption('count'));
|
|
|
|
|
|
|
|
$timeline = $input->getArgument('timeline');
|
|
|
|
|
|
|
|
$userId = $input->getArgument('userId');
|
|
|
|
if ($this->userManager->get($userId) === null) {
|
|
|
|
throw new Exception('Unknown user');
|
|
|
|
}
|
|
|
|
|
2019-06-27 14:01:05 +00:00
|
|
|
$actor = $this->accountService->getActor($userId);
|
2019-06-26 00:32:46 +00:00
|
|
|
|
2019-08-12 11:00:40 +00:00
|
|
|
if (!$this->asJson) {
|
|
|
|
$this->outputActor($actor);
|
|
|
|
}
|
2019-06-26 00:32:46 +00:00
|
|
|
$this->displayStream($actor, $timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Person $actor
|
|
|
|
* @param string $timeline
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
private function displayStream(Person $actor, string $timeline) {
|
|
|
|
switch ($timeline) {
|
|
|
|
case 'home':
|
|
|
|
$stream = $this->streamRequest->getTimelineHome($actor, 0, $this->count);
|
2019-08-12 11:00:40 +00:00
|
|
|
$this->outputStreams($stream);
|
2019-06-26 00:32:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'direct':
|
|
|
|
$stream = $this->streamRequest->getTimelineDirect($actor, 0, $this->count);
|
2019-08-12 11:00:40 +00:00
|
|
|
$this->outputStreams($stream);
|
2019-06-26 00:32:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'notifications':
|
|
|
|
$stream = $this->streamRequest->getTimelineNotifications($actor, 0, $this->count);
|
2019-08-12 11:00:40 +00:00
|
|
|
$this->outputStreams($stream);
|
2019-06-26 00:32:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'local':
|
|
|
|
$stream = $this->streamRequest->getTimelineGlobal(0, $this->count, true);
|
2019-08-12 11:00:40 +00:00
|
|
|
$this->outputStreams($stream);
|
2019-06-26 00:32:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'global':
|
|
|
|
$stream = $this->streamRequest->getTimelineGlobal(0, $this->count, false);
|
2019-08-12 11:00:40 +00:00
|
|
|
$this->outputStreams($stream);
|
2019-06-26 00:32:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new Exception(
|
|
|
|
'Unknown timeline. Try home, direct, local, global, notification.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|