tournament->locked && $user->isTournamentAdmin($round->tournament); } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Round $round) { return false; } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Round $round) { return false; } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Round $round) { return false; } /** * Determine whether the user can see the results for this round. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function seeResults(?User $user, Round $round) { return $round->locked || ($user && $user->hasFinished($round)) || ($user && $user->isTournamentMonitor($round->tournament)) || $round->isComplete(); } /** * Determine whether the user can set the seed for this round. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function setSeed(User $user, Round $round) { return !$round->locked && ($user->isRunner($round->tournament) || $user->isTournamentAdmin($round->tournament)); } /** * Determine whether the user can lock this round. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function lock(User $user, Round $round) { return !$round->tournament->locked && ($user->isTournamentAdmin($round->tournament)); } /** * Determine whether the user can unlock this round. * * @param \App\Models\User $user * @param \App\Models\Round $round * @return \Illuminate\Auth\Access\Response|bool */ public function unlock(User $user, Round $round) { return $this->lock($user, $round); } }