3 namespace App\Policies;
5 use App\Models\Tournament;
7 use Illuminate\Auth\Access\HandlesAuthorization;
11 use HandlesAuthorization;
14 * Determine whether the user can view any models.
16 * @param \App\Models\User $user
17 * @return \Illuminate\Auth\Access\Response|bool
19 public function viewAny(?User $user)
25 * Determine whether the user can view the model.
27 * @param \App\Models\User $user
28 * @param \App\Models\Tournament $tournament
29 * @return \Illuminate\Auth\Access\Response|bool
31 public function view(?User $user, Tournament $tournament)
37 * Determine whether the user can create models.
39 * @param \App\Models\User $user
40 * @return \Illuminate\Auth\Access\Response|bool
42 public function create(User $user)
44 return $user->isAdmin();
48 * Determine whether the user can update the model.
50 * @param \App\Models\User $user
51 * @param \App\Models\Tournament $tournament
52 * @return \Illuminate\Auth\Access\Response|bool
54 public function update(User $user, Tournament $tournament)
56 return $user->isAdmin() || $user->isTournamentAdmin($tournament);
60 * Determine whether the user can delete the model.
62 * @param \App\Models\User $user
63 * @param \App\Models\Tournament $tournament
64 * @return \Illuminate\Auth\Access\Response|bool
66 public function delete(User $user, Tournament $tournament)
72 * Determine whether the user can restore the model.
74 * @param \App\Models\User $user
75 * @param \App\Models\Tournament $tournament
76 * @return \Illuminate\Auth\Access\Response|bool
78 public function restore(User $user, Tournament $tournament)
84 * Determine whether the user can permanently delete the model.
86 * @param \App\Models\User $user
87 * @param \App\Models\Tournament $tournament
88 * @return \Illuminate\Auth\Access\Response|bool
90 public function forceDelete(User $user, Tournament $tournament)
96 * Determine whether the user can add rounds the model.
98 * @param \App\Models\User $user
99 * @param \App\Models\Tournament $tournament
100 * @return \Illuminate\Auth\Access\Response|bool
102 public function addRound(User $user, Tournament $tournament)
104 return !$tournament->locked && ($user->isRunner($tournament) || $user->isTournamentAdmin($tournament));
108 * Determine whether the user can apply to participate.
110 * @param \App\Models\User $user
111 * @param \App\Models\Tournament $tournament
112 * @return \Illuminate\Auth\Access\Response|bool
114 public function apply(User $user, Tournament $tournament)
116 return $tournament->accept_applications && !$user->isRunner($tournament) && !$user->isApplicant($tournament);
120 * Determine whether the user can view the tournament protocol.
122 * @param \App\Models\User $user
123 * @param \App\Models\Tournament $tournament
124 * @return \Illuminate\Auth\Access\Response|bool
126 public function viewProtocol(User $user, Tournament $tournament)
128 return $user->isTournamentCrew($tournament);