113 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Collection;
 | |
| use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
 | |
| use Illuminate\Foundation\Bus\DispatchesJobs;
 | |
| use Illuminate\Foundation\Validation\ValidatesRequests;
 | |
| use Illuminate\Routing\Controller as BaseController;
 | |
| use Illuminate\Routing\Route;
 | |
| 
 | |
| class Controller extends BaseController
 | |
| {
 | |
|     use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
 | |
| 
 | |
|     /**
 | |
|      * Instantiate a new controller instance.
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         // No need to check for permission in console
 | |
|         if (app()->runningInConsole()) {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         $route = app(Route::class);
 | |
| 
 | |
|         // Get the controller array
 | |
|         $arr = array_reverse(explode('\\', explode('@', $route->getAction()['uses'])[0]));
 | |
| 
 | |
|         $controller = '';
 | |
| 
 | |
|         // Add folder
 | |
|         if (strtolower($arr[1]) != 'controllers') {
 | |
|             $controller .= kebab_case($arr[1]) . '-';
 | |
|         }
 | |
| 
 | |
|         // Add module
 | |
|         if (isset($arr[3]) && isset($arr[4]) && (strtolower($arr[4]) == 'modules')) {
 | |
|             $controller .= kebab_case($arr[3]) . '-';
 | |
|         }
 | |
| 
 | |
|         // Add file
 | |
|         $controller .= kebab_case($arr[0]);
 | |
| 
 | |
|         // Skip ACL
 | |
|         $skip = ['common-dashboard', 'customers-dashboard'];
 | |
|         if (in_array($controller, $skip)) {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         // Add CRUD permission check
 | |
|         $this->middleware('permission:create-' . $controller)->only(['create', 'store', 'duplicate', 'import']);
 | |
|         $this->middleware('permission:read-' . $controller)->only(['index', 'show', 'edit', 'export']);
 | |
|         $this->middleware('permission:update-' . $controller)->only(['update', 'enable', 'disable']);
 | |
|         $this->middleware('permission:delete-' . $controller)->only('destroy');
 | |
|     }
 | |
| 
 | |
|     public function countRelationships($model, $relationships)
 | |
|     {
 | |
|         $counter = array();
 | |
| 
 | |
|         foreach ($relationships as $relationship => $text) {
 | |
|             if ($c = $model->$relationship()->count()) {
 | |
|                 $counter[] = $c . ' ' . strtolower(trans_choice('general.' . $text, ($c > 1) ? 2 : 1));
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $counter;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Check for api token and redirect if empty.
 | |
|      *
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function checkApiToken()
 | |
|     {
 | |
|         if (setting('general.api_token')) {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         redirect('apps/token/create')->send();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Mass delete relationships with events being fired.
 | |
|      *
 | |
|      * @param  $model
 | |
|      * @param  $relationships
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function deleteRelationships($model, $relationships)
 | |
|     {
 | |
|         foreach ((array) $relationships as $relationship) {
 | |
|             if (empty($model->$relationship)) {
 | |
|                 continue;
 | |
|             }
 | |
| 
 | |
|             $items = $model->$relationship->all();
 | |
| 
 | |
|             if ($items instanceof Collection) {
 | |
|                 $items = $items->all();
 | |
|             }
 | |
| 
 | |
|             foreach ((array) $items as $item) {
 | |
|                 $item->delete();
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |