mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-15 18:24:56 +02:00
Revised Commands -> use symfony/console -> php ma (MyAAC)
Usage: php ma list php ma cache:clear php ma plugin:install guild-wars.zip More sophisticated: echo "Hello, this is hello world message" | php ma mail:send test@test.com --subject "This is subject" Also: custom commands can be added via Plugins: just need to return new class instance that extends \MyAAC\Commands\Command in plugins/*/commands folder
This commit is contained in:
50
system/src/Commands/PluginInstallCommand.php
Normal file
50
system/src/Commands/PluginInstallCommand.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace MyAAC\Commands;
|
||||
|
||||
use MyAAC\Plugins;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||
|
||||
class PluginInstallCommand extends Command
|
||||
{
|
||||
protected function configure(): void
|
||||
{
|
||||
$this->setName('plugin:install')
|
||||
->setDescription('This command installs plugin')
|
||||
->addArgument('plugin', InputArgument::REQUIRED, 'Path to zip file (plugin) that you want to install');
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
$io = new SymfonyStyle($input, $output);
|
||||
|
||||
$pathToFile = $input->getArgument('plugin');
|
||||
|
||||
$ext = strtolower(pathinfo($pathToFile, PATHINFO_EXTENSION));
|
||||
if($ext !== 'zip') {// check if it is zipped/compressed file
|
||||
$io->error('Please install only .zip files');
|
||||
return 2;
|
||||
}
|
||||
|
||||
if(!file_exists($pathToFile)) {
|
||||
$io->error('File ' . $pathToFile . ' does not exist');
|
||||
return 3;
|
||||
}
|
||||
|
||||
if(!Plugins::install($pathToFile)){
|
||||
$io->error(Plugins::getError());
|
||||
return 4;
|
||||
}
|
||||
|
||||
foreach(Plugins::getWarnings() as $warning) {
|
||||
$io->warning($warning);
|
||||
}
|
||||
|
||||
$info = Plugins::getPluginJson();
|
||||
$io->success((isset($info['name']) ? $info['name'] . ' p' : 'P') . 'lugin has been successfully installed.');
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user