mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
112 lines
2.7 KiB
PHP
112 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Class EntityPolicy.
|
|
*/
|
|
class EntityPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $item - entity name or object
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public static function create(User $user, $item)
|
|
{
|
|
if (! static::checkModuleEnabled($user, $item))
|
|
return false;
|
|
|
|
|
|
$entityType = is_string($item) ? $item : $item->getEntityType();
|
|
return $user->hasPermission('create_' . $entityType);
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $item - entity name or object
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public static function edit(User $user, $item)
|
|
{
|
|
if (! static::checkModuleEnabled($user, $item))
|
|
return false;
|
|
|
|
|
|
$entityType = is_string($item) ? $item : $item->getEntityType();
|
|
return $user->hasPermission('edit_' . $entityType) || $user->owns($item);
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $item - entity name or object
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public static function view(User $user, $item)
|
|
{
|
|
if (! static::checkModuleEnabled($user, $item))
|
|
return false;
|
|
|
|
$entityType = is_string($item) ? $item : $item->getEntityType();
|
|
return $user->hasPermission('view_' . $entityType) || $user->owns($item);
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $ownerUserId
|
|
*
|
|
* Legacy permissions - retaining these for legacy code however new code
|
|
* should use auth()->user()->can('view', $ENTITY_TYPE)
|
|
*
|
|
* $ENTITY_TYPE can be either the constant ie ENTITY_INVOICE, or the entity $object
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public static function viewByOwner(User $user, $ownerUserId)
|
|
{
|
|
return $user->id == $ownerUserId;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $ownerUserId
|
|
*
|
|
* Legacy permissions - retaining these for legacy code however new code
|
|
* should use auth()->user()->can('edit', $ENTITY_TYPE)
|
|
*
|
|
* $ENTITY_TYPE can be either the constant ie ENTITY_INVOICE, or the entity $object
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public static function editByOwner(User $user, $ownerUserId)
|
|
{
|
|
return $user->id == $ownerUserId;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param $item - entity name or object
|
|
* @return bool
|
|
*/
|
|
|
|
private static function checkModuleEnabled(User $user, $item)
|
|
{
|
|
$entityType = is_string($item) ? $item : $item->getEntityType();
|
|
return $user->account->isModuleEnabled($entityType);
|
|
}
|
|
}
|