1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Services/TaskService.php

56 lines
1.2 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
2015-11-05 23:37:04 +01:00
2017-01-30 20:40:43 +01:00
namespace App\Services;
use App\Ninja\Datatables\TaskDatatable;
use App\Ninja\Repositories\TaskRepository;
2016-03-16 00:08:00 +01:00
use Auth;
2015-11-05 23:37:04 +01:00
use Utils;
/**
2017-01-30 20:40:43 +01:00
* Class TaskService.
*/
2015-11-05 23:37:04 +01:00
class TaskService extends BaseService
{
protected $datatableService;
protected $taskRepo;
/**
* TaskService constructor.
*
2017-01-30 20:40:43 +01:00
* @param TaskRepository $taskRepo
* @param DatatableService $datatableService
*/
2015-11-05 23:37:04 +01:00
public function __construct(TaskRepository $taskRepo, DatatableService $datatableService)
{
$this->taskRepo = $taskRepo;
$this->datatableService = $datatableService;
}
/**
* @return TaskRepository
*/
2015-11-05 23:37:04 +01:00
protected function getRepo()
{
return $this->taskRepo;
}
/**
* @param $clientPublicId
* @param $search
2017-01-30 20:40:43 +01:00
*
* @return \Illuminate\Http\JsonResponse
*/
2015-11-05 23:37:04 +01:00
public function getDatatable($clientPublicId, $search)
{
$datatable = new TaskDatatable(true, $clientPublicId);
2015-11-05 23:37:04 +01:00
$query = $this->taskRepo->find($clientPublicId, $search);
2017-01-30 20:40:43 +01:00
if (! Utils::hasPermission('view_all')) {
2016-03-16 00:08:00 +01:00
$query->where('tasks.user_id', '=', Auth::user()->id);
}
2016-05-23 18:52:20 +02:00
return $this->datatableService->createDatatable($datatable, $query);
2015-11-05 23:37:04 +01:00
}
2016-05-23 18:52:20 +02:00
}