35 lines
797 B
PHP
35 lines
797 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Locations;
|
|
|
|
use Pterodactyl\Models\Location;
|
|
|
|
class UpdateLocationRequest extends StoreLocationRequest
|
|
{
|
|
/**
|
|
* Determine if the requested location exists on the Panel.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function resourceExists(): bool
|
|
{
|
|
$location = $this->route()->parameter('location');
|
|
|
|
return $location instanceof Location && $location->exists;
|
|
}
|
|
|
|
/**
|
|
* Rules to validate this request against.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
$locationId = $this->route()->parameter('location')->id;
|
|
|
|
return collect(Location::getRulesForUpdate($locationId))->only([
|
|
'short',
|
|
'long',
|
|
])->toArray();
|
|
}
|
|
}
|