Completed
Push — api/develop ( ed8100...e7c944 )
by Bertrand
04:48
created

JobTitleRequest::authorize()   B

Complexity

Conditions 5
Paths 5

Size

Total Lines 24
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 5.0187

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 24
ccs 10
cts 11
cp 0.9091
rs 8.5125
cc 5
eloc 13
nc 5
nop 0
crap 5.0187
1
<?php
2
3
/**
4
 * This file is part of the HRis Software package.
5
 *
6
 * HRis - Human Resource and Payroll System
7
 *
8
 * @link    http://github.com/HB-Co/HRis
9
 */
10
namespace HRis\Api\Requests\Admin\Job;
11
12
use HRis\Http\Requests\Request;
13
14
class JobTitleRequest extends Request
15
{
16
    /**
17
     * Get the validation rules that apply to the request.
18
     *
19
     * @return array
20
     *
21
     * @author Bertrand Kintanar <[email protected]>
22
     */
23 14
    public function rules()
24
    {
25 14
        if ($this->isMethod('post')) {
26 8
            return ['name' => 'required|unique:job_titles'];
27
        }
28
29 10
        return [];
30
    }
31
32
    /**
33
     * Determine if the user is authorized to make this request.
34
     *
35
     * @return bool
36
     *
37
     * @author Bertrand Kintanar <[email protected]>
38
     */
39 14
    public function authorize()
40
    {
41 14
        $permission = 'admin.job.titles';
42
43
        // Create
44 14
        if ($this->isMethod('post')) {
45 8
            return $this->logged_user->hasAccess($permission.'.create');
46
        } // Delete
47
        else {
48 10
            if ($this->isMethod('delete')) {
49 4
                return $this->logged_user->hasAccess($permission.'.delete');
50
            } // View
51
            else {
52 6
                if ($this->isMethod('get')) {
53 2
                    return $this->logged_user->hasAccess($permission.'.view');
54
                } // Update
55
                else {
56 4
                    if ($this->isMethod('patch')) {
57 4
                        return $this->logged_user->hasAccess($permission.'.update');
58
                    }
59
                }
60
            }
61
        }
62
    }
63
}
64