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

182 lines
4.6 KiB
PHP
Raw Normal View History

2017-03-17 10:28:46 +01:00
<?php
namespace App\Http\Controllers;
use App\Http\Requests\ContactRequest;
use App\Http\Requests\CreateContactRequest;
use App\Http\Requests\UpdateContactRequest;
use App\Models\Contact;
use App\Ninja\Repositories\ContactRepository;
use Response;
use Utils;
2017-03-27 10:33:37 +02:00
use App\Services\ContactService;
2017-03-17 10:28:46 +01:00
class ContactApiController extends BaseAPIController
{
protected $contactRepo;
2017-03-27 10:33:37 +02:00
protected $contactService;
2017-03-17 10:28:46 +01:00
protected $entityType = ENTITY_CONTACT;
2017-03-27 10:33:37 +02:00
public function __construct(ContactRepository $contactRepo, ContactService $contactService)
2017-03-17 10:28:46 +01:00
{
parent::__construct();
$this->contactRepo = $contactRepo;
2017-03-27 10:33:37 +02:00
$this->contactService = $contactService;
2017-03-17 10:28:46 +01:00
}
/**
* @SWG\Get(
* path="/contacts",
* summary="List contacts",
* tags={"contact"},
* @SWG\Response(
* response=200,
* description="A list of contacts",
* @SWG\Schema(type="array", @SWG\Items(ref="#/definitions/Contact"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function index()
{
$contacts = Contact::scope()
->withTrashed()
->orderBy('created_at', 'desc');
return $this->listResponse($contacts);
}
/**
* @SWG\Get(
* path="/contacts/{contact_id}",
* summary="Retrieve a contact",
* tags={"contact"},
* @SWG\Parameter(
* in="path",
* name="contact_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="A single contact",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Contact"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function show(ContactRequest $request)
{
return $this->itemResponse($request->entity());
}
/**
* @SWG\Post(
* path="/contacts",
* tags={"contact"},
* summary="Create a contact",
* @SWG\Parameter(
* in="body",
* name="contact",
* @SWG\Schema(ref="#/definitions/Contact")
* ),
* @SWG\Response(
* response=200,
* description="New contact",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Contact"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function store(CreateContactRequest $request)
{
2017-03-27 10:33:37 +02:00
$contact = $this->contactService->save($request->input());
2017-03-17 10:28:46 +01:00
return $this->itemResponse($contact);
}
/**
* @SWG\Put(
* path="/contacts/{contact_id}",
* tags={"contact"},
* summary="Update a contact",
* @SWG\Parameter(
* in="path",
* name="contact_id",
* type="integer",
* required=true
* ),
* @SWG\Parameter(
* in="body",
* name="contact",
* @SWG\Schema(ref="#/definitions/Contact")
* ),
* @SWG\Response(
* response=200,
* description="Updated contact",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Contact"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*
* @param mixed $publicId
*/
public function update(UpdateContactRequest $request, $publicId)
{
if ($request->action) {
return $this->handleAction($request);
}
$data = $request->input();
$data['public_id'] = $publicId;
2017-03-27 10:36:48 +02:00
$contact = $this->contactService->save($data, $request->entity());
2017-03-17 10:28:46 +01:00
return $this->itemResponse($contact);
}
/**
* @SWG\Delete(
* path="/contacts/{contact_id}",
* tags={"contact"},
* summary="Delete a contact",
* @SWG\Parameter(
* in="path",
* name="contact_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="Deleted contact",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/Contact"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function destroy(UpdateContactRequest $request)
{
$contact = $request->entity();
$this->contactRepo->delete($contact);
return $this->itemResponse($contact);
}
}