osb/app/Models/Policies/AccountPolicy.php
Deon George 23f57f684e
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 32s
Create Docker Image / Final Docker Image Manifest (push) Successful in 8s
User optimisation and code cleanup
2024-07-05 22:56:02 +10:00

84 lines
1.5 KiB
PHP

<?php
namespace App\Models\Policies;
use Illuminate\Auth\Access\HandlesAuthorization;
use App\Models\{Account,User};
class AccountPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view the account.
*
* @param User $uo
* @param Account $ao
* @return bool
*/
public function view(User $uo,Account $ao): bool
{
// If this is a service for an account managed by a user.
return $uo->accounts_all->pluck('id')->contains($ao->id) || $uo->isWholesaler();
}
/**
* Determine whether the user can create services.
*
* @param User $uo
* @return bool
*/
public function create(User $uo): bool
{
return TRUE;
}
/**
* Determine whether the user can update the service.
*
* @param User $uo
* @param Account $ao
* @return bool
*/
public function update(User $uo,Account $ao): bool
{
return $uo->isWholesaler();
}
/**
* Determine whether the user can delete the service.
*
* @param User $uo
* @param Account $ao
* @return bool
*/
public function delete(User $uo,Account $ao): bool
{
return $uo->isWholesaler();
}
/**
* Determine whether the user can restore the service.
*
* @param User $uo
* @param Account $ao
* @return bool
*/
public function restore(User $uo,Account $ao): bool
{
return $uo->isWholesaler();
}
/**
* Determine whether the user can permanently delete the service.
*
* @param User $uo
* @param Account $ao
* @return bool
*/
public function forceDelete(User $uo,Account $ao): bool
{
return $uo->isWholesaler();
}
}