mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Actions\PHP;
|
|
|
|
use App\Enums\PHPIniType;
|
|
use App\Models\Server;
|
|
use App\SSH\Services\PHP\PHP;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Validation\Rule;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class GetPHPIni
|
|
{
|
|
public function getIni(Server $server, array $input): string
|
|
{
|
|
$this->validate($server, $input);
|
|
|
|
$php = $server->php($input['version']);
|
|
|
|
try {
|
|
/** @var PHP $handler */
|
|
$handler = $php->handler();
|
|
|
|
return $handler->getPHPIni($input['type']);
|
|
} catch (\Throwable $e) {
|
|
throw ValidationException::withMessages(
|
|
['ini' => $e->getMessage()]
|
|
);
|
|
}
|
|
}
|
|
|
|
public function validate(Server $server, array $input): void
|
|
{
|
|
Validator::make($input, [
|
|
'type' => [
|
|
'required',
|
|
Rule::in([PHPIniType::CLI, PHPIniType::FPM]),
|
|
],
|
|
])->validate();
|
|
|
|
if (! isset($input['version']) || ! in_array($input['version'], $server->installedPHPVersions())) {
|
|
throw ValidationException::withMessages(
|
|
['version' => __('This version is not installed')]
|
|
);
|
|
}
|
|
}
|
|
}
|