mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
torrent request
This commit is contained in:
34
app/Http/Requests/TorrentRequest.php
Normal file
34
app/Http/Requests/TorrentRequest.php
Normal 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",
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user