X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FPolicies%2FRoundPolicy.php;h=f9f2d461bd76ff0b425f1a4f8b3dc6c688e45178;hb=1c91e5dcedd930bea5fe44ea95a77a9ecd0177a4;hp=1e29803d24764f258b311c806c9456c98a064b57;hpb=a907ef7c6676fef11f42933b2d79bdd496b20122;p=alttp.git diff --git a/app/Policies/RoundPolicy.php b/app/Policies/RoundPolicy.php index 1e29803..f9f2d46 100644 --- a/app/Policies/RoundPolicy.php +++ b/app/Policies/RoundPolicy.php @@ -92,6 +92,23 @@ class RoundPolicy 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)) || + ($user && $user->isTournamentAdmin($round->tournament) && !$user->isRunner($round->tournament)) || + $round->isComplete(); + } + /** * Determine whether the user can set the seed for this round. * @@ -101,6 +118,31 @@ class RoundPolicy */ public function setSeed(User $user, Round $round) { - return $user->role === 'admin' || $user->isParticipant($round->tournament); + return !$round->locked && ($user->isAdmin() || $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->isAdmin() || $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); } + }