-
-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathMakeVoter.php
More file actions
87 lines (75 loc) · 2.69 KB
/
MakeVoter.php
File metadata and controls
87 lines (75 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/*
* This file is part of the Symfony MakerBundle package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\MakerBundle\Maker;
use Symfony\Bundle\MakerBundle\ConsoleStyle;
use Symfony\Bundle\MakerBundle\DependencyBuilder;
use Symfony\Bundle\MakerBundle\Generator;
use Symfony\Bundle\MakerBundle\InputConfiguration;
use Symfony\Bundle\MakerBundle\Util\ClassSource\Model\ClassData;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Vote;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* @author Javier Eguiluz <javier.eguiluz@gmail.com>
* @author Ryan Weaver <weaverryan@gmail.com>
*/
final class MakeVoter extends AbstractMaker
{
public static function getCommandName(): string
{
return 'make:voter';
}
public static function getCommandDescription(): string
{
return 'Create a new security voter class';
}
public function configureCommand(Command $command, InputConfiguration $inputConfig): void
{
$command
->addArgument('name', InputArgument::OPTIONAL, 'The name of the security voter class (e.g. <fg=yellow>BlogPostVoter</>)')
->setHelp($this->getHelpFileContents('MakeVoter.txt'))
;
}
public function generate(InputInterface $input, ConsoleStyle $io, Generator $generator): void
{
$voterClassData = ClassData::create(
class: \sprintf('Security\Voter\%s', $input->getArgument('name')),
suffix: 'Voter',
extendsClass: Voter::class,
useStatements: [
TokenInterface::class,
Voter::class,
UserInterface::class,
Vote::class,
]
);
$generator->generateClassFromClassData(
$voterClassData,
'security/Voter.tpl.php',
);
$generator->writeChanges();
$this->writeSuccessMessage($io);
$io->text([
'Next: Open your voter and add your logic.',
'Find the documentation at <fg=yellow>https://symfony.com/doc/current/security/voters.html</>',
]);
}
public function configureDependencies(DependencyBuilder $dependencies): void
{
$dependencies->addClassDependency(
Voter::class,
'security'
);
}
}