mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 10:17:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Services;
 | |
| 
 | |
| use App\Ninja\Datatables\TaskDatatable;
 | |
| use App\Ninja\Repositories\TaskRepository;
 | |
| use Auth;
 | |
| use Utils;
 | |
| 
 | |
| /**
 | |
|  * Class TaskService.
 | |
|  */
 | |
| class TaskService extends BaseService
 | |
| {
 | |
|     protected $datatableService;
 | |
|     protected $taskRepo;
 | |
| 
 | |
|     /**
 | |
|      * TaskService constructor.
 | |
|      *
 | |
|      * @param TaskRepository   $taskRepo
 | |
|      * @param DatatableService $datatableService
 | |
|      */
 | |
|     public function __construct(TaskRepository $taskRepo, DatatableService $datatableService)
 | |
|     {
 | |
|         $this->taskRepo = $taskRepo;
 | |
|         $this->datatableService = $datatableService;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return TaskRepository
 | |
|      */
 | |
|     protected function getRepo()
 | |
|     {
 | |
|         return $this->taskRepo;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param $clientPublicId
 | |
|      * @param $search
 | |
|      *
 | |
|      * @return \Illuminate\Http\JsonResponse
 | |
|      */
 | |
|     public function getDatatable($clientPublicId, $search)
 | |
|     {
 | |
|         $datatable = new TaskDatatable(true, $clientPublicId);
 | |
|         $query = $this->taskRepo->find($clientPublicId, $search);
 | |
| 
 | |
|         if (! Utils::hasPermission('view_all')) {
 | |
|             $query->where('tasks.user_id', '=', Auth::user()->id);
 | |
|         }
 | |
| 
 | |
|         return $this->datatableService->createDatatable($datatable, $query);
 | |
|     }
 | |
| }
 |