2021-11-06 17:03:08 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2021-11-06 17:03:08 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
2021-11-06 17:03:08 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
|
|
|
* @since v1.5.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Customers API v1 controller.
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
class Customers_api_v1 extends EA_Controller
|
|
|
|
{
|
2021-11-06 17:03:08 +03:00
|
|
|
/**
|
|
|
|
* Customers_api_v1 constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->library('api');
|
|
|
|
|
|
|
|
$this->api->auth();
|
|
|
|
|
|
|
|
$this->api->model('customers_model');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a customer collection.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function index(): void
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$keyword = $this->api->request_keyword();
|
|
|
|
|
|
|
|
$limit = $this->api->request_limit();
|
|
|
|
|
|
|
|
$offset = $this->api->request_offset();
|
|
|
|
|
|
|
|
$order_by = $this->api->request_order_by();
|
|
|
|
|
|
|
|
$fields = $this->api->request_fields();
|
|
|
|
|
2021-11-06 17:41:11 +03:00
|
|
|
$with = $this->api->request_with();
|
2021-11-06 17:34:54 +03:00
|
|
|
|
2021-11-06 17:03:08 +03:00
|
|
|
$customers = empty($keyword)
|
2023-11-29 12:24:09 +03:00
|
|
|
? $this->customers_model->get(null, $limit, $offset, $order_by)
|
2021-11-06 17:03:08 +03:00
|
|
|
: $this->customers_model->search($keyword, $limit, $offset, $order_by);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
foreach ($customers as &$customer) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->customers_model->api_encode($customer);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->customers_model->only($customer, $fields);
|
|
|
|
}
|
2021-11-06 17:34:54 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($with)) {
|
2021-11-06 17:41:11 +03:00
|
|
|
$this->customers_model->load($customer, $with);
|
2021-11-06 17:34:54 +03:00
|
|
|
}
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
json_response($customers);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a single customer.
|
|
|
|
*
|
|
|
|
* @param int|null $id Customer ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function show(int $id = null): void
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$fields = $this->api->request_fields();
|
|
|
|
|
|
|
|
$customer = $this->customers_model->find($id);
|
|
|
|
|
|
|
|
$this->customers_model->api_encode($customer);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->customers_model->only($customer, $fields);
|
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$customer) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
json_response($customer);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-26 06:41:25 +03:00
|
|
|
* Store a new customer.
|
2021-11-06 17:03:08 +03:00
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function store(): void
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$customer = request();
|
|
|
|
|
|
|
|
$this->customers_model->api_decode($customer);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (array_key_exists('id', $customer)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
unset($customer['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$customer_id = $this->customers_model->save($customer);
|
|
|
|
|
|
|
|
$created_customer = $this->customers_model->find($customer_id);
|
|
|
|
|
|
|
|
$this->customers_model->api_encode($created_customer);
|
|
|
|
|
|
|
|
json_response($created_customer, 201);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a customer.
|
|
|
|
*
|
|
|
|
* @param int $id Customer ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function update(int $id): void
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$occurrences = $this->customers_model->get(['id' => $id]);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (empty($occurrences)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$original_customer = $occurrences[0];
|
|
|
|
|
|
|
|
$customer = request();
|
|
|
|
|
|
|
|
$this->customers_model->api_decode($customer, $original_customer);
|
|
|
|
|
|
|
|
$customer_id = $this->customers_model->save($customer);
|
|
|
|
|
|
|
|
$updated_customer = $this->customers_model->find($customer_id);
|
|
|
|
|
|
|
|
$this->customers_model->api_encode($updated_customer);
|
|
|
|
|
|
|
|
json_response($updated_customer);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a customer.
|
|
|
|
*
|
|
|
|
* @param int $id Customer ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function destroy(int $id): void
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$occurrences = $this->customers_model->get(['id' => $id]);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (empty($occurrences)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->customers_model->delete($id);
|
|
|
|
|
|
|
|
response('', 204);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|