-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathContainerInterfaceUnknownServiceRule.php
102 lines (87 loc) · 3.06 KB
/
ContainerInterfaceUnknownServiceRule.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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Symfony;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\PrettyPrinter\Standard;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleError;
use PHPStan\Symfony\ServiceMap;
use PHPStan\TrinaryLogic;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Symfony\Helper;
use function sprintf;
/**
* @implements Rule<MethodCall>
*/
final class ContainerInterfaceUnknownServiceRule implements Rule
{
/** @var ServiceMap */
private $serviceMap;
/** @var Standard */
private $printer;
public function __construct(ServiceMap $symfonyServiceMap, Standard $printer)
{
$this->serviceMap = $symfonyServiceMap;
$this->printer = $printer;
}
public function getNodeType(): string
{
return MethodCall::class;
}
/**
* @return (string|RuleError)[] errors
*/
public function processNode(Node $node, Scope $scope): array
{
if (!$node->name instanceof Node\Identifier) {
return [];
}
if ($node->name->name !== 'get' || !isset($node->getArgs()[0])) {
return [];
}
$argType = $scope->getType($node->var);
$isContainerBagType = (new ObjectType('Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface'))->isSuperTypeOf($argType);
if ($isContainerBagType->yes()) {
return [];
}
$isControllerType = (new ObjectType('Symfony\Bundle\FrameworkBundle\Controller\Controller'))->isSuperTypeOf($argType);
$isAbstractControllerType = (new ObjectType('Symfony\Bundle\FrameworkBundle\Controller\AbstractController'))->isSuperTypeOf($argType);
$isContainerType = (new ObjectType('Symfony\Component\DependencyInjection\ContainerInterface'))->isSuperTypeOf($argType);
$isPsrContainerType = (new ObjectType('Psr\Container\ContainerInterface'))->isSuperTypeOf($argType);
if (
!$isControllerType->yes()
&& !$isAbstractControllerType->yes()
&& !$isContainerType->yes()
&& !$isPsrContainerType->yes()
) {
return [];
}
$serviceId = $this->serviceMap::getServiceIdFromNode($node->getArgs()[0]->value, $scope);
if ($serviceId !== null) {
$service = $this->serviceMap->getService($serviceId);
$serviceIdType = $scope->getType($node->getArgs()[0]->value);
if (
$service === null &&
!$this->isContainerCallInServiceSubscriber($isContainerType, $isPsrContainerType, $scope) &&
!$scope->getType(Helper::createMarkerNode($node->var, $serviceIdType, $this->printer))->equals($serviceIdType)
) {
return [sprintf('Service "%s" is not registered in the container.', $serviceId)];
}
}
return [];
}
private function isContainerCallInServiceSubscriber(TrinaryLogic $isContainerType, TrinaryLogic $isPsrContainerType, Scope $scope): bool
{
$scopeClassReflection = $scope->getClassReflection();
return $scopeClassReflection !== null &&
(
$scopeClassReflection->implementsInterface('Symfony\Contracts\Service\ServiceSubscriberInterface') ||
$scopeClassReflection->implementsInterface('Symfony\Component\DependencyInjection\ServiceSubscriberInterface')
) &&
(
$isContainerType->yes() ||
$isPsrContainerType->yes()
);
}
}