diff -r 806e57d67020 -r e54dfe4d0b2b vendor/bundles/FOS/UserBundle/Command/ActivateUserCommand.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/bundles/FOS/UserBundle/Command/ActivateUserCommand.php Fri Sep 30 11:24:53 2011 +0200 @@ -0,0 +1,78 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace FOS\UserBundle\Command; + +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 Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; +use FOS\UserBundle\Model\User; + +/** + * @author Antoine Hérault + */ +class ActivateUserCommand extends ContainerAwareCommand +{ + /** + * @see Command + */ + protected function configure() + { + $this + ->setName('fos:user:activate') + ->setDescription('Activate a user') + ->setDefinition(array( + new InputArgument('username', InputArgument::REQUIRED, 'The username'), + )) + ->setHelp(<<fos:user:activate command activates a user (so they will be able to log in): + + php app/console fos:user:activate matthieu +EOT + ); + } + + /** + * @see Command + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $username = $input->getArgument('username'); + + $manipulator = $this->getContainer()->get('fos_user.util.user_manipulator'); + $manipulator->activate($username); + + $output->writeln(sprintf('User "%s" has been activated.', $username)); + } + + /** + * @see Command + */ + protected function interact(InputInterface $input, OutputInterface $output) + { + if (!$input->getArgument('username')) { + $username = $this->getHelper('dialog')->askAndValidate( + $output, + 'Please choose a username:', + function($username) + { + if (empty($username)) { + throw new \Exception('Username can not be empty'); + } + return $username; + } + ); + $input->setArgument('username', $username); + } + } +}