mirror of
https://github.com/koel/koel
synced 2024-11-15 00:47:18 +00:00
48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Services\License\Contracts\LicenseServiceInterface;
|
|
use Illuminate\Console\Command;
|
|
use Throwable;
|
|
|
|
class DeactivateLicenseCommand extends Command
|
|
{
|
|
protected $signature = 'koel:license:deactivate';
|
|
protected $description = 'Deactivate the currently active Koel Plus license';
|
|
|
|
public function __construct(private readonly LicenseServiceInterface $licenseService)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function handle(): int
|
|
{
|
|
$status = $this->licenseService->getStatus();
|
|
|
|
if ($status->hasNoLicense()) {
|
|
$this->components->warn('No active Plus license found.');
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
|
|
if (!$this->confirm('Are you sure you want to deactivate your Koel Plus license?')) {
|
|
$this->output->warning('License deactivation aborted.');
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
|
|
$this->components->info('Deactivating your license…');
|
|
|
|
try {
|
|
$this->licenseService->deactivate($status->license);
|
|
$this->components->info('Koel Plus has been deactivated. Plus features are now disabled.');
|
|
|
|
return self::SUCCESS;
|
|
} catch (Throwable $e) {
|
|
$this->components->error('Failed to deactivate Koel Plus: ' . $e->getMessage());
|
|
|
|
return self::FAILURE;
|
|
}
|
|
}
|
|
}
|