2021-05-02 12:32:49 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2021-05-02 12:32:49 -04: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Console;
|
|
|
|
|
|
|
|
use Console_Table;
|
|
|
|
use Friendica\App;
|
2021-09-26 10:30:44 -04:00
|
|
|
use Friendica\DI;
|
2021-05-02 12:32:49 -04:00
|
|
|
use Friendica\Model\Contact as ContactModel;
|
|
|
|
use Friendica\Model\User as UserModel;
|
2021-08-24 11:32:27 -04:00
|
|
|
use Friendica\Network\Probe;
|
2021-05-02 12:32:49 -04:00
|
|
|
use Friendica\Util\Temporal;
|
|
|
|
use RuntimeException;
|
|
|
|
use Seld\CliPrompt\CliPrompt;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tool to manage contacts of users of the current node
|
|
|
|
*/
|
|
|
|
class Contact extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var App\Mode
|
|
|
|
*/
|
|
|
|
private $appMode;
|
|
|
|
/**
|
|
|
|
* @var IPConfig
|
|
|
|
*/
|
|
|
|
private $pConfig;
|
|
|
|
|
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console contact - Modify contact settings per console commands.
|
|
|
|
Usage
|
|
|
|
bin/console contact add <user nick> <URL> [<network>] [-h|--help|-?] [-v]
|
|
|
|
bin/console contact remove <CID> [-h|--help|-?] [-v]
|
|
|
|
bin/console contact search id <CID> [-h|--help|-?] [-v]
|
|
|
|
bin/console contact search url <user nick> <URL> [-h|--help|-?] [-v]
|
|
|
|
bin/console contact terminate <CID> [-h|--help|-?] [-v]
|
|
|
|
|
|
|
|
Description
|
|
|
|
Modify contact settings per console commands.
|
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information
|
|
|
|
-y Non-interactive mode, assume "yes" as answer to the user deletion prompt
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __construct(App\Mode $appMode, array $argv = null)
|
|
|
|
{
|
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
}
|
|
|
|
|
2022-07-13 15:09:49 -04:00
|
|
|
protected function doExecute(): int
|
2021-05-02 12:32:49 -04: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 ($this->appMode->isInstall()) {
|
|
|
|
throw new RuntimeException('Database isn\'t ready or populated yet');
|
|
|
|
}
|
|
|
|
|
|
|
|
$command = $this->getArgument(0);
|
|
|
|
|
|
|
|
switch ($command) {
|
|
|
|
case 'add':
|
|
|
|
return $this->addContact();
|
|
|
|
case 'remove':
|
|
|
|
return $this->removeContact();
|
|
|
|
case 'search':
|
|
|
|
return $this->searchContact();
|
|
|
|
case 'terminate':
|
|
|
|
return $this->terminateContact();
|
|
|
|
default:
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Wrong command.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the user from a nick supplied as an argument or from a prompt
|
|
|
|
*
|
|
|
|
* @param int $arg_index Index of the nick argument in the arguments list
|
|
|
|
*
|
|
|
|
* @return array|boolean User record with uid field, or false if user is not found
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
private function getUserByNick($arg_index)
|
|
|
|
{
|
|
|
|
$nick = $this->getArgument($arg_index);
|
|
|
|
|
|
|
|
if (empty($nick)) {
|
|
|
|
$this->out('Enter user nickname: ');
|
|
|
|
$nick = CliPrompt::prompt();
|
|
|
|
if (empty($nick)) {
|
|
|
|
throw new RuntimeException('A user nickname must be specified.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = UserModel::getByNickname($nick, ['uid', 'nickname']);
|
|
|
|
if (empty($user)) {
|
|
|
|
throw new RuntimeException('User not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a contact to a user from a URL
|
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
*/
|
|
|
|
private function addContact()
|
|
|
|
{
|
|
|
|
$user = $this->getUserByNick(1);
|
|
|
|
|
|
|
|
$url = $this->getArgument(2);
|
|
|
|
if (empty($url)) {
|
|
|
|
$this->out('Enter contact URL: ');
|
|
|
|
$url = CliPrompt::prompt();
|
|
|
|
if (empty($url)) {
|
|
|
|
throw new RuntimeException('A contact URL must be specified.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 11:32:27 -04:00
|
|
|
$url = Probe::cleanURI($url);
|
|
|
|
|
2021-05-02 12:32:49 -04:00
|
|
|
$contact = ContactModel::getByURLForUser($url, $user['uid']);
|
|
|
|
if (!empty($contact)) {
|
|
|
|
throw new RuntimeException('Contact already exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
$network = $this->getArgument(3);
|
2021-05-04 07:16:00 -04:00
|
|
|
if ($network === null) {
|
2021-05-02 12:32:49 -04:00
|
|
|
$this->out('Enter network, or leave blank: ');
|
|
|
|
$network = CliPrompt::prompt();
|
|
|
|
}
|
|
|
|
|
2021-08-09 11:29:07 -04:00
|
|
|
$result = ContactModel::createFromProbeForUser($user['uid'], $url, $network);
|
2021-05-02 12:32:49 -04:00
|
|
|
|
|
|
|
if ($result['success']) {
|
|
|
|
$this->out('User ' . $user['nickname'] . ' now connected to ' . $url . ', contact ID ' . $result['cid']);
|
2021-05-03 14:17:43 -04:00
|
|
|
} else {
|
2021-05-02 12:32:49 -04:00
|
|
|
throw new RuntimeException($result['message']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-09-26 10:30:44 -04:00
|
|
|
* Sends an unfriend message.
|
2021-05-02 12:32:49 -04:00
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
2021-09-26 10:30:44 -04:00
|
|
|
* @throws \Exception
|
2021-05-02 12:32:49 -04:00
|
|
|
*/
|
2021-09-26 10:30:44 -04:00
|
|
|
private function terminateContact(): bool
|
2021-05-02 12:32:49 -04:00
|
|
|
{
|
|
|
|
$cid = $this->getArgument(1);
|
|
|
|
if (empty($cid)) {
|
|
|
|
$this->out('Enter contact ID: ');
|
|
|
|
$cid = CliPrompt::prompt();
|
|
|
|
if (empty($cid)) {
|
|
|
|
throw new RuntimeException('A contact ID must be specified.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = ContactModel::getById($cid);
|
|
|
|
if (empty($contact)) {
|
|
|
|
throw new RuntimeException('Contact not found');
|
|
|
|
}
|
|
|
|
|
2021-10-16 21:24:34 -04:00
|
|
|
if (empty($contact['uid'])) {
|
|
|
|
throw new RuntimeException('Contact must be user-specific (uid != 0)');
|
|
|
|
}
|
2021-05-02 12:32:49 -04:00
|
|
|
|
2021-09-26 10:30:44 -04:00
|
|
|
try {
|
2021-10-16 21:24:34 -04:00
|
|
|
ContactModel::unfollow($contact);
|
2021-09-26 10:30:44 -04:00
|
|
|
|
|
|
|
$this->out('Contact was successfully unfollowed');
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch (\Exception $e) {
|
2021-10-16 21:24:34 -04:00
|
|
|
DI::logger()->error($e->getMessage(), ['contact' => $contact]);
|
2021-09-26 10:30:44 -04:00
|
|
|
throw new RuntimeException('Unable to unfollow this contact, please check the log');
|
|
|
|
}
|
2021-05-02 12:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks a contact for removal
|
|
|
|
*/
|
|
|
|
private function removeContact()
|
|
|
|
{
|
|
|
|
$cid = $this->getArgument(1);
|
|
|
|
if (empty($cid)) {
|
|
|
|
$this->out('Enter contact ID: ');
|
|
|
|
$cid = CliPrompt::prompt();
|
|
|
|
if (empty($cid)) {
|
|
|
|
throw new RuntimeException('A contact ID must be specified.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-09 02:09:49 -04:00
|
|
|
ContactModel::remove($cid);
|
2021-05-02 12:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a contact based on search parameter
|
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
*/
|
|
|
|
private function searchContact()
|
|
|
|
{
|
|
|
|
$fields = [
|
|
|
|
'id',
|
|
|
|
'uid',
|
|
|
|
'network',
|
|
|
|
'name',
|
|
|
|
'nick',
|
|
|
|
'url',
|
|
|
|
'addr',
|
|
|
|
'created',
|
|
|
|
'updated',
|
|
|
|
'blocked',
|
|
|
|
'deleted',
|
|
|
|
];
|
|
|
|
|
|
|
|
$subCmd = $this->getArgument(1);
|
|
|
|
|
|
|
|
$table = new Console_Table();
|
|
|
|
$table->setHeaders(['ID', 'UID', 'Network', 'Name', 'Nick', 'URL', 'E-Mail', 'Created', 'Updated', 'Blocked', 'Deleted']);
|
|
|
|
|
2021-05-03 14:17:43 -04:00
|
|
|
$addRow = function ($row) use (&$table) {
|
2021-05-02 12:32:49 -04:00
|
|
|
$table->addRow([
|
|
|
|
$row['id'],
|
|
|
|
$row['uid'],
|
|
|
|
$row['network'],
|
|
|
|
$row['name'],
|
|
|
|
$row['nick'],
|
|
|
|
$row['url'],
|
|
|
|
$row['addr'],
|
|
|
|
Temporal::getRelativeDate($row['created']),
|
|
|
|
Temporal::getRelativeDate($row['updated']),
|
|
|
|
$row['blocked'],
|
|
|
|
$row['deleted'],
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
switch ($subCmd) {
|
|
|
|
case 'id':
|
2021-05-03 14:17:43 -04:00
|
|
|
$cid = $this->getArgument(2);
|
2021-05-02 12:32:49 -04:00
|
|
|
$contact = ContactModel::getById($cid, $fields);
|
|
|
|
if (!empty($contact)) {
|
|
|
|
$addRow($contact);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'url':
|
2021-05-03 14:56:49 -04:00
|
|
|
$user = $this->getUserByNick(2);
|
2021-05-03 14:56:41 -04:00
|
|
|
$url = $this->getArgument(3);
|
2021-05-02 12:32:49 -04:00
|
|
|
$contact = ContactModel::getByURLForUser($url, $user['uid'], false, $fields);
|
|
|
|
if (!empty($contact)) {
|
|
|
|
$addRow($contact);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->out($table->getTable());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|