Files
einundzwanzig-portal/app/Policies/LibraryPolicy.php
Benjamin Takats 19d9cfde22 orderByDesc
2023-01-22 12:24:28 +01:00

104 lines
2.5 KiB
PHP

<?php
namespace App\Policies;
use App\Models\Library;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class LibraryPolicy extends BasePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*
* @param \App\Models\User $user
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function viewAny(User $user)
{
return true;
}
/**
* Determine whether the user can view the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function view(User $user, Library $library)
{
return true;
}
/**
* Determine whether the user can create models.
*
* @param \App\Models\User $user
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function create(User $user)
{
return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__)
&& Library::query()
->count() < 8;
}
/**
* Determine whether the user can update the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function update(User $user, Library $library)
{
return $library->created_by === $user->id || $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__);
}
/**
* Determine whether the user can delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function delete(User $user, Library $library)
{
return false;
}
/**
* Determine whether the user can restore the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function restore(User $user, Library $library)
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
*
* @return \Illuminate\Auth\Access\Response|bool
*/
public function forceDelete(User $user, Library $library)
{
return false;
}
}