rector/rules/Autodiscovery/Rector/Class_/MoveValueObjectsToValueObjectDirectoryRector.php
Tomas Votruba e9e85a1300 Updated Rector to commit a8b01f217b
a8b01f217b [automated] Re-Generate Nodes/Rectors Documentation (#619)
2021-08-08 00:26:40 +00:00

186 lines
6.1 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Autodiscovery\Rector\Class_;
use RectorPrefix20210808\Controller;
use PhpParser\Node;
use PhpParser\Node\Stmt\Class_;
use PHPStan\Type\ObjectType;
use Rector\Autodiscovery\Analyzer\ValueObjectClassAnalyzer;
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use Rector\FileSystemRector\ValueObject\AddedFileWithNodes;
use Rector\FileSystemRector\ValueObjectFactory\AddedFileWithNodesFactory;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* Inspiration @see https://github.com/rectorphp/rector/pull/1865/files#diff-0d18e660cdb626958662641b491623f8
* @wip
*
* @see \Rector\Tests\Autodiscovery\Rector\Class_\MoveValueObjectsToValueObjectDirectoryRector\MoveValueObjectsToValueObjectDirectoryRectorTest
*/
final class MoveValueObjectsToValueObjectDirectoryRector extends \Rector\Core\Rector\AbstractRector implements \Rector\Core\Contract\Rector\ConfigurableRectorInterface
{
/**
* @var string
*/
public const TYPES = 'types';
/**
* @var string
*/
public const SUFFIXES = 'suffixes';
/**
* @api
* @var string
*/
public const ENABLE_VALUE_OBJECT_GUESSING = 'enable_value_object_guessing';
/**
* @var string[]|class-string<Controller>[]
*/
private const COMMON_SERVICE_SUFFIXES = ['Repository', 'Command', 'Mapper', 'Controller', 'Presenter', 'Factory', 'Test', 'TestCase', 'Service'];
/**
* @var bool
*/
private $enableValueObjectGuessing = \true;
/**
* @var class-string[]
*/
private $types = [];
/**
* @var string[]
*/
private $suffixes = [];
/**
* @var \Rector\FileSystemRector\ValueObjectFactory\AddedFileWithNodesFactory
*/
private $addedFileWithNodesFactory;
/**
* @var \Rector\Autodiscovery\Analyzer\ValueObjectClassAnalyzer
*/
private $valueObjectClassAnalyzer;
public function __construct(\Rector\FileSystemRector\ValueObjectFactory\AddedFileWithNodesFactory $addedFileWithNodesFactory, \Rector\Autodiscovery\Analyzer\ValueObjectClassAnalyzer $valueObjectClassAnalyzer)
{
$this->addedFileWithNodesFactory = $addedFileWithNodesFactory;
$this->valueObjectClassAnalyzer = $valueObjectClassAnalyzer;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Move value object to ValueObject namespace/directory', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample(<<<'CODE_SAMPLE'
// app/Exception/Name.php
class Name
{
private $name;
public function __construct(string $name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
// app/ValueObject/Name.php
class Name
{
private $name;
public function __construct(string $name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}
CODE_SAMPLE
, [self::TYPES => ['ValueObjectInterfaceClassName'], self::SUFFIXES => ['Search'], self::ENABLE_VALUE_OBJECT_GUESSING => \true])]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if (!$this->isValueObjectMatch($node)) {
return null;
}
$smartFileInfo = $this->file->getSmartFileInfo();
$addedFileWithNodes = $this->addedFileWithNodesFactory->createWithDesiredGroup($smartFileInfo, $this->file, 'ValueObject');
if (!$addedFileWithNodes instanceof \Rector\FileSystemRector\ValueObject\AddedFileWithNodes) {
return null;
}
$this->removedAndAddedFilesCollector->removeFile($smartFileInfo);
$this->removedAndAddedFilesCollector->addAddedFile($addedFileWithNodes);
return null;
}
/**
* @param array<string, mixed> $configuration
*/
public function configure(array $configuration) : void
{
$this->types = $configuration[self::TYPES] ?? [];
$this->suffixes = $configuration[self::SUFFIXES] ?? [];
$this->enableValueObjectGuessing = $configuration[self::ENABLE_VALUE_OBJECT_GUESSING] ?? \false;
}
private function isValueObjectMatch(\PhpParser\Node\Stmt\Class_ $class) : bool
{
if ($this->isSuffixMatch($class)) {
return \true;
}
$className = $this->getName($class);
if ($className === null) {
return \false;
}
$classObjectType = new \PHPStan\Type\ObjectType($className);
foreach ($this->types as $type) {
$desiredObjectType = new \PHPStan\Type\ObjectType($type);
if ($desiredObjectType->isSuperTypeOf($classObjectType)->yes()) {
return \true;
}
}
if ($this->isKnownServiceType($className)) {
return \false;
}
if (!$this->enableValueObjectGuessing) {
return \false;
}
return $this->valueObjectClassAnalyzer->isValueObjectClass($class);
}
private function isSuffixMatch(\PhpParser\Node\Stmt\Class_ $class) : bool
{
$className = $class->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NAME);
if ($className === null) {
return \false;
}
foreach ($this->suffixes as $suffix) {
if (\substr_compare($className, $suffix, -\strlen($suffix)) === 0) {
return \true;
}
}
return \false;
}
private function isKnownServiceType(string $className) : bool
{
foreach (self::COMMON_SERVICE_SUFFIXES as $commonServiceSuffix) {
if (\substr_compare($className, $commonServiceSuffix, -\strlen($commonServiceSuffix)) === 0) {
return \true;
}
}
return \false;
}
}