2018-04-23 07:33:47 +02:00
|
|
|
<?php
|
|
|
|
|
2019-05-02 23:17:35 +02:00
|
|
|
namespace Friendica\Console;
|
2018-04-23 07:33:47 +02:00
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
use Friendica\App;
|
2018-04-23 07:33:47 +02:00
|
|
|
use Friendica\Core\L10n;
|
2019-07-28 22:06:33 +02:00
|
|
|
use Friendica\Database\Database;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
2018-07-20 04:15:21 +02:00
|
|
|
use RuntimeException;
|
2018-04-23 07:33:47 +02:00
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* tool to archive a contact on the server
|
2018-04-23 07:33:47 +02:00
|
|
|
*
|
|
|
|
* With this tool you can archive a contact when you know that it isn't existing anymore.
|
|
|
|
* Normally this does happen automatically after a few days.
|
|
|
|
*
|
|
|
|
* License: AGPLv3 or later, same as Friendica
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class ArchiveContact 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;
|
|
|
|
/**
|
|
|
|
* @var L10n\L10n
|
|
|
|
*/
|
|
|
|
private $l10n;
|
|
|
|
|
2018-04-23 07:33:47 +02:00
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console archivecontact - archive a contact
|
|
|
|
Usage
|
|
|
|
bin/console archivecontact <profile_url> [-h|--help|-?] [-v]
|
|
|
|
|
|
|
|
Description
|
|
|
|
Archive a contact when you know that it isn't existing anymore. Normally this does happen automatically after a few days.
|
|
|
|
|
|
|
|
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, L10n\L10n $l10n, array $argv = null)
|
2018-04-23 07:33:47 +02:00
|
|
|
{
|
2019-07-28 22:06:33 +02:00
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->dba = $dba;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
}
|
2018-04-23 07:33:47 +02:00
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
protected function doExecute()
|
|
|
|
{
|
2018-04-23 07:33:47 +02: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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('Friendica isn\'t properly installed yet.');
|
2018-04-23 07:33:47 +02:00
|
|
|
}
|
|
|
|
|
2018-11-08 17:28:29 +01:00
|
|
|
$nurl = Strings::normaliseLink($this->getArgument(0));
|
2019-07-28 22:06:33 +02:00
|
|
|
if (!$this->dba->exists('contact', ['nurl' => $nurl, 'archive' => false])) {
|
2018-07-20 04:15:21 +02:00
|
|
|
throw new RuntimeException(L10n::t('Could not find any unarchived contact entry for this URL (%s)', $nurl));
|
2018-04-23 07:33:47 +02:00
|
|
|
}
|
2019-07-28 22:06:33 +02:00
|
|
|
if ($this->dba->update('contact', ['archive' => true], ['nurl' => $nurl])) {
|
|
|
|
$this->out($this->l10n->t('The contact entries have been archived'));
|
2018-04-23 07:33:47 +02:00
|
|
|
} else {
|
2018-07-20 04:15:21 +02:00
|
|
|
throw new RuntimeException('The contact archival failed.');
|
2018-04-23 07:33:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|