2018-04-23 07:33:47 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-04-23 07:33:47 +02:00
|
|
|
|
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;
|
|
|
|
use Friendica\Database\Database;
|
2020-01-18 23:00:53 +01:00
|
|
|
use Friendica\DI;
|
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;
|
|
|
|
/**
|
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 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;
|
|
|
|
}
|
|
|
|
|
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 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])) {
|
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 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;
|
|
|
|
}
|
|
|
|
}
|