Add command to restart supervisor in clear-caches-all command

This commit is contained in:
Afiq Hamzah
2024-08-10 07:17:08 +08:00
parent 62f12914fd
commit f4fe3c9184
2 changed files with 72 additions and 0 deletions
+5
View File
@@ -72,6 +72,11 @@ class ClearCachesAll extends Command
} else {
$this->error("Composer install failed:\n" . implode("\n", $output));
}
// run command RestartSupervisor
$output = [];
$returnVar = null;
exec('php artisan supervisor:restart 2>&1', $output, $returnVar);
$this->info("All caches have been cleared.");
}
@@ -0,0 +1,67 @@
<?php
namespace App\Console\Commands;
use Exception;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Log;
class RestartSupervisor extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'supervisor:restart';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Restart all Supervisor services';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
try {
// Check if supervisorctl is installed
$isSupervisorctlInstalled = shell_exec('command -v supervisorctl');
if (!$isSupervisorctlInstalled) {
$errorMessage = 'Error: supervisorctl is not installed.';
$this->error($errorMessage);
Log::error($errorMessage);
return 1;
}
// Restart all Supervisor services
$output = shell_exec('supervisorctl restart all 2>&1');
// Log and display the output
Log::info("supervisorctl restart all executed with output: {$output}");
$this->info("Supervisor services restarted. Output: {$output}");
return 0;
} catch (Exception $e) {
$this->error("An error occurred: " . $e->getMessage());
Log::error("Error in RestartSupervisor command: " . $e->getMessage());
return 1;
}
}
}