mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Crater\Policies;
 | 
						|
 | 
						|
use Crater\Models\TaxType;
 | 
						|
use Crater\Models\User;
 | 
						|
use Illuminate\Auth\Access\HandlesAuthorization;
 | 
						|
use Silber\Bouncer\BouncerFacade;
 | 
						|
 | 
						|
class TaxTypePolicy
 | 
						|
{
 | 
						|
    use HandlesAuthorization;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can view any models.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function viewAny(User $user)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('view-tax-type', TaxType::class)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can view the model.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @param  \Crater\Models\TaxType  $taxType
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function view(User $user, TaxType $taxType)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('view-tax-type', $taxType) && $user->hasCompany($taxType->company_id)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can create models.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function create(User $user)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('create-tax-type', TaxType::class)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can update the model.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @param  \Crater\Models\TaxType  $taxType
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function update(User $user, TaxType $taxType)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('edit-tax-type', $taxType) && $user->hasCompany($taxType->company_id)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can delete the model.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @param  \Crater\Models\TaxType  $taxType
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function delete(User $user, TaxType $taxType)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('delete-tax-type', $taxType) && $user->hasCompany($taxType->company_id)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can restore the model.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @param  \Crater\Models\TaxType  $taxType
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function restore(User $user, TaxType $taxType)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('delete-tax-type', $taxType) && $user->hasCompany($taxType->company_id)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine whether the user can permanently delete the model.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\User  $user
 | 
						|
     * @param  \Crater\Models\TaxType  $taxType
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function forceDelete(User $user, TaxType $taxType)
 | 
						|
    {
 | 
						|
        if (BouncerFacade::can('delete-tax-type', $taxType) && $user->hasCompany($taxType->company_id)) {
 | 
						|
            return true;
 | 
						|
        }
 | 
						|
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 |