May be it is not good decision, but it is fast and should work.
You can write custom UrlGenerator that will append token to urls
namespace nnn;
class UrlGenerator extends \Symfony\Component\Routing\Generator\UrlGenerator
{
protected $csrfToken;
protected function doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, array $requiredSchemes = array())
{
$url = parent::doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, $requiredSchemes);
if (isset($this->csrfToken)) {
$url = rtrim($url, '/') . '/key/' . $this->csrfToken;
}
return $url;
}
}
and UrlMatcher that will cut token from urls
namespace nnn;
class RedirectableUrlMatcher extends \Silex\RedirectableUrlMatcher
{
protected function matchCollection($pathinfo, \Symfony\Component\Routing\RouteCollection $routes)
{
$pathinfo = preg_replace('~/key/.+?(/|$)~', '$1', $pathinfo);
if ($pathinfo == '') $pathinfo = '/';
return parent::matchCollection($pathinfo, $routes);
}
}
and configure application
$app['url_generator'] = $app->share(function ($app) {
$app->flush();
$urlGenerator = new \nnn\UrlGenerator($app['routes'], $app['request_context']);
$urlGenerator->setCsrfToken('1234567890');
return $urlGenerator;
});
$app['url_matcher'] = $app->share(function () use ($app) {
return new \nnn\RedirectableUrlMatcher($app['routes'], $app['request_context']);
});
$app['dispatcher']->addListener(\Symfony\Component\HttpKernel\KernelEvents::REQUEST, function($event) use ($app) {
$request = $event->getRequest();
$path = $request->getPathInfo();
if (\preg_match('~/key/(.+?)(?:/|$)~', $path, $matches)) {
$request->attributes->set('_csrfToken', $matches[1]);
}
}, 1024);
$app->run();
Token will be accessible in controllers through $app['request']->get('_csrfToken')