torrent request

This commit is contained in:
xiaomlove
2024-04-16 02:36:51 +08:00
parent b55a014c59
commit 9ccb67dd24
3 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?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",
];
}
}