-
Notifications
You must be signed in to change notification settings - Fork 7
/
build-conflicts.php
238 lines (206 loc) · 8.6 KB
/
build-conflicts.php
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license.
*/
declare(strict_types=1);
namespace Roave\SecurityAdvisories;
use DateTime;
use DateTimeZone;
use ErrorException;
use Http\Client\Curl\Client;
use Monolog\Handler\StreamHandler;
use Monolog\Logger;
use Psl\Dict;
use Psl\Env;
use Psl\File;
use Psl\Filesystem;
use Psl\Json;
use Psl\Shell;
use Psl\Str;
use Psl\Type;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesAdvisoryRuleDecorator;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromFriendsOfPhp;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromGithubApi;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromMultipleSources;
use Roave\SecurityAdvisories\Rule\RuleProviderFactory;
use function set_error_handler;
use const E_NOTICE;
use const E_STRICT;
use const E_WARNING;
use const PHP_BINARY;
use const STDOUT;
(static function (): void {
require_once __DIR__ . '/vendor/autoload.php';
set_error_handler(
static function (int $errorCode, string $message = '', string $file = '', int $line = 0): bool {
throw new ErrorException($message, 0, $errorCode, $file, $line);
},
E_STRICT | E_NOTICE | E_WARNING,
);
$token = Env\get_var('GITHUB_TOKEN') ?? '';
$authentication = $token === '' ? '' : $token . ':x-oauth-basic@';
$advisoriesRepository = 'https://' . $authentication . 'github.com/FriendsOfPHP/security-advisories.git';
$roaveAdvisoriesRepository = 'https://' . $authentication . 'github.com/Roave/SecurityAdvisories.git';
$buildDir = __DIR__ . '/build';
$logger = new Logger('roave/security-advisories-builder', [new StreamHandler(STDOUT)]);
$baseComposerJson = [
'name' => 'roave/security-advisories',
'type' => 'metapackage',
'description' => 'Prevents installation of composer packages with known security vulnerabilities: '
. 'no API, simply require it',
'license' => 'MIT',
// force install as dev-requirement via special keyword "dev"
// see https://getcomposer.org/doc/04-schema.md#keywords
'keywords' => ['dev'],
'authors' => [
[
'name' => 'Marco Pivetta',
'role' => 'maintainer',
'email' => '[email protected]',
],
[
'name' => 'Ilya Tribusean',
'role' => 'maintainer',
'email' => '[email protected]',
],
],
];
$cleanBuildDir = static function () use ($buildDir): void {
Shell\execute('rm', ['-rf', $buildDir]);
Shell\execute('mkdir', [$buildDir]);
};
$cloneAdvisories = static function () use ($advisoriesRepository, $buildDir): void {
Shell\execute('git', ['clone', $advisoriesRepository, $buildDir . '/security-advisories']);
};
$cloneRoaveAdvisories = static function () use ($roaveAdvisoriesRepository, $buildDir): void {
Shell\execute('git', ['clone', $roaveAdvisoriesRepository, $buildDir . '/roave-security-advisories']);
Shell\execute(
'cp',
['-r', $buildDir . '/roave-security-advisories', $buildDir . '/roave-security-advisories-original'],
);
};
$buildComponents =
/**
* @param iterable<Advisory> $advisories
*
* @return array<non-empty-lowercase-string, Component>
*/
static function (iterable $advisories): array {
/** @var array<non-empty-lowercase-string, non-empty-list<Advisory>> $indexedAdvisories */
$indexedAdvisories = [];
$components = [];
foreach ($advisories as $advisory) {
$indexedAdvisories[$advisory->package->packageName][] = $advisory;
}
foreach ($indexedAdvisories as $componentName => $componentAdvisories) {
$components[$componentName] = new Component($componentAdvisories[0]->package, $componentAdvisories);
}
return $components;
};
$buildConflicts =
/**
* @param Component[] $components
*
* @return array<non-empty-string, non-empty-string>
*/
static function (array $components): array {
$conflicts = [];
foreach ($components as $component) {
$constraint = $component->getConflictConstraint();
if ($constraint === '') {
continue;
}
$conflicts[$component->name->packageName] = $constraint;
}
return Dict\sort_by_key($conflicts);
};
$buildConflictsJson = static function (array $baseConfig, array $conflicts): string {
return Json\encode(Dict\merge($baseConfig, ['conflict' => $conflicts]), true);
};
$validateComposerJson =
/** @param non-empty-string $composerJsonPath */
static function (string $composerJsonPath): void {
Shell\execute(
Type\non_empty_string()->assert(PHP_BINARY),
[__DIR__ . '/vendor/bin/composer', 'validate'],
Filesystem\get_directory($composerJsonPath),
);
};
$copyGeneratedComposerJson = static function (
string $sourceComposerJsonPath,
string $targetComposerJsonPath,
): void {
Shell\execute('cp', [$sourceComposerJsonPath, $targetComposerJsonPath]);
};
$commitComposerJson =
/** @param non-empty-string $composerJsonPath */
static function (string $composerJsonPath): void {
$workingDirectory = Filesystem\get_directory($composerJsonPath);
$originalHash = Shell\execute(
'git',
['rev-parse', 'HEAD'],
$workingDirectory . '/../security-advisories',
);
$originalHash = Str\trim($originalHash);
Shell\execute('git', ['add', (string) Filesystem\canonicalize($composerJsonPath)], $workingDirectory);
$message = Str\format(
'Committing generated "composer.json" file as per "%s"',
(new DateTime('now', new DateTimeZone('UTC')))->format(DateTime::W3C),
);
$message .= "\n" . Str\format(
'Original commit: "%s"',
'https://github.com/FriendsOfPHP/security-advisories/commit/' . $originalHash,
);
try {
Shell\execute('git', ['diff-index', '--quiet', 'HEAD'], $workingDirectory);
} catch (Shell\Exception\FailedExecutionException) {
Shell\execute('git', ['commit', '-m', $message], $workingDirectory);
}
};
// cleanup:
$cleanBuildDir();
$cloneAdvisories();
$cloneRoaveAdvisories();
$getAdvisories = new GetAdvisoriesAdvisoryRuleDecorator(
(new GetAdvisoriesFromMultipleSources(
(new GetAdvisoriesFromFriendsOfPhp($buildDir . '/security-advisories')),
(new GetAdvisoriesFromGithubApi(
new Client(),
$token,
$logger,
)),
)),
(new RuleProviderFactory())(),
);
// actual work:
File\write(
__DIR__ . '/build/composer.json',
$buildConflictsJson(
$baseComposerJson,
$buildConflicts(
$buildComponents(
$getAdvisories(),
),
),
) . "\n",
);
$validateComposerJson(__DIR__ . '/build/composer.json');
$copyGeneratedComposerJson(
__DIR__ . '/build/composer.json',
__DIR__ . '/build/roave-security-advisories/composer.json',
);
$commitComposerJson(__DIR__ . '/build/roave-security-advisories/composer.json');
})();