mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	v5.0.0 update
This commit is contained in:
		
							
								
								
									
										124
									
								
								app/Policies/PaymentMethodPolicy.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										124
									
								
								app/Policies/PaymentMethodPolicy.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,124 @@ | ||||
| <?php | ||||
|  | ||||
| namespace Crater\Policies; | ||||
|  | ||||
| use Crater\Models\Payment; | ||||
| use Crater\Models\PaymentMethod; | ||||
| use Crater\Models\User; | ||||
| use Illuminate\Auth\Access\HandlesAuthorization; | ||||
| use Silber\Bouncer\BouncerFacade; | ||||
|  | ||||
| class PaymentMethodPolicy | ||||
| { | ||||
|     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-payment', Payment::class)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Determine whether the user can view the model. | ||||
|      * | ||||
|      * @param  \Crater\Models\User  $user | ||||
|      * @param  \Crater\Models\PaymentMethod  $paymentMethod | ||||
|      * @return mixed | ||||
|      */ | ||||
|     public function view(User $user, PaymentMethod $paymentMethod) | ||||
|     { | ||||
|         if (BouncerFacade::can('view-payment', Payment::class) && $user->hasCompany($paymentMethod->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('view-payment', Payment::class)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Determine whether the user can update the model. | ||||
|      * | ||||
|      * @param  \Crater\Models\User  $user | ||||
|      * @param  \Crater\Models\PaymentMethod  $paymentMethod | ||||
|      * @return mixed | ||||
|      */ | ||||
|     public function update(User $user, PaymentMethod $paymentMethod) | ||||
|     { | ||||
|         if (BouncerFacade::can('view-payment', Payment::class) && $user->hasCompany($paymentMethod->company_id)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Determine whether the user can delete the model. | ||||
|      * | ||||
|      * @param  \Crater\Models\User  $user | ||||
|      * @param  \Crater\Models\PaymentMethod  $paymentMethod | ||||
|      * @return mixed | ||||
|      */ | ||||
|     public function delete(User $user, PaymentMethod $paymentMethod) | ||||
|     { | ||||
|         if (BouncerFacade::can('view-payment', Payment::class) && $user->hasCompany($paymentMethod->company_id)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Determine whether the user can restore the model. | ||||
|      * | ||||
|      * @param  \Crater\Models\User  $user | ||||
|      * @param  \Crater\Models\PaymentMethod  $paymentMethod | ||||
|      * @return mixed | ||||
|      */ | ||||
|     public function restore(User $user, PaymentMethod $paymentMethod) | ||||
|     { | ||||
|         if (BouncerFacade::can('view-payment', Payment::class) && $user->hasCompany($paymentMethod->company_id)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Determine whether the user can permanently delete the model. | ||||
|      * | ||||
|      * @param  \Crater\Models\User  $user | ||||
|      * @param  \Crater\Models\PaymentMethod  $paymentMethod | ||||
|      * @return mixed | ||||
|      */ | ||||
|     public function forceDelete(User $user, PaymentMethod $paymentMethod) | ||||
|     { | ||||
|         if (BouncerFacade::can('view-payment', Payment::class) && $user->hasCompany($paymentMethod->company_id)) { | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         return false; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user