mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
63 lines
1.6 KiB
PHP
Executable File
63 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Server;
|
|
|
|
use App\Models\Server;
|
|
use App\ValidationRules\RestrictedIPAddressesRule;
|
|
use Illuminate\Validation\Rule;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class EditServer
|
|
{
|
|
/**
|
|
* @throws ValidationException
|
|
*/
|
|
public function edit(Server $server, array $input): Server
|
|
{
|
|
$checkConnection = false;
|
|
if (isset($input['name'])) {
|
|
$server->name = $input['name'];
|
|
}
|
|
if (isset($input['ip'])) {
|
|
if ($server->ip !== $input['ip']) {
|
|
$checkConnection = true;
|
|
}
|
|
$server->ip = $input['ip'];
|
|
}
|
|
if (isset($input['port'])) {
|
|
if ($server->port !== $input['port']) {
|
|
$checkConnection = true;
|
|
}
|
|
$server->port = $input['port'];
|
|
}
|
|
$server->save();
|
|
|
|
if ($checkConnection) {
|
|
return $server->checkConnection();
|
|
}
|
|
|
|
return $server;
|
|
}
|
|
|
|
public static function rules(Server $server): array
|
|
{
|
|
return [
|
|
'name' => [
|
|
'required',
|
|
'max:255',
|
|
Rule::unique('servers')->where('project_id', $server->project_id)->ignore($server->id),
|
|
],
|
|
'ip' => [
|
|
'string',
|
|
new RestrictedIPAddressesRule,
|
|
Rule::unique('servers')->where('project_id', $server->project_id)->ignore($server->id),
|
|
],
|
|
'port' => [
|
|
'integer',
|
|
'min:1',
|
|
'max:65535',
|
|
],
|
|
];
|
|
}
|
|
}
|