source: app/Http/Requests/Dashboard/DocumentRequest.php@ e6c1f87

develop
Last change on this file since e6c1f87 was e6c1f87, checked in by beratkjufliju <kufliju@…>, 3 years ago

added pagination, is_important

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<?php
2
3namespace App\Http\Requests\Dashboard;
4
5use App\Models\Department;
6use App\Models\Document;
7use App\Models\FileType;
8use Illuminate\Foundation\Http\FormRequest;
9
10class DocumentRequest extends FormRequest
11{
12 /**
13 * Determine if the user is authorized to make this request.
14 *
15 * @return bool
16 */
17 public function authorize()
18 {
19 if ($this->isMethod("patch")) {
20 $document = Document::find($this->route("id"));
21 return auth()->user()->hasPermission("edit_all_documents") || ($document->user->id == auth()->user()->id);
22 }
23
24 return true;
25 }
26
27 /**
28 * Get the validation rules that apply to the request.
29 *
30 * @return array
31 */
32 public function rules()
33 {
34
35 $rules = [
36 "arch_id" => [
37 "required",
38 function($attribute, $value, $fail) {
39 $arch_id = $this->request->get('arch_id');
40 $deptId = explode('/', $arch_id)[0];
41 if ($deptId !== Department::find($this->request->get('department'))->code) {
42 $fail("Document Archive ID field format is invalid");
43 }
44 }
45 ],
46 "name" => "required|min:10|max:255",
47 "department" => "required|integer|exists:departments,id",
48 "description" => "required|min:30",
49 ];
50
51 if ($this->isMethod("patch")) {
52 $fileRules = [
53 "file_item.*" => "mimes:jpg,jpeg,png|max:4096"
54 ];
55 } else {
56 $fileRules = [
57 "file_item.*" => "mimes:jpg,jpeg,png|max:4096"
58 ];
59 }
60
61 $rules = array_merge(
62 $rules,
63 $fileRules,
64 );
65
66 return $rules;
67 }
68}
Note: See TracBrowser for help on using the repository browser.