-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild-conflicts.php
311 lines (269 loc) · 10.2 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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<?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 Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromFriendsOfPhp;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromGithubApi;
use Roave\SecurityAdvisories\AdvisorySources\GetAdvisoriesFromMultipleSources;
use UnexpectedValueException;
use function array_filter;
use function array_merge;
use function dirname;
use function escapeshellarg;
use function exec;
use function getenv;
use function implode;
use function ksort;
use function Safe\chdir;
use function Safe\file_put_contents;
use function Safe\getcwd;
use function Safe\json_encode;
use function Safe\realpath;
use function set_error_handler;
use function sprintf;
use const E_NOTICE;
use const E_STRICT;
use const E_WARNING;
use const JSON_PRETTY_PRINT;
use const JSON_UNESCAPED_SLASHES;
use const JSON_UNESCAPED_UNICODE;
use const PHP_EOL;
(static function (): void {
require_once __DIR__ . '/vendor/autoload.php';
/**
* @psalm-param callable(): ReturnType $function
*
* @psalm-return ReturnType
*
* @psalm-template ReturnType of mixed|void
*/
function runInPath(callable $function, string $path): mixed
{
$originalPath = getcwd();
chdir($path);
try {
$returnValue = $function();
} finally {
chdir($originalPath);
}
return $returnValue;
}
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 = getenv('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';
$baseComposerJson = [
'name' => 'roave/security-advisories',
'type' => 'metapackage',
'description' => 'Prevents installation of composer packages with known security vulnerabilities: '
. 'no API, simply require it',
'license' => 'MIT',
'authors' => [
[
'name' => 'Marco Pivetta',
'role' => 'maintainer',
'email' => 'ocramius@gmail.com',
],
[
'name' => 'Ilya Tribusean',
'role' => 'maintainer',
'email' => 'slash3b@gmail.com',
],
],
];
$execute =
/** @return non-empty-list<string> */
static function (string $commandString): array {
// may the gods forgive me for this in-lined command addendum, but I CBA to fix proc_open's handling
// of exit codes.
exec($commandString . ' 2>&1', $output, $result);
if ($result !== 0) {
throw new UnexpectedValueException(sprintf(
'Command failed: "%s" "%s"',
$commandString,
implode(PHP_EOL, $output)
));
}
/** @psalm-var non-empty-list<string> $output */
return $output;
};
$cleanBuildDir = static function () use ($buildDir, $execute): void {
$execute('rm -rf ' . escapeshellarg($buildDir));
$execute('mkdir ' . escapeshellarg($buildDir));
};
$cloneAdvisories = static function () use ($advisoriesRepository, $buildDir, $execute): void {
$execute(
'git clone '
. escapeshellarg($advisoriesRepository)
. ' ' . escapeshellarg($buildDir . '/security-advisories')
);
};
$cloneRoaveAdvisories = static function () use ($roaveAdvisoriesRepository, $buildDir, $execute): void {
$execute(
'git clone '
. escapeshellarg($roaveAdvisoriesRepository)
. ' ' . escapeshellarg($buildDir . '/roave-security-advisories')
);
$execute(sprintf(
'cp -r %s %s',
escapeshellarg($buildDir . '/roave-security-advisories'),
escapeshellarg($buildDir . '/roave-security-advisories-original')
));
};
$buildComponents =
/**
* @param iterable<Advisory> $advisories
*
* @return Component[]
*/
static function (iterable $advisories): array {
$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) {
$conflicts[$component->name->packageName] = $component->getConflictConstraint();
}
ksort($conflicts);
return array_filter($conflicts);
};
$buildConflictsJson = static function (array $baseConfig, array $conflicts): string {
return json_encode(
array_merge(
$baseConfig,
['conflict' => $conflicts]
),
JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE
);
};
$writeJson = static function (string $jsonString, string $path): void {
file_put_contents($path, $jsonString . "\n");
};
$getComposerPhar = static function (string $targetDir) use ($execute): void {
runInPath(
static function () use ($targetDir, $execute): void {
$installerPath = escapeshellarg($targetDir . '/composer-installer.php');
$execute(sprintf(
'curl -sS https://getcomposer.org/installer -o %s && php %s',
$installerPath,
$installerPath
));
},
$targetDir
);
};
$validateComposerJson = static function (string $composerJsonPath) use ($execute): void {
runInPath(
static function () use ($execute): void {
$execute('php composer.phar validate');
},
dirname($composerJsonPath)
);
};
$copyGeneratedComposerJson = static function (
string $sourceComposerJsonPath,
string $targetComposerJsonPath
) use ($execute): void {
$execute(sprintf(
'cp %s %s',
escapeshellarg($sourceComposerJsonPath),
escapeshellarg($targetComposerJsonPath)
));
};
$commitComposerJson = static function (string $composerJsonPath) use ($execute): void {
$parseHead =
/** @psalm-return non-empty-list<string> */
static function () use ($execute): array {
return $execute('git rev-parse HEAD');
};
$originalHash = runInPath(
$parseHead,
dirname($composerJsonPath) . '/../security-advisories'
);
runInPath(
static function () use ($composerJsonPath, $originalHash, $execute): void {
$execute('git add ' . escapeshellarg(realpath($composerJsonPath)));
$message = sprintf(
'Committing generated "composer.json" file as per "%s"',
(new DateTime('now', new DateTimeZone('UTC')))->format(DateTime::W3C)
);
$message .= "\n" . sprintf(
'Original commit: "%s"',
'https://github.com/FriendsOfPHP/security-advisories/commit/' . $originalHash[0]
);
$execute('git diff-index --quiet HEAD || git commit -m ' . escapeshellarg($message));
},
dirname($composerJsonPath)
);
};
// cleanup:
$cleanBuildDir();
$cloneAdvisories();
$cloneRoaveAdvisories();
$getAdvisories = (new GetAdvisoriesFromMultipleSources(
(new GetAdvisoriesFromFriendsOfPhp($buildDir . '/security-advisories')),
(new GetAdvisoriesFromGithubApi(
new Client(),
$token,
)),
));
// actual work:
$writeJson(
$buildConflictsJson(
$baseComposerJson,
$buildConflicts(
$buildComponents(
$getAdvisories()
)
)
),
__DIR__ . '/build/composer.json'
);
$getComposerPhar(__DIR__ . '/build');
$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');
})();