winter/modules/system/console/PluginRefresh.php
2017-07-14 16:28:47 +10:00

91 lines
2.1 KiB
PHP

<?php namespace System\Console;
use Illuminate\Console\Command;
use System\Classes\UpdateManager;
use System\Classes\PluginManager;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
/**
* Console command to refresh a plugin.
*
* This destroys all database tables for a specific plugin, then builds them up again.
* It is a great way for developers to debug and develop new plugins.
*
* @package october\system
* @author Alexey Bobkov, Samuel Georges
*/
class PluginRefresh extends Command
{
/**
* The console command name.
* @var string
*/
protected $name = 'plugin:refresh';
/**
* The console command description.
* @var string
*/
protected $description = 'Removes and re-adds an existing plugin.';
/**
* Create a new command instance.
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
* @return void
*/
public function handle()
{
/*
* Lookup plugin
*/
$pluginName = $this->argument('name');
$pluginName = PluginManager::instance()->normalizeIdentifier($pluginName);
if (!PluginManager::instance()->exists($pluginName)) {
throw new \InvalidArgumentException(sprintf('Plugin "%s" not found.', $pluginName));
}
$manager = UpdateManager::instance()->setNotesOutput($this->output);
/*
* Rollback plugin
*/
$manager->rollbackPlugin($pluginName);
/*
* Update plugin
*/
$this->output->writeln('<info>Reinstalling plugin...</info>');
$manager->updatePlugin($pluginName);
}
/**
* Get the console command arguments.
* @return array
*/
protected function getArguments()
{
return [
['name', InputArgument::REQUIRED, 'The name of the plugin. Eg: AuthorName.PluginName'],
];
}
/**
* Get the console command options.
* @return array
*/
protected function getOptions()
{
return [];
}
}