mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
503a6059f8
a8922f7431
skip temporarily match + throws downagrade in symfony/console, very unlikely to run
142 lines
6.4 KiB
PHP
142 lines
6.4 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\BetterPhpDocParser\PhpDocManipulator;
|
|
|
|
use RectorPrefix202306\Nette\Utils\Strings;
|
|
use PhpParser\Node;
|
|
use Rector\BetterPhpDocParser\PhpDoc\ArrayItemNode;
|
|
use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode;
|
|
use Rector\BetterPhpDocParser\PhpDoc\StringNode;
|
|
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo;
|
|
use Rector\BetterPhpDocParser\PhpDocParser\ClassAnnotationMatcher;
|
|
use Rector\BetterPhpDocParser\ValueObject\PhpDoc\DoctrineAnnotation\CurlyListNode;
|
|
use Rector\BetterPhpDocParser\ValueObject\PhpDocAttributeKey;
|
|
final class PhpDocClassRenamer
|
|
{
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\BetterPhpDocParser\PhpDocParser\ClassAnnotationMatcher
|
|
*/
|
|
private $classAnnotationMatcher;
|
|
public function __construct(ClassAnnotationMatcher $classAnnotationMatcher)
|
|
{
|
|
$this->classAnnotationMatcher = $classAnnotationMatcher;
|
|
}
|
|
/**
|
|
* Covers annotations like @ORM, @Serializer, @Assert etc
|
|
* See https://github.com/rectorphp/rector/issues/1872
|
|
*
|
|
* @param string[] $oldToNewClasses
|
|
*/
|
|
public function changeTypeInAnnotationTypes(Node $node, PhpDocInfo $phpDocInfo, array $oldToNewClasses) : void
|
|
{
|
|
$this->processAssertChoiceTagValueNode($oldToNewClasses, $phpDocInfo);
|
|
$this->processDoctrineRelationTagValueNode($node, $oldToNewClasses, $phpDocInfo);
|
|
$this->processSerializerTypeTagValueNode($oldToNewClasses, $phpDocInfo);
|
|
}
|
|
/**
|
|
* @param array<string, string> $oldToNewClasses
|
|
*/
|
|
private function processAssertChoiceTagValueNode(array $oldToNewClasses, PhpDocInfo $phpDocInfo) : void
|
|
{
|
|
$assertChoiceDoctrineAnnotationTagValueNode = $phpDocInfo->findOneByAnnotationClass('Symfony\\Component\\Validator\\Constraints\\Choice');
|
|
if (!$assertChoiceDoctrineAnnotationTagValueNode instanceof DoctrineAnnotationTagValueNode) {
|
|
return;
|
|
}
|
|
$callbackArrayItemNode = $assertChoiceDoctrineAnnotationTagValueNode->getValue('callback');
|
|
if (!$callbackArrayItemNode instanceof ArrayItemNode) {
|
|
return;
|
|
}
|
|
$callbackClass = $callbackArrayItemNode->value;
|
|
// array is needed for callable
|
|
if (!$callbackClass instanceof CurlyListNode) {
|
|
return;
|
|
}
|
|
$callableCallbackArrayItems = $callbackClass->getValues();
|
|
$classNameArrayItemNode = $callableCallbackArrayItems[0];
|
|
$classNameStringNode = $classNameArrayItemNode->value;
|
|
if (!$classNameStringNode instanceof StringNode) {
|
|
return;
|
|
}
|
|
foreach ($oldToNewClasses as $oldClass => $newClass) {
|
|
if ($classNameStringNode->value !== $oldClass) {
|
|
continue;
|
|
}
|
|
$classNameStringNode->value = $newClass;
|
|
// trigger reprint
|
|
$classNameArrayItemNode->setAttribute(PhpDocAttributeKey::ORIG_NODE, null);
|
|
break;
|
|
}
|
|
}
|
|
/**
|
|
* @param array<string, string> $oldToNewClasses
|
|
*/
|
|
private function processDoctrineRelationTagValueNode(Node $node, array $oldToNewClasses, PhpDocInfo $phpDocInfo) : void
|
|
{
|
|
$doctrineAnnotationTagValueNode = $phpDocInfo->getByAnnotationClasses(['Doctrine\\ORM\\Mapping\\OneToMany', 'Doctrine\\ORM\\Mapping\\ManyToMany', 'Doctrine\\ORM\\Mapping\\Embedded']);
|
|
if (!$doctrineAnnotationTagValueNode instanceof DoctrineAnnotationTagValueNode) {
|
|
return;
|
|
}
|
|
$this->processDoctrineToMany($doctrineAnnotationTagValueNode, $node, $oldToNewClasses);
|
|
}
|
|
/**
|
|
* @param array<string, string> $oldToNewClasses
|
|
*/
|
|
private function processSerializerTypeTagValueNode(array $oldToNewClasses, PhpDocInfo $phpDocInfo) : void
|
|
{
|
|
$doctrineAnnotationTagValueNode = $phpDocInfo->findOneByAnnotationClass('JMS\\Serializer\\Annotation\\Type');
|
|
if (!$doctrineAnnotationTagValueNode instanceof DoctrineAnnotationTagValueNode) {
|
|
return;
|
|
}
|
|
$classNameArrayItemNode = $doctrineAnnotationTagValueNode->getSilentValue();
|
|
foreach ($oldToNewClasses as $oldClass => $newClass) {
|
|
if ($classNameArrayItemNode instanceof ArrayItemNode && $classNameArrayItemNode->value instanceof StringNode) {
|
|
$classNameStringNode = $classNameArrayItemNode->value;
|
|
if ($classNameStringNode->value === $oldClass) {
|
|
$classNameStringNode->value = $newClass;
|
|
continue;
|
|
}
|
|
$classNameStringNode->value = Strings::replace($classNameStringNode->value, '#\\b' . \preg_quote($oldClass, '#') . '\\b#', $newClass);
|
|
$classNameArrayItemNode->setAttribute(PhpDocAttributeKey::ORIG_NODE, null);
|
|
}
|
|
$currentTypeArrayItemNode = $doctrineAnnotationTagValueNode->getValue('type');
|
|
if (!$currentTypeArrayItemNode instanceof ArrayItemNode) {
|
|
continue;
|
|
}
|
|
$currentTypeStringNode = $currentTypeArrayItemNode->value;
|
|
if (!$currentTypeStringNode instanceof StringNode) {
|
|
continue;
|
|
}
|
|
if ($currentTypeStringNode->value === $oldClass) {
|
|
$currentTypeStringNode->value = $newClass;
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* @param array<string, string> $oldToNewClasses
|
|
*/
|
|
private function processDoctrineToMany(DoctrineAnnotationTagValueNode $doctrineAnnotationTagValueNode, Node $node, array $oldToNewClasses) : void
|
|
{
|
|
$classKey = $doctrineAnnotationTagValueNode->hasClassName('Doctrine\\ORM\\Mapping\\Embedded') ? 'class' : 'targetEntity';
|
|
$targetEntityArrayItemNode = $doctrineAnnotationTagValueNode->getValue($classKey);
|
|
if (!$targetEntityArrayItemNode instanceof ArrayItemNode) {
|
|
return;
|
|
}
|
|
$targetEntityStringNode = $targetEntityArrayItemNode->value;
|
|
if (!$targetEntityStringNode instanceof StringNode) {
|
|
return;
|
|
}
|
|
$targetEntityClass = $targetEntityStringNode->value;
|
|
// resolve to FQN
|
|
$tagFullyQualifiedName = $this->classAnnotationMatcher->resolveTagFullyQualifiedName($targetEntityClass, $node);
|
|
foreach ($oldToNewClasses as $oldClass => $newClass) {
|
|
if ($tagFullyQualifiedName !== $oldClass) {
|
|
continue;
|
|
}
|
|
$targetEntityStringNode->value = $newClass;
|
|
$targetEntityArrayItemNode->setAttribute(PhpDocAttributeKey::ORIG_NODE, null);
|
|
}
|
|
}
|
|
}
|