X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FPolicies%2FRoundPolicy.php;h=ec71a890802fa21d7caf5e81a458daf89a170cf0;hb=3a774bb649734fc3a2135ec1b52cef9a049880ee;hp=230b2254d9c9469d29d388c56905aa9b0647464b;hpb=d1f28ea443b090c7593791eba9631796ccaeafe1;p=alttp.git diff --git a/app/Policies/RoundPolicy.php b/app/Policies/RoundPolicy.php index 230b225..ec71a89 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,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,7 +118,7 @@ class RoundPolicy */ public function setSeed(User $user, Round $round) { - return $user->role === 'admin' || ($user->isParticipant($round->tournament) && !$round->locked); + return !$round->locked && ($user->isRunner($round->tournament) || $user->isTournamentAdmin($round->tournament)); } /** @@ -113,7 +130,7 @@ class RoundPolicy */ public function lock(User $user, Round $round) { - return $user->role === 'admin' || $user->isTournamentAdmin($round->tournament); + return !$round->tournament->locked && ($user->isTournamentAdmin($round->tournament)); } /**