Skip to content
Snippets Groups Projects
Commit 4b748de5 authored by jurgenhaas's avatar jurgenhaas
Browse files

#17 Implement default settings for composer.json

parent dfed504e
No related branches found
No related tags found
1 merge request!230Merging develop into main
Pipeline #1255272 skipped
<?php
namespace LakeDrops\DrupalEnvironment;
use Composer\Installers\BaseInstaller;
/**
* Overrides the Drupal installer with LakeDrops locations.
*/
class DrupalInstaller extends BaseInstaller {
/**
* The locations.
*
* @var array<string, string>
*/
protected $locations = [
'core' => 'web/core/',
'module' => 'web/modules/contrib/{$name}/',
'profile' => 'web/profiles/contrib/{$name}/',
'recipe' => 'web/recipes/contrib/{$name}/',
'theme' => 'web/themes/contrib/{$name}/',
'library' => 'web/libraries/{$name}/',
'drush' => 'drush/Commands/{$name}/',
'custom-module' => 'web/modules/custom/{$name}/',
'custom-profile' => 'web/profiles/custom/{$name}/',
'custom-recipe' => 'web/recipes/custom/{$name}/',
'custom-theme' => 'web/themes/custom/{$name}/',
'drupal-multisite' => 'web/sites/{$name}/',
];
}
<?php
namespace LakeDrops\DrupalEnvironment;
use Composer\Installers\Installer as ComposerInstaller;
use Composer\Package\PackageInterface;
/**
* Extends the composer installers for special handling of Drupal locations.
*/
class Installer extends ComposerInstaller {
/**
* {@inheritDoc}
*/
public function getInstallPath(PackageInterface $package) {
$type = $package->getType();
$frameworkType = $this->findFrameworkType($type);
if ($frameworkType === 'drupal') {
$installer = new DrupalInstaller($package, $this->composer, $this->io);
$path = $installer->getInstallPath($package, $frameworkType);
if (!$this->filesystem->isAbsolutePath($path)) {
$path = getcwd() . '/' . $path;
}
return $path;
}
return parent::getInstallPath($package);
}
}
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
namespace LakeDrops\DrupalEnvironment; namespace LakeDrops\DrupalEnvironment;
use Composer\Composer; use Composer\Composer;
use Composer\Installers\Installer;
use Composer\IO\IOInterface; use Composer\IO\IOInterface;
use Composer\Plugin\Capability\CommandProvider as ComposerCommandProvider; use Composer\Plugin\Capability\CommandProvider as ComposerCommandProvider;
use Composer\Script\Event; use Composer\Script\Event;
...@@ -22,11 +23,20 @@ class Plugin extends BasePlugin { ...@@ -22,11 +23,20 @@ class Plugin extends BasePlugin {
*/ */
protected DrupalScaffoldHandler $scaffoldHandler; protected DrupalScaffoldHandler $scaffoldHandler;
/**
* The installer.
*
* @var Installer
*/
private Installer $installer;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function activate(Composer $composer, IOInterface $io): void { public function activate(Composer $composer, IOInterface $io): void {
parent::activate($composer, $io); parent::activate($composer, $io);
$this->installer = new Installer($io, $composer);
$composer->getInstallationManager()->addInstaller($this->installer);
if (class_exists(DrupalScaffoldHandler::class)) { if (class_exists(DrupalScaffoldHandler::class)) {
$this->scaffoldHandler = new DrupalScaffoldHandler($composer, $io); $this->scaffoldHandler = new DrupalScaffoldHandler($composer, $io);
} }
...@@ -34,13 +44,17 @@ class Plugin extends BasePlugin { ...@@ -34,13 +44,17 @@ class Plugin extends BasePlugin {
if (isset($extra['lakedrops-config-file']) || isset($extra['lakedrops-curated-file'])) { if (isset($extra['lakedrops-config-file']) || isset($extra['lakedrops-curated-file'])) {
if (isset($extra['lakedrops-config-file'])) { if (isset($extra['lakedrops-config-file'])) {
foreach ($this->readJson('config', $extra['lakedrops-config-file'], $io) as $key => $value) { foreach ($this->readJson('config', $extra['lakedrops-config-file'], $io) as $key => $value) {
$composer->getConfig()->getConfigSource()->addConfigSetting($key, $value); $composer->getConfig()
->getConfigSource()
->addConfigSetting($key, $value);
} }
} }
if (isset($extra['lakedrops-curated-file'])) { if (isset($extra['lakedrops-curated-file'])) {
$audit = $composer->getConfig()->get('audit'); $audit = $composer->getConfig()->get('audit');
$audit['ignore'] = $this->readJson('audit ignore', $extra['lakedrops-curated-file'], $io); $audit['ignore'] = $this->readJson('audit ignore', $extra['lakedrops-curated-file'], $io);
$composer->getConfig()->getConfigSource()->addConfigSetting('audit', $audit); $composer->getConfig()
->getConfigSource()
->addConfigSetting('audit', $audit);
} }
} }
...@@ -63,6 +77,14 @@ class Plugin extends BasePlugin { ...@@ -63,6 +77,14 @@ class Plugin extends BasePlugin {
} }
} }
/**
* {@inheritdoc}
*/
public function deactivate(Composer $composer, IOInterface $io): void {
parent::deactivate($composer, $io);
$composer->getInstallationManager()->removeInstaller($this->installer);
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
...@@ -122,8 +144,7 @@ class Plugin extends BasePlugin { ...@@ -122,8 +144,7 @@ class Plugin extends BasePlugin {
try { try {
$data = json_decode(file_get_contents($filename), TRUE, 512, JSON_THROW_ON_ERROR); $data = json_decode(file_get_contents($filename), TRUE, 512, JSON_THROW_ON_ERROR);
$error = json_last_error(); $error = json_last_error();
} } catch (\JsonException) {
catch (\JsonException) {
$error = JSON_ERROR_SYNTAX; $error = JSON_ERROR_SYNTAX;
} }
if ($error !== 0) { if ($error !== 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment