rector/packages/ChangesReporting/Output/JsonOutputFormatter.php
Abdul Malik Ikhsan fc10fce13d
[Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
* re-enable rectify and ecs

* [Rectify] [Php81] Enable Rectify on Readonly Property only

* comment

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

Co-authored-by: GitHub Action <action@github.com>
2021-12-04 15:32:52 +03:00

101 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
namespace Rector\ChangesReporting\Output;
use Nette\Utils\Json;
use Rector\ChangesReporting\Annotation\RectorsChangelogResolver;
use Rector\ChangesReporting\Contract\Output\OutputFormatterInterface;
use Rector\Core\ValueObject\Configuration;
use Rector\Core\ValueObject\ProcessResult;
final class JsonOutputFormatter implements OutputFormatterInterface
{
/**
* @var string
*/
public const NAME = 'json';
public function __construct(
private readonly RectorsChangelogResolver $rectorsChangelogResolver
) {
}
public function getName(): string
{
return self::NAME;
}
public function report(ProcessResult $processResult, Configuration $configuration): void
{
$errorsArray = [
'meta' => [
'config' => $configuration->getMainConfigFilePath(),
],
'totals' => [
'changed_files' => count($processResult->getFileDiffs()),
'removed_and_added_files_count' => $processResult->getRemovedAndAddedFilesCount(),
'removed_node_count' => $processResult->getRemovedNodeCount(),
],
];
$fileDiffs = $processResult->getFileDiffs();
ksort($fileDiffs);
foreach ($fileDiffs as $fileDiff) {
$relativeFilePath = $fileDiff->getRelativeFilePath();
$appliedRectorsWithChangelog = $this->rectorsChangelogResolver->resolve($fileDiff->getRectorClasses());
$errorsArray['file_diffs'][] = [
'file' => $relativeFilePath,
'diff' => $fileDiff->getDiff(),
'applied_rectors' => $fileDiff->getRectorClasses(),
'applied_rectors_with_changelog' => $appliedRectorsWithChangelog,
];
// for Rector CI
$errorsArray['changed_files'][] = $relativeFilePath;
}
$errors = $processResult->getErrors();
$errorsArray['totals']['errors'] = count($errors);
$errorsData = $this->createErrorsData($errors);
if ($errorsData !== []) {
$errorsArray['errors'] = $errorsData;
}
$json = Json::encode($errorsArray, Json::PRETTY);
echo $json . PHP_EOL;
}
/**
* @param mixed[] $errors
* @return mixed[]
*/
private function createErrorsData(array $errors): array
{
$errorsData = [];
foreach ($errors as $error) {
$errorData = [
'message' => $error->getMessage(),
'file' => $error->getRelativeFilePath(),
];
if ($error->getRectorClass()) {
$errorData['caused_by'] = $error->getRectorClass();
}
if ($error->getLine() !== null) {
$errorData['line'] = $error->getLine();
}
$errorsData[] = $errorData;
}
return $errorsData;
}
}