kopia lustrzana https://github.com/nextcloud/social
76 wiersze
2.3 KiB
PHP
76 wiersze
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Social\Command;
|
|
|
|
use Exception;
|
|
use OC\Core\Command\Base;
|
|
use OCA\Social\Service\AccountService;
|
|
use OCA\Social\Service\CacheActorService;
|
|
use OCA\Social\Service\ConfigService;
|
|
use OCA\Social\Service\FollowService;
|
|
use OCA\Social\Service\MiscService;
|
|
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 AccountFollowing extends Base {
|
|
private AccountService $accountService;
|
|
private CacheActorService $cacheActorService;
|
|
private FollowService $followService;
|
|
private ConfigService $configService;
|
|
private MiscService $miscService;
|
|
|
|
public function __construct(
|
|
AccountService $accountService, CacheActorService $cacheActorService,
|
|
FollowService $followService, ConfigService $configService, MiscService $miscService,
|
|
) {
|
|
parent::__construct();
|
|
|
|
$this->accountService = $accountService;
|
|
$this->cacheActorService = $cacheActorService;
|
|
$this->followService = $followService;
|
|
$this->configService = $configService;
|
|
$this->miscService = $miscService;
|
|
}
|
|
|
|
protected function configure() {
|
|
parent::configure();
|
|
$this->setName('social:account:following')
|
|
->addArgument('userId', InputArgument::REQUIRED, 'Nextcloud userid')
|
|
->addArgument('account', InputArgument::REQUIRED, 'Account to follow')
|
|
->addOption('local', '', InputOption::VALUE_NONE, 'account is local')
|
|
->addOption('unfollow', '', InputOption::VALUE_NONE, 'unfollow')
|
|
->setDescription('Following a new account');
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$userId = $input->getArgument('userId');
|
|
$account = $input->getArgument('account');
|
|
|
|
$actor = $this->accountService->getActor($userId);
|
|
if ($input->getOption('local')) {
|
|
$local = $this->cacheActorService->getFromLocalAccount($account);
|
|
$account = $local->getAccount();
|
|
}
|
|
|
|
if ($input->getOption('unfollow')) {
|
|
$this->followService->unfollowAccount($actor, $account);
|
|
} else {
|
|
$this->followService->followAccount($actor, $account);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|