2018-03-24 14:39:13 -04:00
|
|
|
<?php
|
|
|
|
|
2019-05-02 17:17:35 -04:00
|
|
|
namespace Friendica\Console;
|
2018-03-24 14:39:13 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
use Friendica\App;
|
2018-03-24 14:39:13 -04:00
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief tool to block an account from the node
|
|
|
|
*
|
|
|
|
* With this tool, you can block an account in such a way, that no postings
|
|
|
|
* or comments this account writes are accepted to the node.
|
|
|
|
*
|
|
|
|
* License: AGPLv3 or later, same as Friendica
|
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Tobias Diekershoff <tobias.diekershoff@gmx.net>
|
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
|
|
|
class GlobalCommunityBlock extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
/**
|
|
|
|
* @var App\Mode
|
|
|
|
*/
|
|
|
|
private $appMode;
|
|
|
|
/**
|
|
|
|
* @var L10n\L10n
|
|
|
|
*/
|
|
|
|
private $l10n;
|
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console globalcommunityblock - Block remote profile from interacting with this node
|
|
|
|
Usage
|
2019-05-15 19:30:48 -04:00
|
|
|
bin/console globalcommunityblock <profile_url> [<reason>] [-h|--help|-?] [-v]
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
Description
|
|
|
|
Blocks an account in such a way that no postings or comments this account writes are accepted to this node.
|
2019-05-15 19:30:48 -04:00
|
|
|
You can provide a optional reason for the block.
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
public function __construct(App\Mode $appMode, L10n $l10n, $argv = null)
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2019-07-28 16:06:33 -04:00
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
}
|
2018-03-26 16:58:34 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
protected function doExecute()
|
|
|
|
{
|
2018-03-24 14:39:13 -04:00
|
|
|
if ($this->getOption('v')) {
|
|
|
|
$this->out('Class: ' . __CLASS__);
|
|
|
|
$this->out('Arguments: ' . var_export($this->args, true));
|
|
|
|
$this->out('Options: ' . var_export($this->options, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 0) {
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-15 19:30:48 -04:00
|
|
|
if (count($this->args) > 2) {
|
2018-03-24 14:39:13 -04:00
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if ($this->appMode->isInstall()) {
|
2018-06-25 20:56:07 -04:00
|
|
|
throw new \RuntimeException('Database isn\'t ready or populated yet');
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
2019-05-16 08:42:07 -04:00
|
|
|
$contact_id = Contact::getIdForURL($this->getArgument(0));
|
|
|
|
if (!$contact_id) {
|
2019-07-28 16:06:33 -04:00
|
|
|
throw new \RuntimeException($this->l10n->t('Could not find any contact entry for this URL (%s)', $this->getArgument(0)));
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
2019-05-15 19:30:48 -04:00
|
|
|
|
|
|
|
$block_reason = $this->getArgument(1);
|
2019-05-16 08:42:07 -04:00
|
|
|
if(Contact::block($contact_id, $block_reason)) {
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->out($this->l10n->t('The contact has been blocked from the node'));
|
2018-03-24 14:39:13 -04:00
|
|
|
} else {
|
|
|
|
throw new \RuntimeException('The contact block failed.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|