X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FPolicies%2FRoundPolicy.php;h=083454a7fceb80c4a228410e9d1a1f781d4e128c;hb=33feb66adcce4897c9c92a0300ddcb45bc269da1;hp=c02d374450facecd0ab239da1aef5430b5238953;hpb=7691214484ff6130ab0cdc9a1920941711443cea;p=alttp.git diff --git a/app/Policies/RoundPolicy.php b/app/Policies/RoundPolicy.php index c02d374..083454a 100644 --- a/app/Policies/RoundPolicy.php +++ b/app/Policies/RoundPolicy.php @@ -41,7 +41,7 @@ class RoundPolicy */ public function create(User $user) { - return $user->role === 'admin'; + return false; } /** @@ -53,7 +53,7 @@ class RoundPolicy */ public function update(User $user, Round $round) { - return $user->role === 'admin'; + return false; } /** @@ -92,6 +92,22 @@ 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)) || + $round->isComplete(); + } + /** * Determine whether the user can set the seed for this round. * @@ -101,7 +117,7 @@ class RoundPolicy */ public function setSeed(User $user, Round $round) { - return !$round->locked && ($user->isAdmin() || $user->isRunner($round->tournament) || $user->isTournamentAdmin($round->tournament)); + return !$round->locked && ($user->isRunner($round->tournament) || $user->isTournamentAdmin($round->tournament)); } /** @@ -113,7 +129,7 @@ class RoundPolicy */ public function lock(User $user, Round $round) { - return !$round->tournament->locked && ($user->isAdmin() || $user->isTournamentAdmin($round->tournament)); + return !$round->tournament->locked && ($user->isTournamentAdmin($round->tournament)); } /**