Files
einundzwanzig-portal/app/Policies/BitcoinEventPolicy.php
HolgerHatGarKeineNode 7dd0d8d839 policy updated
2023-02-26 13:46:35 +01:00

83 lines
2.0 KiB
PHP

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