|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Symfony package. |
| 5 | + * |
| 6 | + * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +namespaceSymfony\Bundle\SecurityBundle\Command; |
| 13 | + |
| 14 | +usePsr\Container\ContainerInterface; |
| 15 | +useSymfony\Bundle\SecurityBundle\Security\FirewallContext; |
| 16 | +useSymfony\Bundle\SecurityBundle\Security\LazyFirewallContext; |
| 17 | +useSymfony\Component\Console\Command\Command; |
| 18 | +useSymfony\Component\Console\Input\InputArgument; |
| 19 | +useSymfony\Component\Console\Input\InputInterface; |
| 20 | +useSymfony\Component\Console\Input\InputOption; |
| 21 | +useSymfony\Component\Console\Output\OutputInterface; |
| 22 | +useSymfony\Component\Console\Style\SymfonyStyle; |
| 23 | +useSymfony\Component\EventDispatcher\EventDispatcherInterface; |
| 24 | +useSymfony\Component\Security\Http\Authenticator\AuthenticatorInterface; |
| 25 | + |
| 26 | +/** |
| 27 | + * @author Timo Bakx <timobakx@gmail.com> |
| 28 | + */ |
| 29 | +finalclass DebugFirewallCommandextends Command |
| 30 | +{ |
| 31 | +protectedstatic$defaultName ='debug:firewall'; |
| 32 | +protectedstatic$defaultDescription ='Displays information about your security firewall(s)'; |
| 33 | + |
| 34 | +private$firewallNames; |
| 35 | +private$contexts; |
| 36 | +private$eventDispatchers; |
| 37 | +private$authenticators; |
| 38 | +private$authenticatorManagerEnabled; |
| 39 | + |
| 40 | +/** |
| 41 | + * @param string[] $firewallNames |
| 42 | + * @param AuthenticatorInterface[][] $authenticators |
| 43 | + */ |
| 44 | +publicfunction__construct(array$firewallNames,ContainerInterface$contexts,ContainerInterface$eventDispatchers,array$authenticators,bool$authenticatorManagerEnabled) |
| 45 | + { |
| 46 | +$this->firewallNames =$firewallNames; |
| 47 | +$this->contexts =$contexts; |
| 48 | +$this->eventDispatchers =$eventDispatchers; |
| 49 | +$this->authenticators =$authenticators; |
| 50 | +$this->authenticatorManagerEnabled =$authenticatorManagerEnabled; |
| 51 | + |
| 52 | +parent::__construct(); |
| 53 | + } |
| 54 | + |
| 55 | +protectedfunctionconfigure():void |
| 56 | + { |
| 57 | +$exampleName =$this->getExampleName(); |
| 58 | + |
| 59 | +$this |
| 60 | + ->setDescription(self::$defaultDescription) |
| 61 | + ->setHelp(<<<EOF |
| 62 | +The <info>%command.name%</info> command displays the firewalls that are configured |
| 63 | +in your application: |
| 64 | +
|
| 65 | + <info>php %command.full_name%</info> |
| 66 | +
|
| 67 | +You can pass a firewall name to display more detailed information about |
| 68 | +a specific firewall: |
| 69 | +
|
| 70 | + <info>php %command.full_name%$exampleName</info> |
| 71 | +
|
| 72 | +To include all events and event listeners for a specific firewall, use the |
| 73 | +<info>events</info> option: |
| 74 | +
|
| 75 | + <info>php %command.full_name% --events$exampleName</info> |
| 76 | +
|
| 77 | +EOF) |
| 78 | + ->setDefinition([ |
| 79 | +newInputArgument('name', InputArgument::OPTIONAL,sprintf('A firewall name (for example "%s")',$exampleName)), |
| 80 | +newInputOption('events',null, InputOption::VALUE_NONE,'Include a list of event listeners (only available in combination with the "name" argument)'), |
| 81 | + ]); |
| 82 | + } |
| 83 | + |
| 84 | +protectedfunctionexecute(InputInterface$input,OutputInterface$output):int |
| 85 | + { |
| 86 | +$io =newSymfonyStyle($input,$output); |
| 87 | + |
| 88 | +$name =$input->getArgument('name'); |
| 89 | + |
| 90 | +if (null ===$name) { |
| 91 | +$this->displayFirewallList($io); |
| 92 | + |
| 93 | +return0; |
| 94 | + } |
| 95 | + |
| 96 | +$serviceId =sprintf('security.firewall.map.context.%s',$name); |
| 97 | + |
| 98 | +if (!$this->contexts->has($serviceId)) { |
| 99 | +$io->error(sprintf('Firewall %s was not found. Available firewalls are: %s',$name,implode(',',$this->firewallNames))); |
| 100 | + |
| 101 | +return1; |
| 102 | + } |
| 103 | + |
| 104 | +/** @var FirewallContext $context */ |
| 105 | +$context =$this->contexts->get($serviceId); |
| 106 | + |
| 107 | +$io->title(sprintf('Firewall "%s"',$name)); |
| 108 | + |
| 109 | +$this->displayFirewallSummary($name,$context,$io); |
| 110 | + |
| 111 | +$this->displaySwitchUser($context,$io); |
| 112 | + |
| 113 | +if ($input->getOption('events')) { |
| 114 | +$this->displayEventListeners($name,$context,$io); |
| 115 | + } |
| 116 | + |
| 117 | +if ($this->authenticatorManagerEnabled) { |
| 118 | +$this->displayAuthenticators($name,$io); |
| 119 | + } |
| 120 | + |
| 121 | +return0; |
| 122 | + } |
| 123 | + |
| 124 | +protectedfunctiondisplayFirewallList(SymfonyStyle$io):void |
| 125 | + { |
| 126 | +$io->title('Firewalls'); |
| 127 | +$io->text('The following firewalls are defined:'); |
| 128 | + |
| 129 | +$io->listing($this->firewallNames); |
| 130 | + |
| 131 | +$io->comment(sprintf('To view details of a specific firewall, re-run this command with a firewall name. (e.g. <comment>debug:firewall %s</comment>)',$this->getExampleName())); |
| 132 | + } |
| 133 | + |
| 134 | +protectedfunctiondisplayFirewallSummary(string$name,FirewallContext$context,SymfonyStyle$io):void |
| 135 | + { |
| 136 | +if (null ===$context->getConfig()) { |
| 137 | +return; |
| 138 | + } |
| 139 | + |
| 140 | +$rows = [ |
| 141 | + ['Name',$name], |
| 142 | + ['Context',$context->getConfig()->getContext()], |
| 143 | + ['Lazy',$contextinstanceof LazyFirewallContext ?'Yes' :'No'], |
| 144 | + ['Stateless',$context->getConfig()->isStateless() ?'Yes' :'No'], |
| 145 | + ['User Checker',$context->getConfig()->getUserChecker()], |
| 146 | + ['Provider',$context->getConfig()->getProvider()], |
| 147 | + ['Entry Point',$context->getConfig()->getEntryPoint()], |
| 148 | + ['Access Denied URL',$context->getConfig()->getAccessDeniedUrl()], |
| 149 | + ['Access Denied Handler',$context->getConfig()->getAccessDeniedHandler()], |
| 150 | + ]; |
| 151 | + |
| 152 | +$io->table( |
| 153 | + ['Option','Value'], |
| 154 | +$rows |
| 155 | + ); |
| 156 | + } |
| 157 | + |
| 158 | +privatefunctiondisplaySwitchUser(FirewallContext$context,SymfonyStyle$io) |
| 159 | + { |
| 160 | +if ((null ===$config =$context->getConfig()) || (null ===$switchUser =$config->getSwitchUser())) { |
| 161 | +return; |
| 162 | + } |
| 163 | + |
| 164 | +$io->section('User switching'); |
| 165 | + |
| 166 | +$io->table(['Option','Value'], [ |
| 167 | + ['Parameter',$switchUser['parameter'] ??''], |
| 168 | + ['Provider',$switchUser['provider'] ??$config->getProvider()], |
| 169 | + ['User Role',$switchUser['role'] ??''], |
| 170 | + ]); |
| 171 | + } |
| 172 | + |
| 173 | +protectedfunctiondisplayEventListeners(string$name,FirewallContext$context,SymfonyStyle$io):void |
| 174 | + { |
| 175 | +$io->title(sprintf('Event listeners for firewall "%s"',$name)); |
| 176 | + |
| 177 | +$dispatcherId =sprintf('security.event_dispatcher.%s',$name); |
| 178 | + |
| 179 | +if (!$this->eventDispatchers->has($dispatcherId)) { |
| 180 | +$io->text('No event dispatcher has been registered for this firewall.'); |
| 181 | + |
| 182 | +return; |
| 183 | + } |
| 184 | + |
| 185 | +/** @var EventDispatcherInterface $dispatcher */ |
| 186 | +$dispatcher =$this->eventDispatchers->get($dispatcherId); |
| 187 | + |
| 188 | +foreach ($dispatcher->getListeners()as$event =>$listeners) { |
| 189 | +$io->section(sprintf('"%s" event',$event)); |
| 190 | + |
| 191 | +$rows = []; |
| 192 | +foreach ($listenersas$order =>$listener) { |
| 193 | +$rows[] = [ |
| 194 | +sprintf('#%d',$order +1), |
| 195 | +$this->formatCallable($listener), |
| 196 | +$dispatcher->getListenerPriority($event,$listener), |
| 197 | + ]; |
| 198 | + } |
| 199 | + |
| 200 | +$io->table( |
| 201 | + ['Order','Callable','Priority'], |
| 202 | +$rows |
| 203 | + ); |
| 204 | + } |
| 205 | + } |
| 206 | + |
| 207 | +privatefunctiondisplayAuthenticators(string$name,SymfonyStyle$io):void |
| 208 | + { |
| 209 | +$io->title(sprintf('Authenticators for firewall "%s"',$name)); |
| 210 | + |
| 211 | +$authenticators =$this->authenticators[$name] ?? []; |
| 212 | + |
| 213 | +if (0 ===\count($authenticators)) { |
| 214 | +$io->text('No authenticators have been registered for this firewall.'); |
| 215 | + |
| 216 | +return; |
| 217 | + } |
| 218 | + |
| 219 | +$io->table( |
| 220 | + ['Classname'], |
| 221 | +array_map( |
| 222 | +staticfunction ($authenticator) { |
| 223 | +return [ |
| 224 | +\get_class($authenticator), |
| 225 | + ]; |
| 226 | + }, |
| 227 | +$authenticators |
| 228 | + ) |
| 229 | + ); |
| 230 | + } |
| 231 | + |
| 232 | +privatefunctionformatCallable($callable):string |
| 233 | + { |
| 234 | +if (\is_array($callable)) { |
| 235 | +if (\is_object($callable[0])) { |
| 236 | +returnsprintf('%s::%s()',\get_class($callable[0]),$callable[1]); |
| 237 | + } |
| 238 | + |
| 239 | +returnsprintf('%s::%s()',$callable[0],$callable[1]); |
| 240 | + } |
| 241 | + |
| 242 | +if (\is_string($callable)) { |
| 243 | +returnsprintf('%s()',$callable); |
| 244 | + } |
| 245 | + |
| 246 | +if ($callableinstanceof \Closure) { |
| 247 | +$r =new \ReflectionFunction($callable); |
| 248 | +if (false !==strpos($r->name,'{closure}')) { |
| 249 | +return'Closure()'; |
| 250 | + } |
| 251 | +if ($class =$r->getClosureScopeClass()) { |
| 252 | +returnsprintf('%s::%s()',$class->name,$r->name); |
| 253 | + } |
| 254 | + |
| 255 | +return$r->name.'()'; |
| 256 | + } |
| 257 | + |
| 258 | +if (method_exists($callable,'__invoke')) { |
| 259 | +returnsprintf('%s::__invoke()',\get_class($callable)); |
| 260 | + } |
| 261 | + |
| 262 | +thrownew \InvalidArgumentException('Callable is not describable.'); |
| 263 | + } |
| 264 | + |
| 265 | +privatefunctiongetExampleName():string |
| 266 | + { |
| 267 | +$name ='main'; |
| 268 | + |
| 269 | +if (!\in_array($name,$this->firewallNames,true)) { |
| 270 | +$name =reset($this->firewallNames); |
| 271 | + } |
| 272 | + |
| 273 | +return$name; |
| 274 | + } |
| 275 | +} |