80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Utilities;
 | |
| 
 | |
| use Cache;
 | |
| use Date;
 | |
| use Module;
 | |
| 
 | |
| use App\Events\PaymentGatewayListing;
 | |
| 
 | |
| class Modules
 | |
| {
 | |
| 
 | |
|     public static function getPaymentMethods($type = null)
 | |
|     {
 | |
|         $company_id = session('company_id');
 | |
| 
 | |
|         $cache_admin = 'payment_methods.' . $company_id . '.admin';
 | |
|         $cache_customer = 'payment_methods.' . $company_id . '.customer';
 | |
| 
 | |
|         $payment_methods = Cache::get($cache_admin);
 | |
| 
 | |
|         $customer = true;
 | |
| 
 | |
|         if (auth()->user()) {
 | |
|             $customer = auth()->user()->customer;
 | |
|         }
 | |
| 
 | |
|         if ($customer && $type != 'all') {
 | |
|             $payment_methods = Cache::get($cache_customer);
 | |
|         }
 | |
| 
 | |
|         if (!empty($payment_methods)) {
 | |
|             return $payment_methods;
 | |
|         }
 | |
| 
 | |
|         $gateways = [];
 | |
|         $methods = [];
 | |
| 
 | |
|         // Fire the event to extend the menu
 | |
|         $results = event(new PaymentGatewayListing($gateways));
 | |
| 
 | |
|         foreach ($results as $gateways) {
 | |
|             foreach ($gateways as $gateway) {
 | |
|                 if (!isset($gateway['name']) || !isset($gateway['code'])) {
 | |
|                     continue;
 | |
|                 }
 | |
| 
 | |
|                 if (($customer && empty($gateway['customer'])) && $type != 'all') {
 | |
|                     continue;
 | |
|                 }
 | |
| 
 | |
|                 $methods[] = $gateway;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         $sort_order = [];
 | |
| 
 | |
|         if ($methods) {
 | |
|             foreach ($methods as $key => $value) {
 | |
|                 $sort_order[$key] = !empty($value['order']) ? $value['order'] : 0;
 | |
|             }
 | |
| 
 | |
|             array_multisort($sort_order, SORT_ASC, $methods);
 | |
| 
 | |
|             foreach ($methods as $method) {
 | |
|                 $payment_methods[$method['code']] = $method['name'];
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if ($customer) {
 | |
|             Cache::put($cache_customer, $payment_methods, Date::now()->addHour(6));
 | |
|         } else {
 | |
|             Cache::put($cache_admin, $payment_methods, Date::now()->addHour(6));
 | |
|         }
 | |
| 
 | |
|         return ($payment_methods) ? $payment_methods : [];
 | |
|     }
 | |
| }
 |