2018-04-23 05:33:47 +00:00
|
|
|
<?php
|
2024-08-24 15:27:00 +02:00
|
|
|
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-04-23 05:33:47 +00:00
|
|
|
|
2019-05-02 23:17:35 +02:00
|
|
|
namespace Friendica\Console;
|
2018-04-23 05:33:47 +00:00
|
|
|
|
2019-07-28 22:06:33 +02:00
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Database\Database;
|
2020-01-18 23:00:53 +01:00
|
|
|
use Friendica\DI;
|
2021-09-10 18:21:19 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-11-08 11:28:29 -05:00
|
|
|
use Friendica\Util\Strings;
|
2018-07-19 22:15:21 -04:00
|
|
|
use RuntimeException;
|
2018-04-23 05:33:47 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* tool to archive a contact on the server
|
2018-04-23 05:33:47 +00: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;
|
|
|
|
/**
|
2020-01-18 20:59:39 +01:00
|
|
|
* @var \Friendica\Core\L10n
|
2019-07-28 22:06:33 +02:00
|
|
|
*/
|
|
|
|
private $l10n;
|
|
|
|
|
2018-04-23 05:33:47 +00: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;
|
|
|
|
}
|
|
|
|
|
2020-01-18 20:59:39 +01:00
|
|
|
public function __construct(App\Mode $appMode, Database $dba, \Friendica\Core\L10n $l10n, array $argv = null)
|
2018-04-23 05:33:47 +00:00
|
|
|
{
|
2019-07-28 22:06:33 +02:00
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->dba = $dba;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
}
|
2018-04-23 05:33:47 +00:00
|
|
|
|
2022-07-13 21:09:49 +02:00
|
|
|
protected function doExecute(): int
|
2019-07-28 22:06:33 +02:00
|
|
|
{
|
2018-04-23 05:33:47 +00: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-19 22:15:21 -04:00
|
|
|
throw new RuntimeException('Friendica isn\'t properly installed yet.');
|
2018-04-23 05:33:47 +00:00
|
|
|
}
|
|
|
|
|
2018-11-08 11:28:29 -05:00
|
|
|
$nurl = Strings::normaliseLink($this->getArgument(0));
|
2019-07-28 22:06:33 +02:00
|
|
|
if (!$this->dba->exists('contact', ['nurl' => $nurl, 'archive' => false])) {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new RuntimeException(DI::l10n()->t('Could not find any unarchived contact entry for this URL (%s)', $nurl));
|
2018-04-23 05:33:47 +00:00
|
|
|
}
|
2021-09-10 18:21:19 +00:00
|
|
|
if (Contact::update(['archive' => true], ['nurl' => $nurl])) {
|
2019-07-28 22:06:33 +02:00
|
|
|
$this->out($this->l10n->t('The contact entries have been archived'));
|
2018-04-23 05:33:47 +00:00
|
|
|
} else {
|
2018-07-19 22:15:21 -04:00
|
|
|
throw new RuntimeException('The contact archival failed.');
|
2018-04-23 05:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|