mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
55 lines
2.0 KiB
PHP
55 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Servers;
|
|
|
|
use Illuminate\Support\Arr;
|
|
use App\Models\Server;
|
|
use Illuminate\Database\ConnectionInterface;
|
|
use App\Traits\Services\ReturnsUpdatedModels;
|
|
use App\Repositories\Daemon\DaemonServerRepository;
|
|
use App\Exceptions\Http\Connection\DaemonConnectionException;
|
|
|
|
class DetailsModificationService
|
|
{
|
|
use ReturnsUpdatedModels;
|
|
|
|
/**
|
|
* DetailsModificationService constructor.
|
|
*/
|
|
public function __construct(private ConnectionInterface $connection, private DaemonServerRepository $serverRepository) {}
|
|
|
|
/**
|
|
* Update the details for a single server instance.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function handle(Server $server, array $data): Server
|
|
{
|
|
return $this->connection->transaction(function () use ($data, $server) {
|
|
$owner = $server->owner_id;
|
|
|
|
$server->forceFill([
|
|
'external_id' => Arr::get($data, 'external_id'),
|
|
'owner_id' => Arr::get($data, 'owner_id'),
|
|
'name' => Arr::get($data, 'name'),
|
|
'description' => Arr::get($data, 'description') ?? '',
|
|
])->saveOrFail();
|
|
|
|
// If the owner_id value is changed we need to revoke any tokens that exist for the server
|
|
// on the daemon instance so that the old owner no longer has any permission to access the
|
|
// websockets.
|
|
if ($server->owner_id !== $owner) {
|
|
try {
|
|
$this->serverRepository->setServer($server)->revokeUserJTI($owner);
|
|
} catch (DaemonConnectionException $exception) {
|
|
// Do nothing. A failure here is not ideal, but it is likely to be caused by daemon
|
|
// being offline, or in an entirely broken state. Remember, these tokens reset every
|
|
// few minutes by default, we're just trying to help it along a little quicker.
|
|
}
|
|
}
|
|
|
|
return $server;
|
|
});
|
|
}
|
|
}
|