-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathControllerInjectorsWarmer.php
105 lines (91 loc) · 3.63 KB
/
ControllerInjectorsWarmer.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
<?php
/*
* Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\DiExtraBundle\HttpKernel;
use Symfony\Component\Finder\Finder;
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate;
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface;
use Symfony\Component\HttpKernel\KernelInterface;
class ControllerInjectorsWarmer implements CacheWarmerInterface
{
private $kernel;
private $controllerResolver;
private $blackListedControllerFiles;
private $scanAllBundles;
private $scanBundles;
public function __construct(
KernelInterface $kernel,
ControllerResolver $resolver,
array $blackListedControllerFiles,
$scanAllBundles = true,
array $scanBundles = array()
) {
$this->kernel = $kernel;
$this->controllerResolver = $resolver;
$this->blackListedControllerFiles = $blackListedControllerFiles;
$this->scanAllBundles = $scanAllBundles;
$this->scanBundles = $scanBundles;
}
public function warmUp($cacheDir)
{
// This avoids class-being-declared twice errors when the cache:clear
// command is called. The controllers are not pre-generated in that case.
$suffix = defined('Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate::NEW_CACHE_FOLDER_SUFFIX')
? CacheWarmerAggregate::NEW_CACHE_FOLDER_SUFFIX
: '_new';
if (basename($cacheDir) === $this->kernel->getEnvironment().$suffix) {
return;
}
$classes = $this->findControllerClasses();
foreach ($classes as $class) {
$this->controllerResolver->createInjector($class);
}
}
public function isOptional()
{
return false;
}
private function findControllerClasses()
{
$dirs = array();
foreach ($this->kernel->getBundles() as $bundle) {
if (!$this->scanAllBundles && !in_array($bundle->getName(), $this->scanBundles, true)) {
continue;
}
if (!is_dir($controllerDir = $bundle->getPath().'/Controller')) {
continue;
}
$dirs[] = $controllerDir;
}
// Combination of scanAllBundles/scanBundles can lead to empty dirs.
// Only search for controllers if we have at least one directory,
// otherwise the finder will throw an exception.
if (!empty($dirs)) {
foreach (Finder::create()->name('*Controller.php')->in($dirs)->files() as $file) {
$filename = $file->getRealPath();
if (!in_array($filename, $this->blackListedControllerFiles)) {
require_once $filename;
}
}
}
// It is not so important if these controllers never can be reached with
// the current configuration nor whether they are actually controllers.
// Important is only that we do not miss any classes.
return array_filter(get_declared_classes(), function ($name) {
return preg_match('/Controller\\\(.+)Controller$/', $name) > 0;
});
}
}