]> git.localhorst.tv Git - alttp.git/blobdiff - app/Policies/TournamentPolicy.php
respond to whispers
[alttp.git] / app / Policies / TournamentPolicy.php
index b79f8c17b11e2dac8cf359f4241f7fe75e22bc18..f58eee76dc12be424ddf5c26f89d49a57a80d676 100644 (file)
@@ -16,7 +16,7 @@ class TournamentPolicy
         * @param  \App\Models\User  $user
         * @return \Illuminate\Auth\Access\Response|bool
         */
-       public function viewAny(User $user)
+       public function viewAny(?User $user)
        {
                return true;
        }
@@ -28,7 +28,7 @@ class TournamentPolicy
         * @param  \App\Models\Tournament  $tournament
         * @return \Illuminate\Auth\Access\Response|bool
         */
-       public function view(User $user, Tournament $tournament)
+       public function view(?User $user, Tournament $tournament)
        {
                return true;
        }
@@ -41,7 +41,7 @@ class TournamentPolicy
         */
        public function create(User $user)
        {
-               return $user->role === 'admin';
+               return $user->isAdmin();
        }
 
        /**
@@ -53,7 +53,7 @@ class TournamentPolicy
         */
        public function update(User $user, Tournament $tournament)
        {
-               return $user->role === 'admin';
+               return $user->isAdmin() || $user->isTournamentAdmin($tournament);
        }
 
        /**
@@ -91,4 +91,41 @@ class TournamentPolicy
        {
                return false;
        }
+
+       /**
+        * Determine whether the user can add rounds the model.
+        *
+        * @param  \App\Models\User  $user
+        * @param  \App\Models\Tournament  $tournament
+        * @return \Illuminate\Auth\Access\Response|bool
+        */
+       public function addRound(User $user, Tournament $tournament)
+       {
+               return !$tournament->locked && ($user->isRunner($tournament) || $user->isTournamentAdmin($tournament));
+       }
+
+       /**
+        * Determine whether the user can apply to participate.
+        *
+        * @param  \App\Models\User  $user
+        * @param  \App\Models\Tournament  $tournament
+        * @return \Illuminate\Auth\Access\Response|bool
+        */
+       public function apply(User $user, Tournament $tournament)
+       {
+               return $tournament->accept_applications && !$user->isRunner($tournament) && !$user->isApplicant($tournament);
+       }
+
+       /**
+        * Determine whether the user can view the tournament protocol.
+        *
+        * @param  \App\Models\User  $user
+        * @param  \App\Models\Tournament  $tournament
+        * @return \Illuminate\Auth\Access\Response|bool
+        */
+       public function viewProtocol(User $user, Tournament $tournament)
+       {
+               return $user->isTournamentCrew($tournament);
+       }
+
 }