2018-10-17 14:26:27 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2019-03-02 22:44:08 +01:00
|
|
|
use App\DataMapper\ClientSettings;
|
2019-02-04 13:06:19 +01:00
|
|
|
use App\Factory\ClientFactory;
|
2019-03-28 11:07:45 +01:00
|
|
|
use App\Filters\ClientFilters;
|
2019-12-17 11:58:23 +01:00
|
|
|
use App\Http\Requests\Client\BulkClientRequest;
|
2019-01-21 15:06:49 +01:00
|
|
|
use App\Http\Requests\Client\CreateClientRequest;
|
2019-04-16 05:28:05 +02:00
|
|
|
use App\Http\Requests\Client\DestroyClientRequest;
|
2018-11-03 02:01:40 +01:00
|
|
|
use App\Http\Requests\Client\EditClientRequest;
|
2019-01-21 15:06:49 +01:00
|
|
|
use App\Http\Requests\Client\ShowClientRequest;
|
2018-12-07 11:57:20 +01:00
|
|
|
use App\Http\Requests\Client\StoreClientRequest;
|
2018-11-10 14:24:36 +01:00
|
|
|
use App\Http\Requests\Client\UpdateClientRequest;
|
2018-12-02 11:42:06 +01:00
|
|
|
use App\Jobs\Client\StoreClient;
|
2018-11-27 07:59:16 +01:00
|
|
|
use App\Jobs\Client\UpdateClient;
|
2019-01-19 11:35:21 +01:00
|
|
|
use App\Jobs\Entity\ActionEntity;
|
2019-12-17 11:58:23 +01:00
|
|
|
use App\Jobs\Util\ProcessBulk;
|
2019-10-07 13:05:06 +02:00
|
|
|
use App\Jobs\Util\UploadAvatar;
|
2018-10-29 04:16:17 +01:00
|
|
|
use App\Models\Client;
|
2018-12-02 11:42:06 +01:00
|
|
|
use App\Models\ClientContact;
|
2019-01-25 11:47:23 +01:00
|
|
|
use App\Models\Country;
|
2019-02-17 11:34:46 +01:00
|
|
|
use App\Models\Currency;
|
|
|
|
use App\Models\Size;
|
2019-04-23 08:19:45 +02:00
|
|
|
use App\Repositories\BaseRepository;
|
2018-11-22 12:12:41 +01:00
|
|
|
use App\Repositories\ClientRepository;
|
2019-04-16 05:28:05 +02:00
|
|
|
use App\Transformers\ClientTransformer;
|
2019-12-17 11:58:23 +01:00
|
|
|
use App\Utils\Traits\BulkOptions;
|
2018-11-27 07:59:16 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-10-07 23:17:55 +02:00
|
|
|
use App\Utils\Traits\Uploadable;
|
2018-10-17 14:26:27 +02:00
|
|
|
use Illuminate\Http\Request;
|
2019-02-17 11:34:46 +01:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2019-06-12 01:15:17 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2018-10-17 14:26:27 +02:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* Class ClientController
|
|
|
|
* @package App\Http\Controllers
|
2019-04-04 11:28:53 +02:00
|
|
|
* @covers App\Http\Controllers\ClientController
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2019-03-28 22:34:58 +01:00
|
|
|
class ClientController extends BaseController
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2018-11-27 07:59:16 +01:00
|
|
|
use MakesHash;
|
2019-10-07 23:17:55 +02:00
|
|
|
use Uploadable;
|
2019-12-17 11:58:23 +01:00
|
|
|
use BulkOptions;
|
|
|
|
|
2019-04-03 04:34:28 +02:00
|
|
|
protected $entity_type = Client::class;
|
2019-03-28 22:34:58 +01:00
|
|
|
|
2019-04-03 04:34:28 +02:00
|
|
|
protected $entity_transformer = ClientTransformer::class;
|
2019-03-28 22:34:58 +01:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* @var ClientRepository
|
|
|
|
*/
|
2019-04-23 08:19:45 +02:00
|
|
|
protected $client_repo;
|
2018-11-22 12:12:41 +01:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* ClientController constructor.
|
|
|
|
* @param ClientRepository $clientRepo
|
|
|
|
*/
|
2019-04-23 08:19:45 +02:00
|
|
|
public function __construct(ClientRepository $client_repo)
|
2018-11-22 12:12:41 +01:00
|
|
|
{
|
2019-03-28 22:34:58 +01:00
|
|
|
parent::__construct();
|
2019-02-04 13:06:19 +01:00
|
|
|
|
2019-04-23 08:19:45 +02:00
|
|
|
$this->client_repo = $client_repo;
|
2018-11-22 12:12:41 +01:00
|
|
|
}
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2019-10-07 01:32:36 +02:00
|
|
|
* @OA\Get(
|
|
|
|
* path="/api/v1/clients",
|
|
|
|
* operationId="getClients",
|
|
|
|
* tags={"clients"},
|
|
|
|
* summary="Gets a list of clients",
|
|
|
|
* description="Lists clients, search and filters allow fine grained lists to be generated.
|
|
|
|
|
|
|
|
Query parameters can be added to performed more fine grained filtering of the clients, these are handled by the ClientFilters class which defines the methods available",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/index"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="A list of clients",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 01:32:36 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 01:32:36 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2019-03-28 11:07:45 +01:00
|
|
|
public function index(ClientFilters $filters)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-03-28 22:34:58 +01:00
|
|
|
$clients = Client::filter($filters);
|
2019-12-17 11:58:23 +01:00
|
|
|
|
2019-03-28 22:34:58 +01:00
|
|
|
return $this->listResponse($clients);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-04 13:06:19 +01:00
|
|
|
* Display the specified resource.
|
2018-10-17 14:26:27 +02:00
|
|
|
*
|
2019-02-04 13:06:19 +01:00
|
|
|
* @param int $id
|
2018-10-17 14:26:27 +02:00
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* @OA\Get(
|
|
|
|
* path="/api/v1/clients/{id}",
|
|
|
|
* operationId="showClient",
|
|
|
|
* tags={"clients"},
|
2019-12-05 21:41:13 +01:00
|
|
|
* summary="Shows a client",
|
|
|
|
* description="Displays a client by id",
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="id",
|
|
|
|
* in="path",
|
|
|
|
* description="The Client Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="Returns the cl.ient object",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
public function show(ShowClientRequest $request, Client $client)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-12-17 11:58:23 +01:00
|
|
|
return $this->itemResponse($client);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-04 13:06:19 +01:00
|
|
|
* Show the form for editing the specified resource.
|
2018-10-17 14:26:27 +02:00
|
|
|
*
|
2019-02-04 13:06:19 +01:00
|
|
|
* @param int $id
|
2018-10-17 14:26:27 +02:00
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
2019-12-17 11:58:23 +01:00
|
|
|
*
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Get(
|
|
|
|
* path="/api/v1/clients/{id}/edit",
|
|
|
|
* operationId="editClient",
|
|
|
|
* tags={"clients"},
|
2019-12-05 21:41:13 +01:00
|
|
|
* summary="Shows a client for editting",
|
|
|
|
* description="Displays a client by id",
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="id",
|
|
|
|
* in="path",
|
|
|
|
* description="The Client Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="Returns the client object",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
public function edit(EditClientRequest $request, Client $client)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-04-03 03:17:21 +02:00
|
|
|
return $this->itemResponse($client);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-04 13:06:19 +01:00
|
|
|
* Update the specified resource in storage.
|
2018-10-17 14:26:27 +02:00
|
|
|
*
|
2019-02-04 13:06:19 +01:00
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param App\Models\Client $client
|
2018-10-17 14:26:27 +02:00
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
2019-12-17 11:58:23 +01:00
|
|
|
*
|
|
|
|
*
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Put(
|
|
|
|
* path="/api/v1/clients/{id}",
|
|
|
|
* operationId="updateClient",
|
|
|
|
* tags={"clients"},
|
2019-12-05 21:41:13 +01:00
|
|
|
* summary="Updates a client",
|
|
|
|
* description="Handles the updating of a client by id",
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="id",
|
|
|
|
* in="path",
|
|
|
|
* description="The Client Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="Returns the client object",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
public function update(UpdateClientRequest $request, Client $client)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($request->entityIsDeleted($client)) {
|
2019-12-30 22:59:12 +01:00
|
|
|
return $request->disallowUpdate();
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2019-05-10 08:08:33 +02:00
|
|
|
|
|
|
|
$client = $this->client_repo->save($request->all(), $client);
|
2019-01-25 11:47:23 +01:00
|
|
|
|
2019-10-07 23:17:55 +02:00
|
|
|
$this->uploadLogo($request->file('company_logo'), $client->company, $client);
|
2019-10-07 13:05:06 +02:00
|
|
|
|
2019-11-29 11:41:07 +01:00
|
|
|
return $this->itemResponse($client->fresh());
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-04 13:06:19 +01:00
|
|
|
* Show the form for creating a new resource.
|
2018-10-17 14:26:27 +02:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
2019-12-17 11:58:23 +01:00
|
|
|
*
|
|
|
|
*
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Get(
|
|
|
|
* path="/api/v1/clients/create",
|
|
|
|
* operationId="getClientsCreate",
|
|
|
|
* tags={"clients"},
|
2019-12-05 21:41:13 +01:00
|
|
|
* summary="Gets a new blank client object",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Returns a blank object with default values",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="A blank client object",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
public function create(CreateClientRequest $request)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-03-28 10:05:13 +01:00
|
|
|
$client = ClientFactory::create(auth()->user()->company()->id, auth()->user()->id);
|
2019-02-04 13:06:19 +01:00
|
|
|
|
2019-04-03 04:34:28 +02:00
|
|
|
return $this->itemResponse($client);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-04 13:06:19 +01:00
|
|
|
* Store a newly created resource in storage.
|
2018-10-17 14:26:27 +02:00
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/clients",
|
|
|
|
* operationId="storeClient",
|
|
|
|
* tags={"clients"},
|
2019-12-05 07:22:20 +01:00
|
|
|
* summary="Adds a client",
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="Adds an client to a company",
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
2019-12-05 21:41:13 +01:00
|
|
|
* description="Returns the saved client object",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
public function store(StoreClientRequest $request)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-05-10 08:08:33 +02:00
|
|
|
$client = $this->client_repo->save($request->all(), ClientFactory::create(auth()->user()->company()->id, auth()->user()->id));
|
2019-02-04 13:06:19 +01:00
|
|
|
|
|
|
|
$client->load('contacts', 'primary_contact');
|
|
|
|
|
2019-10-07 23:17:55 +02:00
|
|
|
$this->uploadLogo($request->file('company_logo'), $client->company, $client);
|
|
|
|
|
2019-04-03 04:34:28 +02:00
|
|
|
return $this->itemResponse($client);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
2019-12-17 11:58:23 +01:00
|
|
|
*
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Delete(
|
|
|
|
* path="/api/v1/clients/{id}",
|
|
|
|
* operationId="deleteClient",
|
|
|
|
* tags={"clients"},
|
2019-12-05 21:41:13 +01:00
|
|
|
* summary="Deletes a client",
|
|
|
|
* description="Handles the deletion of a client by id",
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="id",
|
|
|
|
* in="path",
|
|
|
|
* description="The Client Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Returns a HTTP status",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
2018-10-17 14:26:27 +02:00
|
|
|
*/
|
2019-04-16 05:28:05 +02:00
|
|
|
public function destroy(DestroyClientRequest $request, Client $client)
|
2018-10-17 14:26:27 +02:00
|
|
|
{
|
2019-04-16 07:28:30 +02:00
|
|
|
//may not need these destroy routes as we are using actions to 'archive/delete'
|
2019-03-26 05:46:08 +01:00
|
|
|
$client->delete();
|
|
|
|
|
|
|
|
return response()->json([], 200);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
2018-10-29 04:16:17 +01:00
|
|
|
|
2019-01-19 11:35:21 +01:00
|
|
|
/**
|
|
|
|
* Perform bulk actions on the list view
|
2019-10-07 06:03:01 +02:00
|
|
|
*
|
2019-12-17 11:58:23 +01:00
|
|
|
* @param BulkClientRequest $request
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*
|
|
|
|
*
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/clients/bulk",
|
|
|
|
* operationId="bulkClients",
|
|
|
|
* tags={"clients"},
|
|
|
|
* summary="Performs bulk actions on an array of clients",
|
|
|
|
* description="",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/index"),
|
|
|
|
* @OA\RequestBody(
|
|
|
|
* description="User credentials",
|
|
|
|
* required=true,
|
|
|
|
* @OA\MediaType(
|
|
|
|
* mediaType="application/json",
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="array",
|
|
|
|
* @OA\Items(
|
|
|
|
* type="integer",
|
|
|
|
* description="Array of hashed IDs to be bulk 'actioned",
|
|
|
|
* example="[0,1,2,3]",
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="The Client User response",
|
2019-10-07 08:31:26 +02:00
|
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-Version"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
2019-10-07 06:57:14 +02:00
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Client"),
|
2019-10-07 06:03:01 +02:00
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-17 11:58:23 +01:00
|
|
|
* response="default",
|
2019-10-07 06:03:01 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
2019-01-19 11:35:21 +01:00
|
|
|
*/
|
2019-12-27 01:28:36 +01:00
|
|
|
public function bulk()
|
2019-01-13 11:42:03 +01:00
|
|
|
{
|
2019-12-27 01:28:36 +01:00
|
|
|
$action = request()->input('action');
|
|
|
|
|
|
|
|
$ids = request()->input('ids');
|
|
|
|
$clients = Client::withTrashed()->find($this->transformKeys($ids));
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$clients->each(function ($client, $key) use ($action) {
|
|
|
|
if (auth()->user()->can('edit', $client)) {
|
2019-12-27 01:28:36 +01:00
|
|
|
$this->client_repo->{$action}($client);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-12-27 01:28:36 +01:00
|
|
|
});
|
|
|
|
|
2019-11-12 05:41:02 +01:00
|
|
|
return $this->listResponse(Client::withTrashed()->whereIn('id', $this->transformKeys($ids)));
|
2019-01-13 11:42:03 +01:00
|
|
|
}
|
|
|
|
|
2019-02-04 13:06:19 +01:00
|
|
|
/**
|
|
|
|
* Returns a client statement
|
2019-12-17 11:58:23 +01:00
|
|
|
*
|
2019-02-04 13:06:19 +01:00
|
|
|
* @return [type] [description]
|
|
|
|
*/
|
|
|
|
public function statement()
|
|
|
|
{
|
|
|
|
//todo
|
|
|
|
}
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|