-
Notifications
You must be signed in to change notification settings - Fork 702
/
AllowedMethodsRouterLoader.php
107 lines (90 loc) · 2.88 KB
/
AllowedMethodsRouterLoader.php
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/*
* This file is part of the FOSRestBundle package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\RestBundle\Response\AllowedMethodsLoader;
use Symfony\Component\Routing\RouterInterface;
use Symfony\Component\Config\ConfigCache;
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface;
/**
* AllowedMethodsRouterLoader implementation using RouterInterface to fetch
* allowed http methods
*
* @author Boris Guéry <[email protected]>
*/
class AllowedMethodsRouterLoader implements AllowedMethodsLoaderInterface, CacheWarmerInterface
{
private $router;
private $cache;
/**
* Constructor
*
* @param RouterInterface $router
* @param string $cacheDir
* @param bool $isDebug Kernel debug flag
*/
public function __construct(RouterInterface $router, $cacheDir, $isDebug)
{
$this->router = $router;
$this->cache = new ConfigCache(sprintf('%s/allowed_methods.cache.php', $cacheDir), $isDebug);
}
/**
* {@inheritdoc}
*/
public function getAllowedMethods()
{
if (!$this->cache->isFresh()) {
$this->warmUp(null);
}
return require $this->cache;
}
/**
* {@inheritdoc}
*/
public function isOptional()
{
return true;
}
/**
* {@inheritdoc}
*/
public function warmUp($cacheDir)
{
$processedRoutes = array();
$routeCollection = $this->router->getRouteCollection();
foreach ($routeCollection->all() as $name => $route) {
if (!isset($processedRoutes[$route->getPath()])) {
$processedRoutes[$route->getPath()] = array(
'methods' => array(),
'names' => array(),
);
}
$processedRoutes[$route->getPath()]['names'][] = $name;
$requirements = $route->getRequirements();
if (isset($requirements['_method'])) {
$methods = explode('|', $requirements['_method']);
$processedRoutes[$route->getPath()]['methods'] = array_merge(
$processedRoutes[$route->getPath()]['methods'],
$methods
);
}
}
$allowedMethods = array();
foreach ($processedRoutes as $processedRoute) {
if (count($processedRoute['methods']) > 0) {
foreach ($processedRoute['names'] as $name) {
$allowedMethods[$name] = array_unique($processedRoute['methods']);
}
}
}
$this->cache->write(
sprintf('<?php return %s;', var_export($allowedMethods, true)),
$routeCollection->getResources()
);
}
}