Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Pagekit\Routing\Event; use Pagekit\Event\EventSubscriberInterface; use P..

Decoded Output download

<?php

namespace Pagekit\Routing\Event;

use Pagekit\Event\EventSubscriberInterface;
use Pagekit\Kernel\Exception\MethodNotAllowedException as MethodNotAllowedHttpException;
use Pagekit\Kernel\Exception\NotFoundException as NotFoundHttpException;
use Psr\Log\LoggerInterface;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
use Symfony\Component\Routing\Matcher\UrlMatcherInterface;

class RouterListener implements EventSubscriberInterface
{
    protected $matcher;
    protected $logger;

    /**
     * Constructor.
     *
     * @param  UrlMatcherInterface|RequestMatcherInterface $matcher
     * @param  LoggerInterface|null                        $logger
     * @throws \InvalidArgumentException
     */
    public function __construct($matcher, LoggerInterface $logger = null)
    {
        if (!$matcher instanceof UrlMatcherInterface && !$matcher instanceof RequestMatcherInterface) {
            throw new \InvalidArgumentException('Matcher must either implement UrlMatcherInterface or RequestMatcherInterface.');
        }

        $this->matcher = $matcher;
        $this->logger  = $logger;
    }

    public function onRequest($event, $request)
    {
        if ($request->attributes->has('_controller')) {
            return;
        }

        try {

            if ($this->matcher instanceof RequestMatcherInterface) {
                $parameters = $this->matcher->matchRequest($request);
            } else {
                $parameters = $this->matcher->match($request->getPathInfo());
            }

            if (null !== $this->logger) {
                $this->logger->info(sprintf('Matched route "%s" (parameters: %s)', $parameters['_route'], $this->parametersToString($parameters)));
            }

            $request->attributes->add($parameters);
            unset($parameters['_route'], $parameters['_controller']);
            $request->attributes->set('_route_params', $parameters);

        } catch (ResourceNotFoundException $e) {

            $message = sprintf('No route found for "%s %s"', $request->getMethod(), $request->getPathInfo());

            if ($referer = $request->headers->get('referer')) {
                $message .= sprintf(' (from "%s")', $referer);
            }

            throw new NotFoundHttpException(htmlspecialchars($message), $e);

        } catch (MethodNotAllowedException $e) {

            $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getPathInfo(), implode(', ', $e->getAllowedMethods()));

            throw new MethodNotAllowedHttpException(htmlspecialchars($message), $e);
        }
    }

    public function parametersToString(array $parameters)
    {
        $pieces = [];

        foreach ($parameters as $key => $val) {
            $pieces[] = sprintf('"%s": "%s"', $key, (is_string($val) ? $val : json_encode($val)));
        }

        return implode(', ', $pieces);
    }

    public function subscribe()
    {
        return [
            'request' => ['onRequest', 100]
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Routing\Event;

use Pagekit\Event\EventSubscriberInterface;
use Pagekit\Kernel\Exception\MethodNotAllowedException as MethodNotAllowedHttpException;
use Pagekit\Kernel\Exception\NotFoundException as NotFoundHttpException;
use Psr\Log\LoggerInterface;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
use Symfony\Component\Routing\Matcher\UrlMatcherInterface;

class RouterListener implements EventSubscriberInterface
{
    protected $matcher;
    protected $logger;

    /**
     * Constructor.
     *
     * @param  UrlMatcherInterface|RequestMatcherInterface $matcher
     * @param  LoggerInterface|null                        $logger
     * @throws \InvalidArgumentException
     */
    public function __construct($matcher, LoggerInterface $logger = null)
    {
        if (!$matcher instanceof UrlMatcherInterface && !$matcher instanceof RequestMatcherInterface) {
            throw new \InvalidArgumentException('Matcher must either implement UrlMatcherInterface or RequestMatcherInterface.');
        }

        $this->matcher = $matcher;
        $this->logger  = $logger;
    }

    public function onRequest($event, $request)
    {
        if ($request->attributes->has('_controller')) {
            return;
        }

        try {

            if ($this->matcher instanceof RequestMatcherInterface) {
                $parameters = $this->matcher->matchRequest($request);
            } else {
                $parameters = $this->matcher->match($request->getPathInfo());
            }

            if (null !== $this->logger) {
                $this->logger->info(sprintf('Matched route "%s" (parameters: %s)', $parameters['_route'], $this->parametersToString($parameters)));
            }

            $request->attributes->add($parameters);
            unset($parameters['_route'], $parameters['_controller']);
            $request->attributes->set('_route_params', $parameters);

        } catch (ResourceNotFoundException $e) {

            $message = sprintf('No route found for "%s %s"', $request->getMethod(), $request->getPathInfo());

            if ($referer = $request->headers->get('referer')) {
                $message .= sprintf(' (from "%s")', $referer);
            }

            throw new NotFoundHttpException(htmlspecialchars($message), $e);

        } catch (MethodNotAllowedException $e) {

            $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getPathInfo(), implode(', ', $e->getAllowedMethods()));

            throw new MethodNotAllowedHttpException(htmlspecialchars($message), $e);
        }
    }

    public function parametersToString(array $parameters)
    {
        $pieces = [];

        foreach ($parameters as $key => $val) {
            $pieces[] = sprintf('"%s": "%s"', $key, (is_string($val) ? $val : json_encode($val)));
        }

        return implode(', ', $pieces);
    }

    public function subscribe()
    {
        return [
            'request' => ['onRequest', 100]
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 0b72896e0ffa4b5b107eccec3c045ec3
Eval Count 0
Decode Time 76 ms