46 lines
905 B
PHP
46 lines
905 B
PHP
<?php
|
|
|
|
namespace Inertia\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class StopSsr extends Command
|
|
{
|
|
/**
|
|
* The console command name.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $name = 'inertia:stop-ssr';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Stop the Inertia SSR server';
|
|
|
|
/**
|
|
* Stop the SSR server.
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
$url = str_replace('/render', '', config('inertia.ssr.url', 'http://127.0.0.1:13714')).'/shutdown';
|
|
|
|
$ch = curl_init($url);
|
|
curl_exec($ch);
|
|
|
|
if (curl_error($ch) !== 'Empty reply from server') {
|
|
$this->error('Unable to connect to Inertia SSR server.');
|
|
|
|
return self::FAILURE;
|
|
}
|
|
|
|
$this->info('Inertia SSR server stopped.');
|
|
|
|
curl_close($ch);
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
}
|