Files
nexusphp/app/Http/Requests/TorrentRequest.php
2024-04-16 02:36:51 +08:00

35 lines
681 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class TorrentRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
$user = $this->user();
return $user->uploadpos == "yes";
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
"descr" => "required",
"type" => "required",
"name" => "required",
"file" => "required|file",
];
}
}