2018-03-24 19:39:13 +01:00
|
|
|
<?php
|
|
|
|
|
2019-05-02 23:17:35 +02:00
|
|
|
namespace Friendica\Console;
|
2018-03-24 19:39:13 +01:00
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Database\Database;
|
2019-07-03 01:25:24 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-07-20 04:15:21 +02:00
|
|
|
use RuntimeException;
|
2018-03-24 19:39:13 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* tool to silence accounts on the global community page
|
2018-03-24 19:39:13 +01:00
|
|
|
*
|
|
|
|
* With this tool, you can silence an account on the global community page.
|
|
|
|
* Postings from silenced accounts will not be displayed on the community
|
|
|
|
* page. This silencing does only affect the display on the community page,
|
|
|
|
* accounts following the silenced accounts will still get their postings.
|
|
|
|
*
|
|
|
|
* License: AGPLv3 or later, same as Friendica
|
|
|
|
*
|
2018-09-16 01:28:38 +02:00
|
|
|
* @author Tobias Diekershoff <tobias.diekershoff@gmx.net>
|
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 19:39:13 +01:00
|
|
|
*/
|
|
|
|
class GlobalCommunitySilence extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
/**
|
|
|
|
* @var App\Mode
|
|
|
|
*/
|
|
|
|
private $appMode;
|
|
|
|
/**
|
|
|
|
* @var Database
|
|
|
|
*/
|
|
|
|
private $dba;
|
|
|
|
|
2018-03-24 19:39:13 +01:00
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console globalcommunitysilence - Silence remote profile from global community page
|
|
|
|
Usage
|
|
|
|
bin/console globalcommunitysilence <profile_url> [-h|--help|-?] [-v]
|
|
|
|
|
|
|
|
Description
|
|
|
|
With this tool, you can silence an account on the global community page.
|
|
|
|
Postings from silenced accounts will not be displayed on the community page.
|
|
|
|
This silencing does only affect the display on the community page, accounts
|
|
|
|
following the silenced accounts will still get their postings.
|
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
public function __construct(App\Mode $appMode, Database $dba, array $argv = null)
|
|
|
|
{
|
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->dba =$dba;
|
|
|
|
}
|
|
|
|
|
2018-03-24 19:39:13 +01:00
|
|
|
protected function doExecute()
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) > 1) {
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
|
|
|
|
}
|
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
if ($this->appMode->isInstall()) {
|
2018-07-20 04:15:21 +02:00
|
|
|
throw new RuntimeException('Database isn\'t ready or populated yet');
|
2018-03-24 19:39:13 +01:00
|
|
|
}
|
|
|
|
|
2019-07-03 01:25:24 +02:00
|
|
|
$contact_id = Contact::getIdForURL($this->getArgument(0));
|
|
|
|
if ($contact_id) {
|
2019-07-28 22:06:33 +02:00
|
|
|
$this->dba->update('contact', ['hidden' => true], ['id' => $contact_id]);
|
2019-07-03 01:25:24 +02:00
|
|
|
$this->out('The account has been successfully silenced from the global community page.');
|
2018-03-24 19:39:13 +01:00
|
|
|
} else {
|
2019-07-03 01:25:24 +02:00
|
|
|
throw new RuntimeException('Could not find any public contact entry for this URL (' . $this->getArgument(0) . ')');
|
2018-03-24 19:39:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|