[-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; } public function __construct(App\Mode $appMode, Database $dba, L10n\L10n $l10n, array $argv = null) { parent::__construct($argv); $this->appMode = $appMode; $this->dba = $dba; $this->l10n = $l10n; } 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'); } if ($this->appMode->isInstall()) { throw new RuntimeException('Friendica isn\'t properly installed yet.'); } $nurl = Strings::normaliseLink($this->getArgument(0)); if (!$this->dba->exists('contact', ['nurl' => $nurl, 'archive' => false])) { throw new RuntimeException(L10n::t('Could not find any unarchived contact entry for this URL (%s)', $nurl)); } if ($this->dba->update('contact', ['archive' => true], ['nurl' => $nurl])) { $this->out($this->l10n->t('The contact entries have been archived')); } else { throw new RuntimeException('The contact archival failed.'); } return 0; } }