Вход Регистрация
Файл: vendor/symfony/http-kernel/EventListener/FragmentListener.php
Строк: 147
<?php

/*
 * This file is part of the Symfony 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 SymfonyComponentHttpKernelEventListener;

use 
SymfonyComponentEventDispatcherEventSubscriberInterface;
use 
SymfonyComponentHttpFoundationRequest;
use 
SymfonyComponentHttpFoundationUriSigner;
use 
SymfonyComponentHttpKernelEventRequestEvent;
use 
SymfonyComponentHttpKernelExceptionAccessDeniedHttpException;
use 
SymfonyComponentHttpKernelKernelEvents;

/**
 * Handles content fragments represented by special URIs.
 *
 * All URL paths starting with /_fragment are handled as
 * content fragments by this listener.
 *
 * Throws an AccessDeniedHttpException exception if the request
 * is not signed or if it is not an internal sub-request.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 *
 * @final
 */
class FragmentListener implements EventSubscriberInterface
{
    private 
UriSigner $signer;
    private 
string $fragmentPath;

    
/**
     * @param string $fragmentPath The path that triggers this listener
     */
    
public function __construct(UriSigner $signerstring $fragmentPath '/_fragment')
    {
        
$this->signer $signer;
        
$this->fragmentPath $fragmentPath;
    }

    
/**
     * Fixes request attributes when the path is '/_fragment'.
     *
     * @throws AccessDeniedHttpException if the request does not come from a trusted IP
     */
    
public function onKernelRequest(RequestEvent $event): void
    
{
        
$request $event->getRequest();

        if (
$this->fragmentPath !== rawurldecode($request->getPathInfo())) {
            return;
        }

        if (
$request->attributes->has('_controller')) {
            
// Is a sub-request: no need to parse _path but it should still be removed from query parameters as below.
            
$request->query->remove('_path');

            return;
        }

        if (
$event->isMainRequest()) {
            
$this->validateRequest($request);
        }

        
parse_str($request->query->get('_path'''), $attributes);
        
$attributes['_check_controller_is_allowed'] = -1// @deprecated, switch to true in Symfony 7
        
$request->attributes->add($attributes);
        
$request->attributes->set('_route_params'array_replace($request->attributes->get('_route_params', []), $attributes));
        
$request->query->remove('_path');
    }

    protected function 
validateRequest(Request $request): void
    
{
        
// is the Request safe?
        
if (!$request->isMethodSafe()) {
            throw new 
AccessDeniedHttpException();
        }

        
// is the Request signed?
        
if ($this->signer->checkRequest($request)) {
            return;
        }

        throw new 
AccessDeniedHttpException();
    }

    public static function 
getSubscribedEvents(): array
    {
        return [
            
KernelEvents::REQUEST => [['onKernelRequest'48]],
        ];
    }
}
Онлайн: 0
Реклама