| Total Complexity | 15 |
| Total Lines | 103 |
| Duplicated Lines | 0 % |
| Coverage | 38.1% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class JobPolicy extends BasePolicy |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Determine whether the user can view the job poster. |
||
| 14 | * |
||
| 15 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 16 | * @param \App\Models\JobPoster $jobPoster |
||
|
2 ignored issues
–
show
|
|||
| 17 | * @return mixed |
||
| 18 | */ |
||
| 19 | 8 | public function view(?User $user, JobPoster $jobPoster) |
|
| 27 | ); |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Determine whether the user can create job posters. |
||
| 32 | * |
||
| 33 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | public function create(User $user) |
||
| 37 | { |
||
| 38 | //Any manager can create a new job poster |
||
| 39 | //TODO: for now, only Admins can create posters. This will change soon. |
||
| 40 | return $user->hasRole('admin'); |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Determine whether the user can update the job poster. |
||
| 45 | * |
||
| 46 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 47 | * @param \App\Models\JobPoster $jobPoster |
||
|
2 ignored issues
–
show
|
|||
| 48 | * @return mixed |
||
| 49 | */ |
||
| 50 | 7 | public function update(User $user, JobPoster $jobPoster) |
|
| 51 | { |
||
| 52 | //Only managers can edit jobs, and only their own, managers can't publish jobs or edit published jobs |
||
| 53 | 7 | return $user->user_role->name == 'manager' && |
|
| 54 | 7 | $jobPoster->manager->user->id == $user->id && |
|
| 55 | 7 | !$jobPoster->published; |
|
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Determine whether the user can review applications to the job poster. |
||
| 60 | * |
||
| 61 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 62 | * @param \App\Models\JobPoster $jobPoster |
||
|
2 ignored issues
–
show
|
|||
| 63 | * @return mixed |
||
| 64 | */ |
||
| 65 | public function review(User $user, JobPoster $jobPoster) |
||
| 71 | } |
||
| 72 | |||
| 73 | |||
| 74 | /** |
||
| 75 | * Determine whether the user can delete the job poster. |
||
| 76 | * |
||
| 77 | * @param \App\Models\User $user User object making the request. |
||
| 78 | * @param \App\Models\JobPoster $jobPoster Job Poster object being acted upon. |
||
| 79 | * |
||
| 80 | * @return boolean |
||
| 81 | */ |
||
| 82 | public function delete(User $user, JobPoster $jobPoster) : bool |
||
| 83 | { |
||
| 84 | // Jobs can only be deleted when they're in the 'draft' |
||
| 85 | // state, and only by managers that created them. |
||
| 86 | return $user->user_role->name == 'manager' && |
||
| 87 | $jobPoster->manager->user->id == $user->id && |
||
| 88 | !$jobPoster->published; |
||
| 89 | } |
||
| 90 | |||
| 91 | /** |
||
| 92 | * Determine whether the user can restore the job poster. |
||
| 93 | * |
||
| 94 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 95 | * @param \App\Models\JobPoster $jobPoster |
||
|
2 ignored issues
–
show
|
|||
| 96 | * @return mixed |
||
| 97 | */ |
||
| 98 | public function restore(User $user, JobPoster $jobPoster) |
||
| 100 | // |
||
| 101 | } |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Determine whether the user can permanently delete the job poster. |
||
| 105 | * |
||
| 106 | * @param \App\Models\User $user |
||
|
2 ignored issues
–
show
|
|||
| 107 | * @param \App\Models\JobPoster $jobPoster |
||
|
2 ignored issues
–
show
|
|||
| 108 | * @return mixed |
||
| 109 | */ |
||
| 110 | public function forceDelete(User $user, JobPoster $jobPoster) |
||
| 115 |