mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
When removing a plugin via CLI or rolling back all DB migrations, we will now require the user to type out the plugin name (or "DELETE" for "winter:down") as a confirmation in order to proceed. This ensures that the user is well aware of what they are doing. The "plugin:remove" command has now been added a "--no-rollback" option. When used, the plugin files will be removed, but the DB will remain untouched, allowing people to remove a plugin without losing their data. Refs: https://github.com/wintercms/wn-translate-plugin/issues/13#issuecomment-988364253
87 lines
2.1 KiB
PHP
87 lines
2.1 KiB
PHP
<?php namespace System\Console;
|
|
|
|
use App;
|
|
use Illuminate\Console\Command;
|
|
use System\Classes\UpdateManager;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
/**
|
|
* Console command to tear down the database.
|
|
*
|
|
* This destroys all database tables that are registered for Winter and all plugins.
|
|
*
|
|
* @package winter\wn-system-module
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*/
|
|
class WinterDown extends Command
|
|
{
|
|
use \Illuminate\Console\ConfirmableTrait;
|
|
|
|
/**
|
|
* The console command name.
|
|
*/
|
|
protected $name = 'winter:down';
|
|
|
|
/**
|
|
* The console command description.
|
|
*/
|
|
protected $description = 'Destroys all database tables for Winter and all plugins.';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// Register aliases for backwards compatibility with October
|
|
$this->setAliases(['october:down']);
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
if (App::isProduction() && !$this->option('force')) {
|
|
$this->warn('YOUR APPLICATION IS IN PRODUCTION');
|
|
}
|
|
|
|
$this->warn('This will completely delete all database tables in use with your Winter installation.');
|
|
|
|
$confirmed = false;
|
|
$prompt = 'Please type "DELETE" to proceed';
|
|
do {
|
|
if (strtolower($this->ask($prompt)) === 'delete') {
|
|
$confirmed = true;
|
|
}
|
|
} while ($confirmed === false);
|
|
|
|
UpdateManager::instance()
|
|
->setNotesOutput($this->output)
|
|
->uninstall()
|
|
;
|
|
}
|
|
|
|
/**
|
|
* Get the console command options.
|
|
*/
|
|
protected function getOptions()
|
|
{
|
|
return [
|
|
['force', null, InputOption::VALUE_NONE, 'Force the operation to run and ignore production warning.'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the default confirmation callback.
|
|
* @return \Closure
|
|
*/
|
|
protected function getDefaultConfirmCallback()
|
|
{
|
|
return function () {
|
|
return true;
|
|
};
|
|
}
|
|
}
|