forked from rectorphp/rector-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetupCICommand.php
More file actions
157 lines (127 loc) · 5.1 KB
/
SetupCICommand.php
File metadata and controls
157 lines (127 loc) · 5.1 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
declare(strict_types=1);
namespace Rector\Console\Command;
use Nette\Utils\FileSystem;
use OndraM\CiDetector\CiDetector;
use Rector\Git\RepositoryHelper;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use function sprintf;
final class SetupCICommand extends Command
{
public function __construct(
private readonly SymfonyStyle $symfonyStyle
) {
parent::__construct();
}
protected function configure(): void
{
$this->setName('setup-ci');
$this->setDescription('Add CI workflow to let Rector work for you');
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
// detect current CI
$ci = $this->resolveCurrentCI();
if ($ci === CiDetector::CI_GITLAB) {
return $this->handleGitlabCi();
}
if ($ci === CiDetector::CI_GITHUB_ACTIONS) {
return $this->handleGithubActions();
}
$noteMessage = sprintf(
'Only GitHub and GitLab are currently supported.%s Contribute your CI template to Rector to make this work: %s',
"\n",
'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;
}
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($targetWorkflowFilePath, $workflowContents, null);
$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>');
$this->symfonyStyle->newLine();
$this->symfonyStyle->writeln(
'1) Generate token with "repo" scope:' . \PHP_EOL . 'https://github.com/settings/tokens/new'
);
$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
);
}
private function addGitlabFile(string $targetGitlabFilePath): void
{
$gitlabTemplate = FileSystem::read(__DIR__ . '/../../../templates/rector-gitlab-check.yaml');
FileSystem::write($targetGitlabFilePath, $gitlabTemplate, null);
$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 self::SUCCESS
*/
private function handleGitlabCi(): int
{
// 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;
}
}
$this->addGitlabFile($ciRectorFilePath);
return self::SUCCESS;
}
/**
* @return self::SUCCESS|self::FAILURE
*/
private function handleGithubActions(): int
{
$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;
}
}