-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInstaller.php
279 lines (225 loc) · 7.95 KB
/
Installer.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
<?php
namespace DrupalFinderPlugin;
use Composer\Composer;
use Composer\Config;
use Composer\EventDispatcher\EventSubscriberInterface;
use Composer\IO\IOInterface;
use Composer\Package\AliasPackage;
use Composer\Package\Locker;
use Composer\Package\PackageInterface;
use Composer\Package\RootPackageInterface;
use Composer\Plugin\PluginInterface;
use Composer\Script\Event;
use Composer\Script\ScriptEvents;
use Composer\Util\Filesystem;
use Generator;
use RuntimeException;
final class Installer implements PluginInterface, EventSubscriberInterface {
private static $generatedClassTemplate = <<<'PHP'
<?php
declare(strict_types=1);
namespace DrupalFinderPlugin;
/**
* This class is generated by webflo/drupal-finder-plugin, specifically by
* @see \DrupalFinderPlugin\Installer
*
* This file is overwritten at every run of `composer install` or `composer update`.
*/
%s
{
/**
* Medata about this composer project.
*
* Dont read this array from your calling code, but use the provided method instead.
*
* @var array
*
* @internal
*/
const METADATA = %s;
/**
* composer.json, relative to DRUPAL_ROOT.
*
* @return string
*/
public static function getComposerJson() {
return self::METADATA['composerJson'];
}
/**
* composer-root, relative to DRUPAL_ROOT.
*
* @return string
*/
public static function getComposerRoot() {
return self::METADATA['composerRoot'];
}
/**
* vendor-dir, relative to DRUPAL_ROOT.
*
* @return string
*/
public static function getVendorDir() {
return self::METADATA['vendorDir'];
}
/**
* vendor-bin-dir, relative to DRUPAL_ROOT.
*
* @return string
*/
public static function getVendorBinDir() {
return self::METADATA['vendorBinDir'];
}
}
PHP;
public function activate(Composer $composer, IOInterface $io)
{
// Nothing to do here, as all features are provided through event listeners
}
public function deactivate(Composer $composer, IOInterface $io)
{
// Nothing to do here, as all features are provided through event listeners
}
public function uninstall(Composer $composer, IOInterface $io)
{
// Nothing to do here, as all features are provided through event listeners
}
/**
* {@inheritDoc}
*/
public static function getSubscribedEvents(): array
{
return [ScriptEvents::POST_AUTOLOAD_DUMP => 'dumpInfoClass'];
}
/**
* @throws RuntimeException
*/
public static function dumpInfoClass(Event $composerEvent)
{
$composer = $composerEvent->getComposer();
$rootPackage = $composer->getPackage();
$versions = iterator_to_array(self::getVersions($composer->getLocker(), $rootPackage));
if (! array_key_exists('webflo/drupal-finder-plugin', $versions)) {
// plugin is installed globally. project-local is required. we only want
// to generate info for projects which specifically require
// webflo/drupal-finder-plugin
return;
}
$vendorDir = $composer->getConfig()->get('vendor-dir');
$vendorBinDir = $composer->getConfig()->get('bin-dir');
$package = self::getRootPackageAlias($rootPackage);
$path = getcwd();
$extra = $package->getExtra();
if (isset($extra['installer-paths']) && is_array($extra['installer-paths'])) {
foreach ($extra['installer-paths'] as $install_path => $items) {
if (in_array('type:drupal-core', $items) ||
in_array('drupal/core', $items) ||
in_array('drupal/drupal', $items)) {
// @todo: Remove this magic and detect the major version instead.
if (($install_path == 'core') || ((isset($json['name'])) && ($json['name'] == 'drupal/drupal'))) {
$install_path = '';
} elseif (substr($install_path, -5) == '/core') {
$install_path = substr($install_path, 0, -5);
}
$drupalRoot = rtrim($path . '/' . $install_path, '/');
}
}
}
if ($drupalRoot === NULL) {
throw new RuntimeException('Drupal root not found.');
}
$fs = new Filesystem();
$metadata = [
'composerJson' => NULL,
'composerRoot' => $fs->findShortestPath($drupalRoot, getcwd(), TRUE),
'vendorDir' => $fs->findShortestPath($drupalRoot, $vendorDir, TRUE),
'vendorBinDir' => $fs->findShortestPath($drupalRoot, $vendorBinDir, TRUE),
];
if ($composer->getConfig()->getConfigSource() instanceof Config\JsonConfigSource) {
$metadata['composerJson'] = $fs->findShortestPath($drupalRoot, $composer->getConfig()->getConfigSource()->getName(), TRUE);
}
$infoClass = self::generateInfoClass($rootPackage->getName(), $metadata);
self::writeInfoClassToFile($infoClass, $composer, $composerEvent->getIO());
}
/**
* @param string[] $medata
*/
private static function generateInfoClass(string $rootPackageName, array $medata): string
{
return sprintf(
self::$generatedClassTemplate,
'fin' . 'al ' . 'cla' . 'ss ' . 'Info', // note: workaround for regex-based code parsers :-(
var_export($medata, true)
);
}
/**
* @throws RuntimeException
*/
private static function writeInfoClassToFile(string $InfoClassSource, Composer $composer, IOInterface $io)
{
$installPath = self::locateRootPackageInstallPath($composer->getConfig(), $composer->getPackage()) . '/src/DrupalFinderPlugin/Info.php';
$installDir = dirname($installPath);
if (! file_exists($installDir)) {
$io->write('<info>webflo/drupal-finder-plugin:</info> Package not found (probably scheduled for removal); generation of version class skipped.');
return;
}
if (! is_writable($installDir)) {
$io->write(
sprintf(
'<info>webflo/drupal-finder-plugin:</info> %s is not writable; generation of info class skipped.',
$installDir
)
);
return;
}
$io->write('<info>webflo/drupal-finder-plugin:</info> Generating info class...');
$installPathTmp = $installPath . '_' . uniqid('tmp', true);
file_put_contents($installPathTmp, $InfoClassSource);
chmod($installPathTmp, 0664);
rename($installPathTmp, $installPath);
$io->write('<info>webflo/drupal-finder-plugin:</info> ...done generating info class');
}
/**
* @throws RuntimeException
*/
private static function locateRootPackageInstallPath(Config $composerConfig, RootPackageInterface $rootPackage): string {
if (self::getRootPackageAlias($rootPackage)->getName() === 'webflo/drupal-finder-plugin') {
return dirname($composerConfig->get('vendor-dir'));
}
return $composerConfig->get('vendor-dir') . '/webflo/drupal-finder-plugin';
}
private static function getRootPackageAlias(RootPackageInterface $rootPackage): PackageInterface
{
$package = $rootPackage;
while ($package instanceof AliasPackage) {
$package = $package->getAliasOf();
}
return $package;
}
/**
* @return Generator&string[]
*
* @psalm-return Generator<string, string>
*/
private static function getVersions(Locker $locker, RootPackageInterface $rootPackage): Generator
{
$lockData = $locker->getLockData();
$lockData['packages-dev'] = $lockData['packages-dev'] ?? [];
$packages = $lockData['packages'];
if (getenv('COMPOSER_DEV_MODE') !== '0') {
$packages = array_merge($packages, $lockData['packages-dev']);
}
foreach ($packages as $package) {
yield $package['name'] => $package['version'] . '@' . (
$package['source']['reference'] ?? $package['dist']['reference'] ?? ''
);
}
foreach ($rootPackage->getReplaces() as $replace) {
$version = $replace->getPrettyConstraint();
if ($version === 'self.version') {
$version = $rootPackage->getPrettyVersion();
}
yield $replace->getTarget() => $version . '@' . $rootPackage->getSourceReference();
}
yield $rootPackage->getName() => $rootPackage->getPrettyVersion() . '@' . $rootPackage->getSourceReference();
}
}