mirror of
https://github.com/pterodactyl/panel.git
synced 2026-06-12 23:31:53 -05:00
38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Services\Locations;
|
|
|
|
use Pterodactyl\Models\Location;
|
|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
|
use Pterodactyl\Contracts\Repository\LocationRepositoryInterface;
|
|
use Pterodactyl\Exceptions\Service\Location\HasActiveNodesException;
|
|
|
|
class LocationDeletionService
|
|
{
|
|
/**
|
|
* LocationDeletionService constructor.
|
|
*/
|
|
public function __construct(
|
|
protected LocationRepositoryInterface $repository,
|
|
protected NodeRepositoryInterface $nodeRepository,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Delete an existing location.
|
|
*
|
|
* @throws HasActiveNodesException
|
|
*/
|
|
public function handle(Location|int $location): ?int
|
|
{
|
|
$location = $location instanceof Location ? $location->id : $location;
|
|
|
|
$count = $this->nodeRepository->findCountWhere([['location_id', '=', $location]]);
|
|
if ($count > 0) {
|
|
throw new HasActiveNodesException(trans('exceptions.locations.has_nodes'));
|
|
}
|
|
|
|
return $this->repository->delete($location);
|
|
}
|
|
}
|