116 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Utilities;
 | |
| 
 | |
| use App\Models\Common\Report;
 | |
| use App\Models\Module\Module;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class Reports
 | |
| {
 | |
|     public static function getClasses($check_permission = true)
 | |
|     {
 | |
|         $classes = [];
 | |
| 
 | |
|         $list = [
 | |
|             'App\Reports\IncomeSummary',
 | |
|             'App\Reports\ExpenseSummary',
 | |
|             'App\Reports\IncomeExpenseSummary',
 | |
|             'App\Reports\TaxSummary',
 | |
|             'App\Reports\ProfitLoss',
 | |
|         ];
 | |
| 
 | |
|         Module::enabled()->each(function ($module) use (&$list) {
 | |
|             $m = module($module->alias);
 | |
| 
 | |
|             if (!$m || empty($m->get('reports'))) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             $list = array_merge($list, (array) $m->get('reports'));
 | |
|         });
 | |
| 
 | |
|         foreach ($list as $class) {
 | |
|             if (!class_exists($class) || ($check_permission && !static::canRead($class))) {
 | |
|                 continue;
 | |
|             }
 | |
| 
 | |
|             $classes[$class] = (new $class())->getDefaultName();
 | |
|         }
 | |
| 
 | |
|         return $classes;
 | |
|     }
 | |
| 
 | |
|     public static function getGroups()
 | |
|     {
 | |
|         return [
 | |
|             'category' => trans_choice('general.categories', 1),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function getPeriods()
 | |
|     {
 | |
|         return [
 | |
|             'monthly' => trans('general.monthly'),
 | |
|             'quarterly' => trans('general.quarterly'),
 | |
|             'yearly' => trans('general.yearly'),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function getBasises()
 | |
|     {
 | |
|         return [
 | |
|             'accrual' => trans('general.accrual'),
 | |
|             'cash' => trans('general.cash'),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function getCharts()
 | |
|     {
 | |
|         return [
 | |
|             '0' => trans('general.disabled'),
 | |
|             'line' => trans('reports.charts.line'),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function getClassInstance($model, $get_totals = true)
 | |
|     {
 | |
|         if (is_string($model)) {
 | |
|             $model = Report::where('class', $model)->first();
 | |
|         }
 | |
| 
 | |
|         if ((!$model instanceof Report) || !class_exists($model->class)) {
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         $class = $model->class;
 | |
| 
 | |
|         return new $class($model, $get_totals);
 | |
|     }
 | |
| 
 | |
|     public static function canRead($class)
 | |
|     {
 | |
|         return user()->can(static::getPermission($class));
 | |
|     }
 | |
| 
 | |
|     public static function getPermission($class)
 | |
|     {
 | |
|         $arr = explode('\\', $class);
 | |
| 
 | |
|         $prefix = 'read-';
 | |
| 
 | |
|         // Add module
 | |
|         if (strtolower($arr[0]) == 'modules') {
 | |
|             $prefix .= Str::kebab($arr[1]) . '-';
 | |
|         }
 | |
| 
 | |
|         $prefix .= 'reports-';
 | |
| 
 | |
|         $class_name = end($arr);
 | |
| 
 | |
|         $permission = $prefix . Str::kebab($class_name);
 | |
| 
 | |
|         return $permission;
 | |
|     }
 | |
| }
 |