-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathContainerInterfacePrivateServiceRule.php
86 lines (71 loc) · 2.68 KB
/
ContainerInterfacePrivateServiceRule.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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Symfony;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\ShouldNotHappenException;
use PHPStan\Symfony\ServiceMap;
use PHPStan\Type\ObjectType;
use function sprintf;
/**
* @implements Rule<MethodCall>
*/
final class ContainerInterfacePrivateServiceRule implements Rule
{
/** @var ServiceMap */
private $serviceMap;
public function __construct(ServiceMap $symfonyServiceMap)
{
$this->serviceMap = $symfonyServiceMap;
}
public function getNodeType(): string
{
return MethodCall::class;
}
/**
* @param \PhpParser\Node $node
* @param \PHPStan\Analyser\Scope $scope
* @return (string|\PHPStan\Rules\RuleError)[] errors
*/
public function processNode(Node $node, Scope $scope): array
{
if (!$node instanceof MethodCall) {
throw new ShouldNotHappenException();
}
if (!$node->name instanceof Node\Identifier) {
return [];
}
if ($node->name->name !== 'get' || !isset($node->args[0])) {
return [];
}
$argType = $scope->getType($node->var);
$isTestContainerType = (new ObjectType('Symfony\Bundle\FrameworkBundle\Test\TestContainer'))->isSuperTypeOf($argType);
$isOldServiceSubscriber = (new ObjectType('Symfony\Component\DependencyInjection\ServiceSubscriberInterface'))->isSuperTypeOf($argType);
$isServiceSubscriber = (new ObjectType('Symfony\Contracts\Service\ServiceSubscriberInterface'))->isSuperTypeOf($argType);
$isServiceLocator = (new ObjectType('Symfony\Component\DependencyInjection\ServiceLocator'))->isSuperTypeOf($argType);
if ($isTestContainerType->yes() || $isOldServiceSubscriber->yes() || $isServiceSubscriber->yes() || $isServiceLocator->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->args[0]->value, $scope);
if ($serviceId !== null) {
$service = $this->serviceMap->getService($serviceId);
if ($service !== null && !$service->isPublic()) {
return [sprintf('Service "%s" is private.', $serviceId)];
}
}
return [];
}
}