Skip to content

Commit

Permalink
Updated Rector to commit 955a5de414501f77b80b321a90ee35d4fe49e9e2
Browse files Browse the repository at this point in the history
rectorphp/rector-src@955a5de Add gitlab to "setup-ci" command (#5497)
  • Loading branch information
TomasVotruba committed Jan 24, 2024
1 parent 29d3544 commit 744ab2e
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 41 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '7584d25d55cd0a2e7c11dbc865c93a029c6047c3';
public const PACKAGE_VERSION = '955a5de414501f77b80b321a90ee35d4fe49e9e2';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-01-24 19:44:16';
public const RELEASE_DATE = '2024-01-24 21:24:18';
/**
* @var int
*/
Expand Down
102 changes: 63 additions & 39 deletions src/Console/Command/SetupCICommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
namespace Rector\Console\Command;

use RectorPrefix202401\Nette\Utils\FileSystem;
use RectorPrefix202401\Nette\Utils\Strings;
use RectorPrefix202401\OndraM\CiDetector\CiDetector;
use Rector\Git\RepositoryHelper;
use RectorPrefix202401\Symfony\Component\Console\Command\Command;
use RectorPrefix202401\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix202401\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202401\Symfony\Component\Console\Style\SymfonyStyle;
use RectorPrefix202401\Symfony\Component\Process\Process;
use function sprintf;
final class SetupCICommand extends Command
{
Expand All @@ -19,11 +18,6 @@ final class SetupCICommand extends Command
* @var \Symfony\Component\Console\Style\SymfonyStyle
*/
private $symfonyStyle;
/**
* @var string
* @see https://regex101.com/r/etcmog/2
*/
private const GITHUB_REPOSITORY_REGEX = '#github\\.com[:\\/](?<repository_name>.*?)\\.git#';
public function __construct(SymfonyStyle $symfonyStyle)
{
$this->symfonyStyle = $symfonyStyle;
Expand All @@ -38,31 +32,34 @@ protected function execute(InputInterface $input, OutputInterface $output) : int
{
// detect current CI
$ci = $this->resolveCurrentCI();
if ($ci === null) {
$this->symfonyStyle->error('No CI detected');
return self::FAILURE;
if ($ci === CiDetector::CI_GITLAB) {
return $this->handleGitlabCi();
}
if ($ci !== CiDetector::CI_GITHUB_ACTIONS) {
$noteMessage = sprintf('Only Github Action is supported for now.%sCreate an issue to add your CI %s', \PHP_EOL, 'https://github.com/rectorphp/rector/issues/');
$this->symfonyStyle->note($noteMessage);
return self::SUCCESS;
if ($ci === CiDetector::CI_GITHUB_ACTIONS) {
return $this->handleGithubActions();
}
$rectorWorkflowFilePath = \getcwd() . '/.github/workflows/rector.yaml';
if (\file_exists($rectorWorkflowFilePath)) {
$response = $this->symfonyStyle->ask('The "rector.yaml" workflow already exists. Overwrite it?', 'Yes');
if (!\in_array($response, ['y', 'yes', 'Yes'], \true)) {
$this->symfonyStyle->note('Nothing changed');
return self::SUCCESS;
}
$noteMessage = sprintf('Only Github and GitLab are currently supported.%s Contribute your CI template to Rector to make this work: %s', \PHP_EOL, 'https://github.com/rectorphp/rector-src/');
$this->symfonyStyle->note($noteMessage);
return self::SUCCESS;
}
/**
* @return CiDetector::CI_*|null
*/
private function resolveCurrentCI() : ?string
{
if (\file_exists(\getcwd() . '/.github')) {
return CiDetector::CI_GITHUB_ACTIONS;
}
$currentRepository = $this->resolveCurrentRepositoryName(\getcwd());
if ($currentRepository === null) {
$this->symfonyStyle->error('Current repository name could not be resolved');
return self::FAILURE;
if (\file_exists(\getcwd() . '/.gitlab-ci.yml')) {
return CiDetector::CI_GITLAB;
}
return null;
}
private function addGithubActionsWorkflow(string $currentRepository, string $targetWorkflowFilePath) : void
{
$workflowTemplate = FileSystem::read(__DIR__ . '/../../../templates/rector-github-action-check.yaml');
$workflowContents = \strtr($workflowTemplate, ['__CURRENT_REPOSITORY__' => $currentRepository]);
FileSystem::write($rectorWorkflowFilePath, $workflowContents);
FileSystem::write($targetWorkflowFilePath, $workflowContents);
$this->symfonyStyle->newLine();
$this->symfonyStyle->success('The ".github/workflows/rector.yaml" file was added');
$this->symfonyStyle->writeln('<comment>2 more steps to run Rector in CI:</comment>');
Expand All @@ -71,25 +68,52 @@ protected function execute(InputInterface $input, OutputInterface $output) : int
$this->symfonyStyle->newLine();
$repositoryNewSecretsLink = sprintf('https://github.com/%s/settings/secrets/actions/new', $currentRepository);
$this->symfonyStyle->writeln('2) Add the token to Action secrets as "ACCESS_TOKEN":' . \PHP_EOL . $repositoryNewSecretsLink);
return Command::SUCCESS;
}
private function addGitlabFile(string $targetGitlabFilePath) : void
{
$gitlabTemplate = FileSystem::read(__DIR__ . '/../../../templates/rector-gitlab-check.yaml');
FileSystem::write($targetGitlabFilePath, $gitlabTemplate);
$this->symfonyStyle->newLine();
$this->symfonyStyle->success('The "gitlab/rector.yaml" file was added');
$this->symfonyStyle->newLine();
$this->symfonyStyle->writeln('1) Register it in your ".gitlab-ci.yml" file:' . \PHP_EOL . 'include:' . \PHP_EOL . ' - local: gitlab/rector.yaml');
}
/**
* @return CiDetector::CI_*|null
* @return self::SUCCESS
*/
private function resolveCurrentCI() : ?string
private function handleGitlabCi() : int
{
if (\file_exists(\getcwd() . '/.github')) {
return CiDetector::CI_GITHUB_ACTIONS;
// add snippet in the end of file or include it?
$ciRectorFilePath = \getcwd() . '/gitlab/rector.yaml';
if (\file_exists($ciRectorFilePath)) {
$response = $this->symfonyStyle->ask('The "gitlab/rector.yaml" workflow already exists. Overwrite it?', 'Yes');
if (!\in_array($response, ['y', 'yes', 'Yes'], \true)) {
$this->symfonyStyle->note('Nothing changed');
return self::SUCCESS;
}
}
return null;
$this->addGitlabFile($ciRectorFilePath);
return self::SUCCESS;
}
private function resolveCurrentRepositoryName(string $currentDirectory) : ?string
/**
* @return self::SUCCESS|self::FAILURE
*/
private function handleGithubActions() : int
{
// resolve current repository name
$process = new Process(['git', 'remote', 'get-url', 'origin'], $currentDirectory, null, null, null);
$process->run();
$output = $process->getOutput();
$match = Strings::match($output, self::GITHUB_REPOSITORY_REGEX);
return $match['repository_name'] ?? null;
$rectorWorkflowFilePath = \getcwd() . '/.github/workflows/rector.yaml';
if (\file_exists($rectorWorkflowFilePath)) {
$response = $this->symfonyStyle->ask('The "rector.yaml" workflow already exists. Overwrite it?', 'Yes');
if (!\in_array($response, ['y', 'yes', 'Yes'], \true)) {
$this->symfonyStyle->note('Nothing changed');
return self::SUCCESS;
}
}
$currentRepository = RepositoryHelper::resolveGithubRepositoryName(\getcwd());
if ($currentRepository === null) {
$this->symfonyStyle->error('Current repository name could not be resolved');
return self::FAILURE;
}
$this->addGithubActionsWorkflow($currentRepository, $rectorWorkflowFilePath);
return self::SUCCESS;
}
}
24 changes: 24 additions & 0 deletions src/Git/RepositoryHelper.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare (strict_types=1);
namespace Rector\Git;

use RectorPrefix202401\Nette\Utils\Strings;
use RectorPrefix202401\Symfony\Component\Process\Process;
final class RepositoryHelper
{
/**
* @var string
* @see https://regex101.com/r/etcmog/2
*/
private const GITHUB_REPOSITORY_REGEX = '#github\\.com[:\\/](?<repository_name>.*?)\\.git#';
public static function resolveGithubRepositoryName(string $currentDirectory) : ?string
{
// resolve current repository name
$process = new Process(['git', 'remote', 'get-url', 'origin'], $currentDirectory, null, null, null);
$process->run();
$output = $process->getOutput();
$match = Strings::match($output, self::GITHUB_REPOSITORY_REGEX);
return $match['repository_name'] ?? null;
}
}
1 change: 1 addition & 0 deletions templates/rector-github-action-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- uses: "ramsey/composer-install@v2"

- run: vendor/bin/rector --ansi
# @todo apply coding standard if used

-
# commit only to core contributors who have repository access
Expand Down
27 changes: 27 additions & 0 deletions templates/rector-gitlab-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
stages:
- setup
- rector
- commit_changes

setup:
stage: setup
# see https://github.com/thecodingmachine/docker-images-php
image: thecodingmachine/php:8.2-v4-slim-cli

rector:
stage: rector
script:
- vendor/bin/rector --ansi
# @todo apply coding standard if used

commit_changes:
stage: commit_changes
script:
- git config --global user.email "ci@gitlab.com"
- git config --global user.name "GitLab CI
# - git checkout $CI_COMMIT_REF_NAME
- git add .
- git commit -m "[rector] Rector fixes"
- git push origin $CI_COMMIT_REF_NAME
only:
- merge_requests
1 change: 1 addition & 0 deletions vendor/composer/autoload_classmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1448,6 +1448,7 @@
'Rector\\FileSystem\\FilesystemTweaker' => $baseDir . '/src/FileSystem/FilesystemTweaker.php',
'Rector\\FileSystem\\InitFilePathsResolver' => $baseDir . '/src/FileSystem/InitFilePathsResolver.php',
'Rector\\FileSystem\\JsonFileSystem' => $baseDir . '/src/FileSystem/JsonFileSystem.php',
'Rector\\Git\\RepositoryHelper' => $baseDir . '/src/Git/RepositoryHelper.php',
'Rector\\Instanceof_\\Rector\\Ternary\\FlipNegatedTernaryInstanceofRector' => $baseDir . '/rules/Instanceof_/Rector/Ternary/FlipNegatedTernaryInstanceofRector.php',
'Rector\\Naming\\AssignVariableNameResolver\\NewAssignVariableNameResolver' => $baseDir . '/rules/Naming/AssignVariableNameResolver/NewAssignVariableNameResolver.php',
'Rector\\Naming\\AssignVariableNameResolver\\PropertyFetchAssignVariableNameResolver' => $baseDir . '/rules/Naming/AssignVariableNameResolver/PropertyFetchAssignVariableNameResolver.php',
Expand Down
1 change: 1 addition & 0 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -1662,6 +1662,7 @@ class ComposerStaticInit0408599c96f445821212bfb9798860ca
'Rector\\FileSystem\\FilesystemTweaker' => __DIR__ . '/../..' . '/src/FileSystem/FilesystemTweaker.php',
'Rector\\FileSystem\\InitFilePathsResolver' => __DIR__ . '/../..' . '/src/FileSystem/InitFilePathsResolver.php',
'Rector\\FileSystem\\JsonFileSystem' => __DIR__ . '/../..' . '/src/FileSystem/JsonFileSystem.php',
'Rector\\Git\\RepositoryHelper' => __DIR__ . '/../..' . '/src/Git/RepositoryHelper.php',
'Rector\\Instanceof_\\Rector\\Ternary\\FlipNegatedTernaryInstanceofRector' => __DIR__ . '/../..' . '/rules/Instanceof_/Rector/Ternary/FlipNegatedTernaryInstanceofRector.php',
'Rector\\Naming\\AssignVariableNameResolver\\NewAssignVariableNameResolver' => __DIR__ . '/../..' . '/rules/Naming/AssignVariableNameResolver/NewAssignVariableNameResolver.php',
'Rector\\Naming\\AssignVariableNameResolver\\PropertyFetchAssignVariableNameResolver' => __DIR__ . '/../..' . '/rules/Naming/AssignVariableNameResolver/PropertyFetchAssignVariableNameResolver.php',
Expand Down

0 comments on commit 744ab2e

Please sign in to comment.