Added init command, improved plugin api

This commit is contained in:
2021-12-08 02:36:46 +01:00
parent 0c9fd2e892
commit 5af63f771a
4 changed files with 71 additions and 1 deletions

View File

@ -0,0 +1,42 @@
<?php
namespace Spark\Commands;
use Symfony\Component\Console\Attribute\AsCommand;
use Spark\Commands\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
#[AsCommand(name:'init', description:'Initialize a new spark in the current directory')]
class InitCommand extends Command
{
protected function configure()
{
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$configDir = getcwd()."/.spark";
if (is_dir($configDir)) {
$output->writeln("<notice>Spark already initialized?</>");
return Command::FAILURE;
}
mkdir($configDir);
mkdir($configDir."/plugins");
file_put_contents($configDir."/spark.json", json_encode([
'preload' => [
'./.spark/plugins/*'
],
'scripts' => [
'hello' => "echo 'Hello World\n'"
]
], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
$output->writeln("<fg=green>Initialized new spark in ".getcwd()."/.spark</>");
return Command::SUCCESS;
}
}