Files
InvoiceShelf/app/Policies/UnitPolicy.php
Darko Gjorgjijoski 6b80b5f48d Change namespace
2024-01-27 23:53:20 +01:00

125 lines
2.9 KiB
PHP

<?php
namespace InvoiceShelf\Policies;
use InvoiceShelf\Models\Item;
use InvoiceShelf\Models\Unit;
use InvoiceShelf\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
use Silber\Bouncer\BouncerFacade;
class UnitPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*
* @param \InvoiceShelf\Models\User $user
* @return mixed
*/
public function viewAny(User $user)
{
if (BouncerFacade::can('view-item', Item::class)) {
return true;
}
return false;
}
/**
* Determine whether the user can view the model.
*
* @param \InvoiceShelf\Models\User $user
* @param \InvoiceShelf\Models\Unit $unit
* @return mixed
*/
public function view(User $user, Unit $unit)
{
if (BouncerFacade::can('view-item', Item::class) && $user->hasCompany($unit->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can create models.
*
* @param \InvoiceShelf\Models\User $user
* @return mixed
*/
public function create(User $user)
{
if (BouncerFacade::can('view-item', Item::class)) {
return true;
}
return false;
}
/**
* Determine whether the user can update the model.
*
* @param \InvoiceShelf\Models\User $user
* @param \InvoiceShelf\Models\Unit $unit
* @return mixed
*/
public function update(User $user, Unit $unit)
{
if (BouncerFacade::can('view-item', Item::class) && $user->hasCompany($unit->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can delete the model.
*
* @param \InvoiceShelf\Models\User $user
* @param \InvoiceShelf\Models\Unit $unit
* @return mixed
*/
public function delete(User $user, Unit $unit)
{
if (BouncerFacade::can('view-item', Item::class) && $user->hasCompany($unit->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can restore the model.
*
* @param \InvoiceShelf\Models\User $user
* @param \InvoiceShelf\Models\Unit $unit
* @return mixed
*/
public function restore(User $user, Unit $unit)
{
if (BouncerFacade::can('view-item', Item::class) && $user->hasCompany($unit->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can permanently delete the model.
*
* @param \InvoiceShelf\Models\User $user
* @param \InvoiceShelf\Models\Unit $unit
* @return mixed
*/
public function forceDelete(User $user, Unit $unit)
{
if (BouncerFacade::can('view-item', Item::class) && $user->hasCompany($unit->company_id)) {
return true;
}
return false;
}
}