31 lines
734 B
PHP
31 lines
734 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Servers;
|
|
|
|
use Pterodactyl\Models\Server;
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
class SendPowerRequest extends ClientApiRequest
|
|
{
|
|
/**
|
|
* Determine if the user has permission to send a power command to a server.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user()->can('power-' . $this->input('signal', '_undefined'), $this->getModel(Server::class));
|
|
}
|
|
|
|
/**
|
|
* Rules to validate this request aganist.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'signal' => 'required|string|in:start,stop,restart,kill',
|
|
];
|
|
}
|
|
}
|