47 lines
954 B
PHP
47 lines
954 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pterodactyl\Http\Controllers\API\Admin\Locations;
|
||
|
|
||
|
use Pterodactyl\Models\Location;
|
||
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
||
|
use Pterodactyl\Http\Requests\API\Admin\ApiAdminRequest;
|
||
|
|
||
|
class StoreLocationRequest extends ApiAdminRequest
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $resource = AdminAcl::RESOURCE_LOCATIONS;
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
protected $permission = AdminAcl::WRITE;
|
||
|
|
||
|
/**
|
||
|
* Rules to validate the request aganist.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return collect(Location::getCreateRules())->only([
|
||
|
'long',
|
||
|
'short',
|
||
|
])->toArray();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Rename fields to be more clear in error messages.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function attributes()
|
||
|
{
|
||
|
return [
|
||
|
'long' => 'Location Description',
|
||
|
'short' => 'Location Identifier',
|
||
|
];
|
||
|
}
|
||
|
}
|