mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
43 lines
1.1 KiB
PHP
Executable File
43 lines
1.1 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\PHP;
|
|
|
|
use App\Models\Service;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Throwable;
|
|
|
|
class UpdatePHPIni
|
|
{
|
|
/**
|
|
* @throws ValidationException
|
|
*/
|
|
public function update(Service $service, string $ini): void
|
|
{
|
|
$tmpName = Str::random(10).strtotime('now');
|
|
try {
|
|
Storage::disk('local')->put($tmpName, $ini);
|
|
$service->server->ssh('root')->upload(
|
|
Storage::disk('local')->path($tmpName),
|
|
"/etc/php/$service->version/cli/php.ini"
|
|
);
|
|
$this->deleteTempFile($tmpName);
|
|
} catch (Throwable) {
|
|
$this->deleteTempFile($tmpName);
|
|
throw ValidationException::withMessages([
|
|
'ini' => __("Couldn't update php.ini file!"),
|
|
]);
|
|
}
|
|
|
|
$service->restart();
|
|
}
|
|
|
|
private function deleteTempFile(string $name): void
|
|
{
|
|
if (Storage::disk('local')->exists($name)) {
|
|
Storage::disk('local')->delete($name);
|
|
}
|
|
}
|
|
}
|