1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Http/Controllers/TaskApiController.php

88 lines
2.2 KiB
PHP
Raw Normal View History

2015-09-07 11:07:55 +02:00
<?php namespace App\Http\Controllers;
2015-11-27 13:55:28 +01:00
use Auth;
2015-09-07 11:07:55 +02:00
use Response;
use Input;
use App\Models\Task;
use App\Ninja\Repositories\TaskRepository;
2015-11-27 13:55:28 +01:00
use App\Ninja\Transformers\TaskTransformer;
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",
* tags={"task"},
* summary="List of tasks",
* @SWG\Response(
* response=200,
* description="A list with tasks",
* @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()
->orderBy('created_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
}
2015-11-08 22:53:13 +01:00
/**
* @SWG\Post(
* path="/tasks",
* tags={"task"},
* summary="Create a task",
* @SWG\Parameter(
* in="body",
* name="body",
* @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()
{
$data = Input::all();
$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
2015-09-07 11:07:55 +02:00
$task = $this->taskRepo->save($taskId, $data);
$task = Task::scope($task->public_id)->with('client')->first();
2015-11-27 13:55:28 +01:00
$transformer = new TaskTransformer(Auth::user()->account, Input::get('serializer'));
$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
}
}