2018-03-30 15:17:12 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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-03-30 15:17:12 -04:00
|
|
|
|
2019-05-02 17:17:35 -04:00
|
|
|
namespace Friendica\Console;
|
2018-03-30 15:17:12 -04:00
|
|
|
|
2020-02-25 16:16:27 -05:00
|
|
|
use Console_Table;
|
2019-07-28 16:06:33 -04:00
|
|
|
use Friendica\App;
|
2020-02-25 16:16:27 -05:00
|
|
|
use Friendica\Content\Pager;
|
2020-01-18 14:59:39 -05:00
|
|
|
use Friendica\Core\L10n;
|
2019-07-28 16:06:33 -04:00
|
|
|
use Friendica\Database\Database;
|
2020-02-21 16:57:17 -05:00
|
|
|
use Friendica\Model\Register;
|
2020-02-20 17:08:19 -05:00
|
|
|
use Friendica\Model\User as UserModel;
|
2020-02-25 16:28:02 -05:00
|
|
|
use Friendica\Util\Temporal;
|
2018-07-19 22:15:21 -04:00
|
|
|
use RuntimeException;
|
2020-02-20 17:43:52 -05:00
|
|
|
use Seld\CliPrompt\CliPrompt;
|
2018-03-30 15:17:12 -04:00
|
|
|
|
|
|
|
/**
|
2020-02-25 16:16:27 -05:00
|
|
|
* tool to manage users of the current node
|
2018-03-30 15:17:12 -04:00
|
|
|
*/
|
2020-02-20 17:08:19 -05:00
|
|
|
class User extends \Asika\SimpleConsole\Console
|
2018-03-30 15:17:12 -04:00
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
/**
|
|
|
|
* @var App\Mode
|
|
|
|
*/
|
|
|
|
private $appMode;
|
|
|
|
/**
|
|
|
|
* @var L10n
|
|
|
|
*/
|
|
|
|
private $l10n;
|
|
|
|
/**
|
|
|
|
* @var Database
|
|
|
|
*/
|
|
|
|
private $dba;
|
|
|
|
|
2018-03-30 15:17:12 -04:00
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
2020-02-20 17:08:19 -05:00
|
|
|
console user - Modify user settings per console commands.
|
2018-03-30 15:17:12 -04:00
|
|
|
Usage
|
2020-02-20 17:43:52 -05:00
|
|
|
bin/console user password <nickname> [<password>] [-h|--help|-?] [-v]
|
|
|
|
bin/console user add [<name> [<nickname> [<email> [<language>]]]] [-h|--help|-?] [-v]
|
2020-02-21 17:19:47 -05:00
|
|
|
bin/console user delete [<nickname>] [-q] [-h|--help|-?] [-v]
|
2020-02-21 16:57:17 -05:00
|
|
|
bin/console user allow [<nickname>] [-h|--help|-?] [-v]
|
2020-02-21 17:03:33 -05:00
|
|
|
bin/console user deny [<nickname>] [-h|--help|-?] [-v]
|
2020-02-21 17:12:07 -05:00
|
|
|
bin/console user block [<nickname>] [-h|--help|-?] [-v]
|
|
|
|
bin/console user unblock [<nickname>] [-h|--help|-?] [-v]
|
2020-02-25 17:22:47 -05:00
|
|
|
bin/console user list pending [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
|
|
|
|
bin/console user list removed [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
|
|
|
|
bin/console user list active [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
|
|
|
|
bin/console user list all [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
|
2020-02-25 16:40:36 -05:00
|
|
|
bin/console user search id <UID> [-h|--help|-?] [-v]
|
|
|
|
bin/console user search nick <nick> [-h|--help|-?] [-v]
|
|
|
|
bin/console user search mail <mail> [-h|--help|-?] [-v]
|
|
|
|
bin/console user search guid <GUID> [-h|--help|-?] [-v]
|
2018-03-30 15:17:12 -04:00
|
|
|
|
|
|
|
Description
|
2020-02-20 17:08:19 -05:00
|
|
|
Modify user settings per console commands.
|
2018-03-30 15:17:12 -04:00
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
2020-02-21 17:19:47 -05:00
|
|
|
-q Quiet mode (don't ask for a command).
|
2018-03-30 15:17:12 -04:00
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
2020-02-21 16:57:17 -05:00
|
|
|
public function __construct(App\Mode $appMode, L10n $l10n, Database $dba, array $argv = null)
|
2018-03-30 15:17:12 -04:00
|
|
|
{
|
2019-07-28 16:06:33 -04:00
|
|
|
parent::__construct($argv);
|
|
|
|
|
2020-02-21 16:57:17 -05:00
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->dba = $dba;
|
2019-07-28 16:06:33 -04:00
|
|
|
}
|
2018-03-30 15:17:12 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
protected function doExecute()
|
|
|
|
{
|
2018-03-30 15:17:12 -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;
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if ($this->appMode->isInstall()) {
|
2018-07-19 22:15:21 -04:00
|
|
|
throw new RuntimeException('Database isn\'t ready or populated yet');
|
2018-03-30 15:17:12 -04:00
|
|
|
}
|
|
|
|
|
2020-02-20 17:43:52 -05:00
|
|
|
$command = $this->getArgument(0);
|
2020-02-20 17:08:19 -05:00
|
|
|
|
|
|
|
switch ($command) {
|
|
|
|
case 'password':
|
2020-02-20 17:43:52 -05:00
|
|
|
return $this->password();
|
|
|
|
case 'add':
|
|
|
|
return $this->addUser();
|
2020-02-21 16:57:17 -05:00
|
|
|
case 'allow':
|
2020-02-21 17:03:33 -05:00
|
|
|
return $this->pendingUser(true);
|
|
|
|
case 'deny':
|
|
|
|
return $this->pendingUser(false);
|
2020-02-21 17:12:07 -05:00
|
|
|
case 'block':
|
|
|
|
return $this->blockUser(true);
|
|
|
|
case 'unblock':
|
|
|
|
return $this->blockUser(false);
|
2020-02-21 17:19:47 -05:00
|
|
|
case 'delete':
|
|
|
|
return $this->deleteUser();
|
2020-02-25 16:16:27 -05:00
|
|
|
case 'list':
|
|
|
|
return $this->listUser();
|
2020-02-25 16:40:36 -05:00
|
|
|
case 'search':
|
|
|
|
return $this->searchUser();
|
2020-02-20 17:08:19 -05:00
|
|
|
default:
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Wrong command.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a new password
|
|
|
|
*
|
|
|
|
* @return int Return code of this command
|
2020-02-20 17:43:52 -05:00
|
|
|
*
|
|
|
|
* @throws \Exception
|
2020-02-20 17:08:19 -05:00
|
|
|
*/
|
2020-02-20 17:43:52 -05:00
|
|
|
private function password()
|
2020-02-20 17:08:19 -05:00
|
|
|
{
|
2020-02-20 17:43:52 -05:00
|
|
|
$nick = $this->getArgument(1);
|
|
|
|
|
|
|
|
$user = $this->dba->selectFirst('user', ['uid'], ['nickname' => $nick]);
|
|
|
|
if (!$this->dba->isResult($user)) {
|
|
|
|
throw new RuntimeException($this->l10n->t('User not found'));
|
|
|
|
}
|
|
|
|
|
2020-02-20 17:08:19 -05:00
|
|
|
$password = $this->getArgument(2);
|
|
|
|
|
2018-04-18 22:56:52 -04:00
|
|
|
if (is_null($password)) {
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->out($this->l10n->t('Enter new password: '), false);
|
2020-02-20 17:43:52 -05:00
|
|
|
$password = CliPrompt::hiddenPrompt(true);
|
2018-04-18 22:56:52 -04:00
|
|
|
}
|
|
|
|
|
2019-01-01 01:09:44 -05:00
|
|
|
try {
|
2020-02-20 17:08:19 -05:00
|
|
|
$result = UserModel::updatePassword($user['uid'], $password);
|
2018-04-18 22:56:52 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if (!$this->dba->isResult($result)) {
|
|
|
|
throw new \Exception($this->l10n->t('Password update failed. Please try again.'));
|
2019-01-01 01:09:44 -05:00
|
|
|
}
|
2018-03-30 15:17:12 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->out($this->l10n->t('Password changed.'));
|
2019-01-01 01:09:44 -05:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new RuntimeException($e->getMessage(), $e->getCode(), $e);
|
2018-03-30 15:17:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-02-20 17:43:52 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new user based on given console arguments
|
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
* @throws \ErrorException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
private function addUser()
|
|
|
|
{
|
2020-02-21 16:57:17 -05:00
|
|
|
$name = $this->getArgument(1);
|
|
|
|
$nick = $this->getArgument(2);
|
|
|
|
$email = $this->getArgument(3);
|
|
|
|
$lang = $this->getArgument(4);
|
2020-02-20 17:43:52 -05:00
|
|
|
|
|
|
|
if (empty($name)) {
|
|
|
|
$this->out($this->l10n->t('Enter user name: '));
|
|
|
|
$name = CliPrompt::prompt();
|
|
|
|
if (empty($name)) {
|
|
|
|
throw new RuntimeException('A name must be set.');
|
|
|
|
}
|
|
|
|
}
|
2020-02-21 16:57:17 -05:00
|
|
|
|
2020-02-20 17:43:52 -05:00
|
|
|
if (empty($nick)) {
|
|
|
|
$this->out($this->l10n->t('Enter user nickname: '));
|
|
|
|
$nick = CliPrompt::prompt();
|
|
|
|
if (empty($nick)) {
|
|
|
|
throw new RuntimeException('A nick name must be set.');
|
|
|
|
}
|
|
|
|
}
|
2020-02-21 16:57:17 -05:00
|
|
|
|
2020-02-20 17:43:52 -05:00
|
|
|
if (empty($email)) {
|
|
|
|
$this->out($this->l10n->t('Enter user email address: '));
|
|
|
|
$email = CliPrompt::prompt();
|
|
|
|
if (empty($email)) {
|
|
|
|
throw new RuntimeException('A email address must be set.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($lang)) {
|
|
|
|
$this->out($this->l10n->t('Enter a language (optional): '));
|
|
|
|
$lang = CliPrompt::prompt();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($lang)) {
|
2020-02-21 16:57:17 -05:00
|
|
|
return UserModel::createMinimal($name, $email, $nick);
|
2020-02-20 17:43:52 -05:00
|
|
|
} else {
|
2020-02-21 16:57:17 -05:00
|
|
|
return UserModel::createMinimal($name, $email, $nick, $lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-02-21 17:03:33 -05:00
|
|
|
* Allows or denys a user based on it's nickname
|
|
|
|
*
|
|
|
|
* @param bool $allow True, if the pending user is allowed, false if denies
|
2020-02-21 16:57:17 -05:00
|
|
|
*
|
|
|
|
* @return bool True, if allow was successful
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2020-02-21 17:12:07 -05:00
|
|
|
private function pendingUser(bool $allow = true)
|
2020-02-21 16:57:17 -05:00
|
|
|
{
|
|
|
|
$nick = $this->getArgument(1);
|
|
|
|
|
|
|
|
if (!$nick) {
|
|
|
|
$this->out($this->l10n->t('Enter user nickname: '));
|
|
|
|
$nick = CliPrompt::prompt();
|
|
|
|
if (empty($nick)) {
|
|
|
|
throw new RuntimeException('A nick name must be set.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = $this->dba->selectFirst('user', ['uid'], ['nickname' => $nick]);
|
|
|
|
if (empty($user)) {
|
|
|
|
throw new RuntimeException($this->l10n->t('User not found'));
|
2020-02-20 17:43:52 -05:00
|
|
|
}
|
2020-02-21 16:57:17 -05:00
|
|
|
|
|
|
|
$pending = Register::getPendingForUser($user['uid'] ?? 0);
|
|
|
|
if (empty($pending)) {
|
|
|
|
throw new RuntimeException($this->l10n->t('User is not pending.'));
|
|
|
|
}
|
|
|
|
|
2020-02-21 17:03:33 -05:00
|
|
|
return ($allow) ? UserModel::allow($pending['hash']) : UserModel::deny($pending['hash']);
|
2020-02-20 17:43:52 -05:00
|
|
|
}
|
2020-02-21 17:12:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Blocks/unblocks a user
|
|
|
|
*
|
|
|
|
* @param bool $block True, if the given user should get blocked
|
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
private function blockUser(bool $block = true)
|
|
|
|
{
|
|
|
|
$nick = $this->getArgument(1);
|
|
|
|
|
|
|
|
if (!$nick) {
|
|
|
|
$this->out($this->l10n->t('Enter user nickname: '));
|
|
|
|
$nick = CliPrompt::prompt();
|
|
|
|
if (empty($nick)) {
|
|
|
|
throw new RuntimeException('A nick name must be set.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = $this->dba->selectFirst('user', ['uid'], ['nickname' => $nick]);
|
|
|
|
if (empty($user)) {
|
|
|
|
throw new RuntimeException($this->l10n->t('User not found'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $block ? UserModel::block($user['uid'] ?? 0) : UserModel::block($user['uid'] ?? 0, false);
|
|
|
|
}
|
2020-02-21 17:19:47 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a user
|
|
|
|
*
|
|
|
|
* @return bool True, if the delete was successful
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
private function deleteUser()
|
|
|
|
{
|
|
|
|
$nick = $this->getArgument(1);
|
|
|
|
|
|
|
|
if (!$nick) {
|
|
|
|
$this->out($this->l10n->t('Enter user nickname: '));
|
|
|
|
$nick = CliPrompt::prompt();
|
|
|
|
if (empty($nick)) {
|
|
|
|
throw new RuntimeException('A nick name must be set.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-09 11:05:20 -04:00
|
|
|
$user = $this->dba->selectFirst('user', ['uid', 'account_removed'], ['nickname' => $nick]);
|
2020-02-21 17:19:47 -05:00
|
|
|
if (empty($user)) {
|
|
|
|
throw new RuntimeException($this->l10n->t('User not found'));
|
|
|
|
}
|
|
|
|
|
2020-05-09 11:05:20 -04:00
|
|
|
if (!empty($user['account_removed'])) {
|
|
|
|
$this->out($this->l10n->t('User has already been marked for deletion.'));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-21 17:19:47 -05:00
|
|
|
if (!$this->getOption('q')) {
|
|
|
|
$this->out($this->l10n->t('Type "yes" to delete %s', $nick));
|
|
|
|
if (CliPrompt::prompt() !== 'yes') {
|
2020-05-09 11:05:20 -04:00
|
|
|
throw new RuntimeException($this->l10n->t('Deletion aborted.'));
|
2020-02-21 17:19:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-09 11:05:20 -04:00
|
|
|
return UserModel::remove($user['uid']);
|
2020-02-21 17:19:47 -05:00
|
|
|
}
|
2020-02-25 16:16:27 -05:00
|
|
|
|
|
|
|
/**
|
2020-02-25 16:40:36 -05:00
|
|
|
* List users of the current node
|
2020-02-25 16:16:27 -05:00
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
*/
|
|
|
|
private function listUser()
|
|
|
|
{
|
|
|
|
$subCmd = $this->getArgument(1);
|
2020-02-25 17:22:47 -05:00
|
|
|
$start = $this->getOption(['s', 'start'], 0);
|
|
|
|
$count = $this->getOption(['c', 'count'], Pager::ITEMS_PER_PAGE);
|
2020-02-25 16:16:27 -05:00
|
|
|
|
|
|
|
$table = new Console_Table();
|
|
|
|
|
|
|
|
switch ($subCmd) {
|
|
|
|
case 'pending':
|
|
|
|
$table->setHeaders(['Nick', 'Name', 'URL', 'E-Mail', 'Register Date', 'Comment']);
|
|
|
|
$pending = Register::getPending($start, $count);
|
|
|
|
foreach ($pending as $contact) {
|
|
|
|
$table->addRow([
|
|
|
|
$contact['nick'],
|
|
|
|
$contact['name'],
|
|
|
|
$contact['url'],
|
|
|
|
$contact['email'],
|
2020-02-25 16:28:02 -05:00
|
|
|
Temporal::getRelativeDate($contact['created']),
|
2020-02-25 16:16:27 -05:00
|
|
|
$contact['note'],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
$this->out($table->getTable());
|
|
|
|
return true;
|
|
|
|
case 'all':
|
2020-02-25 17:22:47 -05:00
|
|
|
case 'active':
|
2020-02-25 16:28:02 -05:00
|
|
|
case 'removed':
|
|
|
|
$table->setHeaders(['Nick', 'Name', 'URL', 'E-Mail', 'Register', 'Login', 'Last Item']);
|
2020-02-29 11:04:56 -05:00
|
|
|
$contacts = UserModel::getList($start, $count, $subCmd);
|
2020-02-25 16:16:27 -05:00
|
|
|
foreach ($contacts as $contact) {
|
|
|
|
$table->addRow([
|
|
|
|
$contact['nick'],
|
|
|
|
$contact['name'],
|
|
|
|
$contact['url'],
|
|
|
|
$contact['email'],
|
2020-02-25 16:28:02 -05:00
|
|
|
Temporal::getRelativeDate($contact['created']),
|
|
|
|
Temporal::getRelativeDate($contact['login_date']),
|
2020-04-25 03:29:02 -04:00
|
|
|
Temporal::getRelativeDate($contact['last-item']),
|
2020-02-25 16:16:27 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
$this->out($table->getTable());
|
|
|
|
return true;
|
2020-02-25 16:40:36 -05:00
|
|
|
default:
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return false;
|
2020-02-25 16:16:27 -05:00
|
|
|
}
|
|
|
|
}
|
2020-02-25 16:40:36 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a user based on search parameter
|
|
|
|
*
|
|
|
|
* @return bool True, if the command was successful
|
|
|
|
*/
|
|
|
|
private function searchUser()
|
|
|
|
{
|
|
|
|
$fields = [
|
|
|
|
'uid',
|
|
|
|
'guid',
|
|
|
|
'username',
|
|
|
|
'nickname',
|
|
|
|
'email',
|
|
|
|
'register_date',
|
|
|
|
'login_date',
|
|
|
|
'verified',
|
|
|
|
'blocked',
|
|
|
|
];
|
|
|
|
|
|
|
|
$subCmd = $this->getArgument(1);
|
|
|
|
$param = $this->getArgument(2);
|
|
|
|
|
|
|
|
$table = new Console_Table();
|
|
|
|
$table->setHeaders(['UID', 'GUID', 'Name', 'Nick', 'E-Mail', 'Register', 'Login', 'Verified', 'Blocked']);
|
|
|
|
|
|
|
|
switch ($subCmd) {
|
|
|
|
case 'id':
|
|
|
|
$user = UserModel::getById($param, $fields);
|
|
|
|
break;
|
|
|
|
case 'guid':
|
|
|
|
$user = UserModel::getByGuid($param, $fields);
|
|
|
|
break;
|
|
|
|
case 'email':
|
|
|
|
$user = UserModel::getByEmail($param, $fields);
|
|
|
|
break;
|
|
|
|
case 'nick':
|
|
|
|
$user = UserModel::getByNickname($param, $fields);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$table->addRow($user);
|
|
|
|
$this->out($table->getTable());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-03-30 15:17:12 -04:00
|
|
|
}
|