91 lines
1.7 KiB
PHP
91 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Policies;
|
|
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
|
|
use App\Models\Account;
|
|
use App\User;
|
|
|
|
class AccountPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
/**
|
|
* Determine whether the user can view the service.
|
|
*
|
|
* @param User $user
|
|
* @param Account $o
|
|
* @return mixed
|
|
*/
|
|
public function view(User $user, Account $o)
|
|
{
|
|
// If this is a service for an account managed by a user.
|
|
return ($user->accounts->pluck('id')->search($o->id) !== FALSE)
|
|
|
|
// The user is the wholesaler
|
|
OR $user->isWholesaler()
|
|
|
|
// The user is the reseller
|
|
OR $user->all_accounts()->pluck('id')->search($o->id);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create services.
|
|
*
|
|
* @param User $user
|
|
* @return mixed
|
|
*/
|
|
public function create(User $user)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the service.
|
|
*
|
|
* @param User $user
|
|
* @param Account $o
|
|
* @return mixed
|
|
*/
|
|
public function update(User $user, Account $o)
|
|
{
|
|
return $user->isWholesaler();
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the service.
|
|
*
|
|
* @param User $user
|
|
* @param Account $o
|
|
* @return mixed
|
|
*/
|
|
public function delete(User $user, Account $o)
|
|
{
|
|
return $user->isWholesaler();
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can restore the service.
|
|
*
|
|
* @param User $user
|
|
* @param Account $o
|
|
* @return mixed
|
|
*/
|
|
public function restore(User $user, Account $o)
|
|
{
|
|
return $user->isWholesaler();
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently delete the service.
|
|
*
|
|
* @param User $user
|
|
* @param Account $o
|
|
* @return mixed
|
|
*/
|
|
public function forceDelete(User $user, Account $o)
|
|
{
|
|
return $user->isWholesaler();
|
|
}
|
|
} |