versa/src/Console/Command/BuildCommand.php
Oliver Davies 18ce1e84c6 Add Fractal to versa build and automatically
...select the language if there is a `package.json` file
2024-02-22 00:36:43 +00:00

106 lines
4.1 KiB
PHP

<?php
namespace App\Console\Command;
use App\Enum\ProjectLanguage;
use App\Enum\ProjectType;
use App\Process\Process;
use RuntimeException;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Filesystem\Filesystem;
final class BuildCommand extends AbstractCommand
{
public function execute(InputInterface $input, OutputInterface $output): int
{
$projectLanguage = null;
$projectType = null;
$extraArgs = $input->getOption('extra-args');
$workingDir = $input->getOption('working-dir');
$filesystem = new Filesystem();
// Attempt to prepopulate some of the options, such as the project type
// based on its dependencies.
// TODO: move this logic to a service so it can be tested.
if ($filesystem->exists($workingDir.'/composer.json')) {
$projectLanguage = ProjectLanguage::PHP->value;
$json = json_decode(
json: strval(file_get_contents($workingDir.'/composer.json')),
associative: true,
);
$dependencies = array_keys($json['require']);
if (in_array(needle: 'drupal/core', haystack: $dependencies, strict: true) || in_array(needle: 'drupal/core-recommended', haystack: $dependencies, strict: true)) {
$projectType = ProjectType::Drupal->value;
} elseif (in_array(needle: 'sculpin/sculpin', haystack: $dependencies, strict: true)) {
$projectType = ProjectType::Sculpin->value;
} elseif (in_array(needle: 'symfony/framework-bundle', haystack: $dependencies, strict: true)) {
$projectType = ProjectType::Symfony->value;
}
} elseif ($filesystem->exists($workingDir.'/fractal.config.js')) {
$projectLanguage = ProjectLanguage::JavaScript->value;
$projectType = ProjectType::Fractal->value;
}
// Even if the project language or type is found automatically, still
// override it with the option value if there is one.
$projectLanguage = $input->getOption('language') ?? $projectLanguage;
$projectType = $input->getOption('type') ?? $projectType;
$isDockerCompose = $filesystem->exists($workingDir . '/docker-compose.yaml');
switch ($projectLanguage) {
case ProjectLanguage::PHP->value:
switch ($projectType) {
case ProjectType::Drupal->value:
if ($isDockerCompose) {
$process = Process::create(
command: ['docker', 'compose', 'build'],
extraArgs: $extraArgs,
workingDir: $workingDir,
);
$process->run();
}
break;
case ProjectType::Symfony->value:
// TODO: run humbug/box if added to generate a phar?
throw new RuntimeException('No build command set for Symfony projects.');
case ProjectType::Sculpin->value:
$process = Process::create(
command: ['./vendor/bin/sculpin', 'generate'],
extraArgs: $extraArgs,
workingDir: $workingDir,
);
$process->run();
break;
}
case ProjectLanguage::JavaScript->value:
switch ($projectType) {
case ProjectType::Fractal->value:
$process = Process::create(
command: ['npx', 'fractal', 'build'],
extraArgs: $extraArgs,
workingDir: $workingDir,
);
$process->run();
break;
}
break;
}
return Command::SUCCESS;
}
}