1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Http/Controllers/TaskApiController.php

224 lines
6.1 KiB
PHP
Raw Permalink Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Controllers;
2015-09-07 11:07:55 +02:00
use App\Http\Requests\TaskRequest;
use App\Http\Requests\UpdateTaskRequest;
2015-09-07 11:07:55 +02:00
use App\Models\Task;
use App\Ninja\Repositories\TaskRepository;
2015-11-27 13:55:28 +01:00
use App\Ninja\Transformers\TaskTransformer;
2017-01-30 20:40:43 +01:00
use Auth;
use Response;
2015-09-07 11:07:55 +02:00
2015-11-27 13:55:28 +01:00
class TaskApiController extends BaseAPIController
2015-09-07 11:07:55 +02:00
{
protected $taskRepo;
2016-05-01 22:55:13 +02:00
protected $entityType = ENTITY_TASK;
2015-09-07 11:07:55 +02:00
public function __construct(TaskRepository $taskRepo)
{
2016-03-02 15:36:46 +01:00
parent::__construct();
2015-11-27 13:55:28 +01:00
2015-09-07 11:07:55 +02:00
$this->taskRepo = $taskRepo;
}
2015-11-08 22:53:13 +01:00
/**
* @SWG\Get(
* path="/tasks",
* summary="List tasks",
* operationId="listTasks",
2015-11-08 22:53:13 +01:00
* tags={"task"},
* @SWG\Response(
* response=200,
* description="A list of tasks",
2015-11-08 22:53:13 +01:00
* @SWG\Schema(type="array", @SWG\Items(ref="#/definitions/Task"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
2015-11-27 13:55:28 +01:00
public function index()
2015-09-07 11:07:55 +02:00
{
2016-06-08 16:56:13 +02:00
$tasks = Task::scope()
2016-05-01 22:55:13 +02:00
->withTrashed()
2019-02-17 12:52:56 +01:00
->with('client', 'invoice', 'project', 'task_status')
2019-01-30 11:45:46 +01:00
->orderBy('updated_at', 'desc');
2015-09-07 11:07:55 +02:00
2016-06-08 16:56:13 +02:00
return $this->listResponse($tasks);
2015-09-07 11:07:55 +02:00
}
/**
* @SWG\Get(
* path="/tasks/{task_id}",
* summary="Retrieve a task",
* operationId="getTask",
* tags={"task"},
* @SWG\Parameter(
* in="path",
* name="task_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="A single task",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Task"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function show(TaskRequest $request)
{
return $this->itemResponse($request->entity());
}
2015-11-08 22:53:13 +01:00
/**
* @SWG\Post(
* path="/tasks",
* summary="Create a task",
* operationId="createTask",
* tags={"task"},
2015-11-08 22:53:13 +01:00
* @SWG\Parameter(
* in="body",
* name="task",
2015-11-08 22:53:13 +01:00
* @SWG\Schema(ref="#/definitions/Task")
* ),
* @SWG\Response(
* response=200,
* description="New task",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Task"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
2015-09-07 11:07:55 +02:00
public function store()
{
2021-09-26 02:13:01 +02:00
$data = \Request::all();
2015-09-07 11:07:55 +02:00
$taskId = isset($data['id']) ? $data['id'] : false;
2016-03-02 14:36:42 +01:00
2015-09-07 11:07:55 +02:00
if (isset($data['client_id']) && $data['client_id']) {
$data['client'] = $data['client_id'];
}
2016-03-02 14:36:42 +01:00
2018-05-06 21:45:47 +02:00
if (! empty($data['time_details'])) {
$timeLog = [];
foreach ($data['time_details'] as $detail) {
$startTime = strtotime($detail['start_datetime']);
$endTime = false;
if (! empty($detail['end_datetime'])) {
$endTime = strtotime($detail['end_datetime']);
2018-05-09 10:30:27 +02:00
} else {
$duration = 0;
if (! empty($detail['duration_seconds'])) {
$duration += $detail['duration_seconds'];
}
if (! empty($detail['duration_minutes'])) {
$duration += $detail['duration_minutes'] * 60;
}
if (! empty($detail['duration_hours'])) {
$duration += $detail['duration_hours'] * 60 * 60;
}
if ($duration) {
$endTime = $startTime + $duration;
}
2018-05-06 21:45:47 +02:00
}
$timeLog[] = [$startTime, $endTime];
if (! $endTime) {
$data['is_running'] = true;
}
}
$data['time_log'] = json_encode($timeLog);
}
2015-09-07 11:07:55 +02:00
$task = $this->taskRepo->save($taskId, $data);
$task = Task::scope($task->public_id)->with('client')->first();
2021-09-26 02:13:01 +02:00
$transformer = new TaskTransformer(Auth::user()->account, \Request::input('serializer'));
2015-11-27 13:55:28 +01:00
$data = $this->createItem($task, $transformer, 'task');
2015-09-07 11:07:55 +02:00
2015-11-27 13:55:28 +01:00
return $this->response($data);
2015-09-07 11:07:55 +02:00
}
/**
* @SWG\Put(
* path="/tasks/{task_id}",
* summary="Update a task",
* operationId="updateTask",
* tags={"task"},
* @SWG\Parameter(
* in="path",
* name="task_id",
* type="integer",
* required=true
* ),
* @SWG\Parameter(
* in="body",
* name="body",
* @SWG\Schema(ref="#/definitions/Task")
* ),
* @SWG\Response(
* response=200,
* description="Update task",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Task"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function update(UpdateTaskRequest $request)
{
if ($request->action) {
return $this->handleAction($request);
}
2018-05-06 21:45:47 +02:00
$task = $request->entity();
2018-05-06 21:45:47 +02:00
2021-09-26 02:13:01 +02:00
$task = $this->taskRepo->save($task->public_id, \Illuminate\Support\Facades\Request::all());
return $this->itemResponse($task);
}
/**
* @SWG\Delete(
* path="/tasks/{task_id}",
* summary="Delete a task",
* operationId="deleteTask",
* tags={"task"},
* @SWG\Parameter(
* in="path",
* name="task_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="Deleted task",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Task"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function destroy(UpdateTaskRequest $request)
{
$task = $request->entity();
$this->taskRepo->delete($task);
return $this->itemResponse($task);
}
2015-09-07 11:07:55 +02:00
}