Option to clear specified plugin settings by name

This commit is contained in:
slawkens 2024-11-08 11:09:46 +01:00
parent 22aa80ab7b
commit 71ec14c81b

View File

@ -14,7 +14,11 @@ class SettingsResetCommand extends Command
protected function configure(): void protected function configure(): void
{ {
$this->setName('settings:reset') $this->setName('settings:reset')
->setDescription('Removes all settings in database'); ->setDescription('Removes settings in database')
->addArgument('name',
InputArgument::OPTIONAL,
'Name of the plugin'
);
} }
protected function execute(InputInterface $input, OutputInterface $output): int protected function execute(InputInterface $input, OutputInterface $output): int
@ -23,16 +27,30 @@ class SettingsResetCommand extends Command
$io = new SymfonyStyle($input, $output); $io = new SymfonyStyle($input, $output);
if (!$io->confirm('Are you sure you want to reset all settings in database?', false)) { $name = $input->getArgument('name');
$all = !$name ? 'all' : $name;
if (!$io->confirm("Are you sure you want to reset {$all} settings in database?", false)) {
return Command::FAILURE; return Command::FAILURE;
} }
SettingsModel::truncate(); if (!$name) {
SettingsModel::truncate();
}
else {
$settingsModel = SettingsModel::where('name', $name)->first();
if (!$settingsModel) {
$io->warning('No settings for this plugin saved in database');
return Command::SUCCESS;
}
SettingsModel::where('name', $name)->delete();
}
$settings = Settings::getInstance(); $settings = Settings::getInstance();
$settings->clearCache(); $settings->clearCache();
$io->success('Setting cleared successfully'); $io->success('Settings cleared successfully');
return Command::SUCCESS; return Command::SUCCESS;
} }
} }