Last active
May 5, 2016 07:33
-
-
Save alexbonhomme/70672ebeec909c91eef46ee6c0826543 to your computer and use it in GitHub Desktop.
Adds command in Symfony2 console to generate OAuth client with given grants.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Usage: php app/console acme:oauth-server:client:create --grant-type="password" --grant-type="http://my.custom/grants/access" | |
*/ | |
namespace AppBundle\Command; | |
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
class CreateClientCommand extends ContainerAwareCommand | |
{ | |
protected function configure() | |
{ | |
$this | |
->setName('acme:oauth-server:client:create') | |
->setDescription('Creates a new client') | |
->addOption( | |
'redirect-uri', | |
null, | |
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, | |
'Sets redirect uri for client. Use this option multiple times to set multiple redirect URIs.', | |
null | |
) | |
->addOption( | |
'grant-type', | |
null, | |
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, | |
'Sets allowed grant type for client. Use this option multiple times to set multiple grant types..', | |
null | |
) | |
->setHelp( | |
<<<EOT | |
The <info>%command.name%</info>command creates a new client. | |
<info>php %command.full_name% [--redirect-uri=...] [--grant-type=...] name</info> | |
EOT | |
); | |
} | |
protected function execute(InputInterface $input, OutputInterface $output) | |
{ | |
$clientManager = $this->getContainer()->get('fos_oauth_server.client_manager.default'); | |
$client = $clientManager->createClient(); | |
$client->setRedirectUris($input->getOption('redirect-uri')); | |
$client->setAllowedGrantTypes($input->getOption('grant-type')); | |
$clientManager->updateClient($client); | |
$output->writeln( | |
sprintf( | |
'Added a new client with public id <info>%s</info>, secret <info>%s</info>', | |
$client->getPublicId(), | |
$client->getSecret() | |
) | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment