2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-11-03 11:39:33 +01:00
|
|
|
use App\Http\Requests\ClientRequest;
|
2015-10-28 20:22:07 +01:00
|
|
|
use App\Http\Requests\CreateClientRequest;
|
2016-01-26 12:36:00 +01:00
|
|
|
use App\Http\Requests\UpdateClientRequest;
|
2017-01-30 20:40:43 +01:00
|
|
|
use App\Models\Client;
|
|
|
|
use App\Ninja\Repositories\ClientRepository;
|
|
|
|
use Input;
|
|
|
|
use Response;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-11-25 12:44:43 +01:00
|
|
|
class ClientApiController extends BaseAPIController
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
|
|
|
protected $clientRepo;
|
|
|
|
|
2016-05-01 22:55:13 +02:00
|
|
|
protected $entityType = ENTITY_CLIENT;
|
|
|
|
|
2016-05-02 10:38:01 +02:00
|
|
|
public function __construct(ClientRepository $clientRepo)
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2016-03-02 15:36:46 +01:00
|
|
|
parent::__construct();
|
2015-11-25 12:44:43 +01:00
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$this->clientRepo = $clientRepo;
|
|
|
|
}
|
|
|
|
|
2015-11-08 22:57:28 +01:00
|
|
|
/**
|
|
|
|
* @SWG\Get(
|
|
|
|
* path="/clients",
|
|
|
|
* summary="List of clients",
|
|
|
|
* tags={"client"},
|
|
|
|
* @SWG\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="A list with clients",
|
|
|
|
* @SWG\Schema(type="array", @SWG\Items(ref="#/definitions/Client"))
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="an ""unexpected"" error"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
*/
|
2015-03-16 22:45:25 +01:00
|
|
|
public function index()
|
|
|
|
{
|
2015-07-02 22:21:29 +02:00
|
|
|
$clients = Client::scope()
|
2016-05-01 22:55:13 +02:00
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->withTrashed();
|
2016-01-24 17:59:01 +01:00
|
|
|
|
|
|
|
// Filter by email
|
2016-05-02 08:33:48 +02:00
|
|
|
if ($email = Input::get('email')) {
|
2016-01-24 17:59:01 +01:00
|
|
|
$clients = $clients->whereHas('contacts', function ($query) use ($email) {
|
|
|
|
$query->where('email', $email);
|
|
|
|
});
|
|
|
|
}
|
2016-06-09 14:20:15 +02:00
|
|
|
|
2016-05-02 10:38:01 +02:00
|
|
|
return $this->listResponse($clients);
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
|
2016-11-03 11:39:33 +01:00
|
|
|
/**
|
|
|
|
* @SWG\Get(
|
|
|
|
* path="/clients/{client_id}",
|
|
|
|
* summary="Individual Client",
|
|
|
|
* tags={"client"},
|
|
|
|
* @SWG\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="A single client",
|
|
|
|
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Client"))
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="an ""unexpected"" error"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function show(ClientRequest $request)
|
|
|
|
{
|
|
|
|
return $this->itemResponse($request->entity());
|
|
|
|
}
|
|
|
|
|
2015-11-08 22:57:28 +01:00
|
|
|
/**
|
|
|
|
* @SWG\Post(
|
|
|
|
* path="/clients",
|
|
|
|
* tags={"client"},
|
|
|
|
* summary="Create a client",
|
|
|
|
* @SWG\Parameter(
|
|
|
|
* in="body",
|
|
|
|
* name="body",
|
|
|
|
* @SWG\Schema(ref="#/definitions/Client")
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="New client",
|
|
|
|
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Client"))
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="an ""unexpected"" error"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
*/
|
2015-10-28 20:22:07 +01:00
|
|
|
public function store(CreateClientRequest $request)
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2016-01-24 18:06:34 +01:00
|
|
|
$client = $this->clientRepo->save($request->input());
|
2016-01-22 11:33:38 +01:00
|
|
|
|
2016-05-02 10:38:01 +02:00
|
|
|
return $this->itemResponse($client);
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
2016-01-26 12:36:00 +01:00
|
|
|
|
|
|
|
/**
|
2016-01-26 12:37:16 +01:00
|
|
|
* @SWG\Put(
|
2016-01-26 12:36:00 +01:00
|
|
|
* path="/clients/{client_id}",
|
|
|
|
* tags={"client"},
|
|
|
|
* summary="Update a client",
|
|
|
|
* @SWG\Parameter(
|
|
|
|
* in="body",
|
|
|
|
* name="body",
|
|
|
|
* @SWG\Schema(ref="#/definitions/Client")
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Update client",
|
|
|
|
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Client"))
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="an ""unexpected"" error"
|
|
|
|
* )
|
|
|
|
* )
|
2017-01-30 20:54:09 +01:00
|
|
|
*
|
2017-01-30 20:49:42 +01:00
|
|
|
* @param mixed $publicId
|
2016-01-26 12:36:00 +01:00
|
|
|
*/
|
2016-01-26 21:52:30 +01:00
|
|
|
public function update(UpdateClientRequest $request, $publicId)
|
2016-01-26 12:36:00 +01:00
|
|
|
{
|
2016-05-02 10:38:01 +02:00
|
|
|
if ($request->action) {
|
|
|
|
return $this->handleAction($request);
|
2016-01-27 01:36:21 +01:00
|
|
|
}
|
2016-06-09 14:20:15 +02:00
|
|
|
|
2016-01-26 21:52:30 +01:00
|
|
|
$data = $request->input();
|
|
|
|
$data['public_id'] = $publicId;
|
2016-05-02 19:42:13 +02:00
|
|
|
$client = $this->clientRepo->save($data, $request->entity());
|
2016-01-26 12:36:00 +01:00
|
|
|
|
2016-06-09 14:20:15 +02:00
|
|
|
$client->load(['contacts']);
|
|
|
|
|
2016-05-02 10:38:01 +02:00
|
|
|
return $this->itemResponse($client);
|
2016-01-26 12:36:00 +01:00
|
|
|
}
|
2016-02-07 11:24:21 +01:00
|
|
|
|
2016-02-08 05:27:42 +01:00
|
|
|
/**
|
|
|
|
* @SWG\Delete(
|
|
|
|
* path="/clients/{client_id}",
|
|
|
|
* tags={"client"},
|
|
|
|
* summary="Delete a client",
|
|
|
|
* @SWG\Parameter(
|
|
|
|
* in="body",
|
|
|
|
* name="body",
|
|
|
|
* @SWG\Schema(ref="#/definitions/Client")
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Delete client",
|
|
|
|
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Client"))
|
|
|
|
* ),
|
|
|
|
* @SWG\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="an ""unexpected"" error"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
*/
|
2016-05-03 10:53:00 +02:00
|
|
|
public function destroy(UpdateClientRequest $request)
|
2016-02-08 05:27:42 +01:00
|
|
|
{
|
2016-05-03 10:53:00 +02:00
|
|
|
$client = $request->entity();
|
2016-06-09 14:20:15 +02:00
|
|
|
|
2016-02-08 05:27:42 +01:00
|
|
|
$this->clientRepo->delete($client);
|
|
|
|
|
2016-05-03 10:53:00 +02:00
|
|
|
return $this->itemResponse($client);
|
2016-02-08 05:27:42 +01:00
|
|
|
}
|
2016-06-09 14:20:15 +02:00
|
|
|
}
|