mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-17 03:05:19 +00:00
Add show user command
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
a687c8d915
commit
d143fa243d
2 changed files with 172 additions and 0 deletions
77
src/Wallabag/CoreBundle/Command/ShowUserCommand.php
Normal file
77
src/Wallabag/CoreBundle/Command/ShowUserCommand.php
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Wallabag\CoreBundle\Command;
|
||||||
|
|
||||||
|
use Doctrine\ORM\NoResultException;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
|
||||||
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Wallabag\UserBundle\Entity\User;
|
||||||
|
|
||||||
|
class ShowUserCommand extends ContainerAwareCommand
|
||||||
|
{
|
||||||
|
/** @var OutputInterface */
|
||||||
|
protected $output;
|
||||||
|
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('wallabag:user:show')
|
||||||
|
->setDescription('Show user details')
|
||||||
|
->setHelp('This command shows the details for an user')
|
||||||
|
->addArgument(
|
||||||
|
'username',
|
||||||
|
InputArgument::REQUIRED,
|
||||||
|
'User to show details for'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function execute(InputInterface $input, OutputInterface $output)
|
||||||
|
{
|
||||||
|
$this->output = $output;
|
||||||
|
|
||||||
|
$username = $input->getArgument('username');
|
||||||
|
|
||||||
|
try {
|
||||||
|
$user = $this->getUser($username);
|
||||||
|
$this->showUser($user);
|
||||||
|
} catch (NoResultException $e) {
|
||||||
|
$output->writeln(sprintf('<error>User "%s" not found.</error>', $username));
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param User $user
|
||||||
|
*/
|
||||||
|
private function showUser(User $user)
|
||||||
|
{
|
||||||
|
$this->output->writeln(sprintf('Username : %s', $user->getUsername()));
|
||||||
|
$this->output->writeln(sprintf('Email : %s', $user->getEmail()));
|
||||||
|
$this->output->writeln(sprintf('Display name : %s', $user->getName()));
|
||||||
|
$this->output->writeln(sprintf('Creation date : %s', $user->getCreatedAt() !== null ? $user->getCreatedAt()->format('Y-m-d H:i:s') : 'false'));
|
||||||
|
$this->output->writeln(sprintf('Last login : %s', $user->getLastLogin() !== null ? $user->getLastLogin()->format('Y-m-d H:i:s') : 'false'));
|
||||||
|
$this->output->writeln(sprintf('2FA activated: %s', $user->isTwoFactorAuthentication() ? 'true' : 'false'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches a user from its username.
|
||||||
|
*
|
||||||
|
* @param string $username
|
||||||
|
*
|
||||||
|
* @return \Wallabag\UserBundle\Entity\User
|
||||||
|
*/
|
||||||
|
private function getUser($username)
|
||||||
|
{
|
||||||
|
return $this->getDoctrine()->getRepository('WallabagUserBundle:User')->findOneByUserName($username);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getDoctrine()
|
||||||
|
{
|
||||||
|
return $this->getContainer()->get('doctrine');
|
||||||
|
}
|
||||||
|
}
|
95
tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
Normal file
95
tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Wallabag\CoreBundle\Command;
|
||||||
|
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
use Wallabag\CoreBundle\Command\CleanDuplicatesCommand;
|
||||||
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
||||||
|
use Wallabag\CoreBundle\Command\ShowUserCommand;
|
||||||
|
use Wallabag\CoreBundle\Entity\Entry;
|
||||||
|
use Wallabag\UserBundle\Entity\User;
|
||||||
|
|
||||||
|
class ShowUserCommandTest extends WallabagCoreTestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @expectedException \Symfony\Component\Console\Exception\RuntimeException
|
||||||
|
* @expectedExceptionMessage Not enough arguments
|
||||||
|
*/
|
||||||
|
public function testRunShowUserCommandWithoutUsername()
|
||||||
|
{
|
||||||
|
$application = new Application($this->getClient()->getKernel());
|
||||||
|
$application->add(new ShowUserCommand());
|
||||||
|
|
||||||
|
$command = $application->find('wallabag:user:show');
|
||||||
|
|
||||||
|
$tester = new CommandTester($command);
|
||||||
|
$tester->execute([
|
||||||
|
'command' => $command->getName(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRunShowUserCommandWithBadUsername()
|
||||||
|
{
|
||||||
|
$application = new Application($this->getClient()->getKernel());
|
||||||
|
$application->add(new ShowUserCommand());
|
||||||
|
|
||||||
|
$command = $application->find('wallabag:user:show');
|
||||||
|
|
||||||
|
$tester = new CommandTester($command);
|
||||||
|
$tester->execute([
|
||||||
|
'command' => $command->getName(),
|
||||||
|
'username' => 'unknown',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->assertContains('User "unknown" not found', $tester->getDisplay());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRunShowUserCommandForUser()
|
||||||
|
{
|
||||||
|
$application = new Application($this->getClient()->getKernel());
|
||||||
|
$application->add(new ShowUserCommand());
|
||||||
|
|
||||||
|
$command = $application->find('wallabag:user:show');
|
||||||
|
|
||||||
|
$tester = new CommandTester($command);
|
||||||
|
$tester->execute([
|
||||||
|
'command' => $command->getName(),
|
||||||
|
'username' => 'admin',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->assertContains('Username : admin', $tester->getDisplay());
|
||||||
|
$this->assertContains('Email : bigboss@wallabag.org', $tester->getDisplay());
|
||||||
|
$this->assertContains('Display name : Big boss', $tester->getDisplay());
|
||||||
|
$this->assertContains('2FA activated: false', $tester->getDisplay());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testShowUser()
|
||||||
|
{
|
||||||
|
$client = $this->getClient();
|
||||||
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
||||||
|
|
||||||
|
$this->logInAs('admin');
|
||||||
|
|
||||||
|
/** @var User $user */
|
||||||
|
$user = $em->getRepository('WallabagUserBundle:User')->findOneById($this->getLoggedInUserId());
|
||||||
|
|
||||||
|
$user->setName('Bug boss');
|
||||||
|
$em->persist($user);
|
||||||
|
|
||||||
|
$em->flush();
|
||||||
|
|
||||||
|
$application = new Application($this->getClient()->getKernel());
|
||||||
|
$application->add(new ShowUserCommand());
|
||||||
|
|
||||||
|
$command = $application->find('wallabag:user:show');
|
||||||
|
|
||||||
|
$tester = new CommandTester($command);
|
||||||
|
$tester->execute([
|
||||||
|
'command' => $command->getName(),
|
||||||
|
'username' => 'admin',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->assertContains('Display name : Bug boss', $tester->getDisplay());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue