2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2016-01-09 23:29:28 +02:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2016-01-09 23:29:28 +02:00
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
2021-11-06 18:21:27 +03:00
|
|
|
* Services model.
|
2021-10-27 11:04:42 +03:00
|
|
|
*
|
|
|
|
* Handles all the database operations of the service resource.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
|
|
|
* @package Models
|
|
|
|
*/
|
2020-11-16 11:29:36 +03:00
|
|
|
class Services_model extends EA_Model {
|
2021-10-29 13:39:27 +03:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'id' => 'integer',
|
|
|
|
'price' => 'float',
|
|
|
|
'attendants_number' => 'integer',
|
2021-12-15 10:00:48 +03:00
|
|
|
'id_categories' => 'integer',
|
2021-10-29 13:39:27 +03:00
|
|
|
];
|
|
|
|
|
2021-11-06 17:02:40 +03:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $api_resource = [
|
|
|
|
'id' => 'id',
|
|
|
|
'name' => 'name',
|
|
|
|
'duration' => 'duration',
|
|
|
|
'price' => 'price',
|
|
|
|
'currency' => 'currency',
|
|
|
|
'description' => 'description',
|
|
|
|
'location' => 'location',
|
2022-01-18 20:22:24 +03:00
|
|
|
'color' => 'color',
|
2021-11-06 17:02:40 +03:00
|
|
|
'availabilitiesType' => 'availabilities_type',
|
|
|
|
'attendantsNumber' => 'attendants_number',
|
2021-12-15 10:00:48 +03:00
|
|
|
'categoryId' => 'id_categories',
|
2021-11-06 17:02:40 +03:00
|
|
|
];
|
|
|
|
|
2020-11-12 15:51:10 +03:00
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Save (insert or update) a service.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array $service Associative array with the service data.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return int Returns the service ID.
|
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function save(array $service): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2016-01-09 23:29:28 +02:00
|
|
|
$this->validate($service);
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
if (empty($service['id']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
return $this->insert($service);
|
2018-01-23 12:08:37 +03:00
|
|
|
}
|
|
|
|
else
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
return $this->update($service);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Validate the service data.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array $service Associative array with the service data.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:49:42 +03:00
|
|
|
public function validate(array $service)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
// If a service ID is provided then check whether the record really exists in the database.
|
|
|
|
if ( ! empty($service['id']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
$count = $this->db->get_where('services', ['id' => $service['id']])->num_rows();
|
2020-11-12 15:51:10 +03:00
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $count)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The provided service ID does not exist in the database: ' . $service['id']);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Make sure all required fields are provided.
|
|
|
|
if (
|
|
|
|
empty($service['name'])
|
|
|
|
)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('Not all required fields are provided: ' . print_r($service, TRUE));
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// If a category was provided then make sure it really exists in the database.
|
2021-12-15 10:00:48 +03:00
|
|
|
if ( ! empty($service['id_categories']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-12-15 10:00:48 +03:00
|
|
|
$count = $this->db->get_where('categories', ['id' => $service['id_categories']])->num_rows();
|
2021-03-25 13:32:10 +03:00
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $count)
|
2021-03-25 13:32:10 +03:00
|
|
|
{
|
2021-12-15 10:00:48 +03:00
|
|
|
throw new InvalidArgumentException('The provided category ID was not found in the database: ' . $service['id_categories']);
|
2021-03-25 13:32:10 +03:00
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Make sure the duration value is valid.
|
|
|
|
if ( ! empty($service['duration']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if ((int)$service['duration'] < EVENT_MINIMUM_DURATION)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The service duration cannot be less than ' . EVENT_MINIMUM_DURATION . ' minutes long.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-27 13:11:51 +03:00
|
|
|
// Availabilities type must have the correct value.
|
2017-09-15 14:36:37 +03:00
|
|
|
if ($service['availabilities_type'] !== NULL && $service['availabilities_type'] !== AVAILABILITIES_TYPE_FLEXIBLE
|
|
|
|
&& $service['availabilities_type'] !== AVAILABILITIES_TYPE_FIXED)
|
|
|
|
{
|
|
|
|
throw new Exception('Service availabilities type must be either ' . AVAILABILITIES_TYPE_FLEXIBLE
|
|
|
|
. ' or ' . AVAILABILITIES_TYPE_FIXED . ' (given ' . $service['availabilities_type'] . ')');
|
2016-07-20 22:19:52 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Validate the availabilities type value.
|
|
|
|
if (
|
|
|
|
! empty($service['availabilities_type'])
|
|
|
|
&& ! in_array($service['availabilities_type'], [AVAILABILITIES_TYPE_FLEXIBLE, AVAILABILITIES_TYPE_FIXED])
|
|
|
|
)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The provided availabilities type is invalid: ' . $service['availabilities_type']);
|
2016-07-21 21:33:43 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Validate the attendants number value.
|
|
|
|
if (empty($service['attendants_number']) || (int)$service['attendants_number'] < 1)
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The provided attendants number is invalid: ' . $service['attendants_number']);
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Insert a new service into the database.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array $service Associative array with the service data.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return int Returns the service ID.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws RuntimeException
|
2020-04-22 22:48:56 +03:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
protected function insert(array $service): int
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $this->db->insert('services', $service))
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new RuntimeException('Could not insert service.');
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
return $this->db->insert_id();
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
|
|
|
|
2016-01-09 23:29:28 +02:00
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Update an existing service.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array $service Associative array with the service data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return int Returns the service ID.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws RuntimeException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
protected function update(array $service): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $this->db->update('services', $service, ['id' => $service['id']]))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new RuntimeException('Could not update service.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
return $service['id'];
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Remove an existing service from the database.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param int $service_id Service ID.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws RuntimeException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:49:42 +03:00
|
|
|
public function delete(int $service_id)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $this->db->delete('services', ['id' => $service_id]))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new RuntimeException('Could not delete service.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Get a specific service from the database.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param int $service_id The ID of the record to be returned.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return array Returns an array with the service data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function find(int $service_id): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! $this->db->get_where('services', ['id' => $service_id])->num_rows())
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The provided service ID was not found in the database: ' . $service_id);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
2021-10-27 11:04:42 +03:00
|
|
|
|
2021-10-29 13:39:27 +03:00
|
|
|
$service = $this->db->get_where('services', ['id' => $service_id])->row_array();
|
|
|
|
|
|
|
|
$this->cast($service);
|
|
|
|
|
|
|
|
return $service;
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a specific field value from the database.
|
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param int $service_id Service ID.
|
|
|
|
* @param string $field Name of the value to be returned.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return string Returns the selected service value from the database.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function value(int $service_id, string $field): string
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if (empty($field))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The field argument is cannot be empty.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
if (empty($service_id))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The service ID argument cannot be empty.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Check whether the service exists.
|
|
|
|
$query = $this->db->get_where('services', ['id' => $service_id]);
|
|
|
|
|
|
|
|
if ( ! $query->num_rows())
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The provided service ID was not found in the database: ' . $service_id);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
// Check if the required field is part of the service data.
|
|
|
|
$service = $query->row_array();
|
2021-10-29 13:39:27 +03:00
|
|
|
|
|
|
|
$this->cast($service);
|
2020-12-05 12:43:38 +03:00
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
if ( ! array_key_exists($field, $service))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
throw new InvalidArgumentException('The requested field was not found in the service data: ' . $field);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
return $service[$field];
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Get all services that match the provided criteria.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array|string $where Where conditions
|
|
|
|
* @param int|null $limit Record limit.
|
|
|
|
* @param int|null $offset Record offset.
|
|
|
|
* @param string|null $order_by Order by.
|
2020-11-16 11:41:04 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return array Returns an array of services.
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function get($where = NULL, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2020-04-06 21:34:32 +03:00
|
|
|
if ($where !== NULL)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2020-04-06 21:34:32 +03:00
|
|
|
$this->db->where($where);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($order_by !== NULL)
|
|
|
|
{
|
|
|
|
$this->db->order_by($order_by);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-29 13:39:27 +03:00
|
|
|
$services = $this->db->get('services', $limit, $offset)->result_array();
|
|
|
|
|
|
|
|
foreach ($services as $service)
|
|
|
|
{
|
|
|
|
$this->cast($service);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Get all the service records that are assigned to at least one provider.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return array Returns an array of services.
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function get_available_services(): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-29 13:39:27 +03:00
|
|
|
$services = $this
|
2021-10-27 11:04:42 +03:00
|
|
|
->db
|
|
|
|
->distinct()
|
2021-12-15 10:00:48 +03:00
|
|
|
->select('services.*, categories.name AS category_name, categories.id AS category_id')
|
2020-04-23 21:48:20 +03:00
|
|
|
->from('services')
|
2021-10-27 11:04:42 +03:00
|
|
|
->join('services_providers', 'services_providers.id_services = services.id', 'inner')
|
2021-12-15 10:00:48 +03:00
|
|
|
->join('categories', 'categories.id = services.id_categories', 'left')
|
2020-03-27 13:11:51 +03:00
|
|
|
->order_by('name ASC')
|
2021-10-27 11:04:42 +03:00
|
|
|
->get()
|
|
|
|
->result_array();
|
2021-10-29 13:39:27 +03:00
|
|
|
|
|
|
|
foreach ($services as $service)
|
|
|
|
{
|
|
|
|
$this->cast($service);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Get the query builder interface, configured for use with the services table.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return CI_DB_query_builder
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function query(): CI_DB_query_builder
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
return $this->db->from('services');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:42 +03:00
|
|
|
* Search services by the provided keyword.
|
2016-04-27 09:21:40 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param string $keyword Search keyword.
|
|
|
|
* @param int|null $limit Record limit.
|
|
|
|
* @param int|null $offset Record offset.
|
|
|
|
* @param string|null $order_by Order by.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @return array Returns an array of services.
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:42 +03:00
|
|
|
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-29 13:39:27 +03:00
|
|
|
$services = $this
|
2021-10-27 11:04:42 +03:00
|
|
|
->db
|
|
|
|
->select()
|
|
|
|
->from('services')
|
|
|
|
->like('name', $keyword)
|
|
|
|
->or_like('description', $keyword)
|
|
|
|
->limit($limit)
|
|
|
|
->offset($offset)
|
|
|
|
->order_by($order_by)
|
|
|
|
->get()
|
|
|
|
->result_array();
|
2021-10-29 13:39:27 +03:00
|
|
|
|
|
|
|
foreach ($services as $service)
|
|
|
|
{
|
|
|
|
$this->cast($service);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-06 17:40:55 +03:00
|
|
|
* Load related resources to a service.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @param array $service Associative array with the service data.
|
2021-12-15 10:00:48 +03:00
|
|
|
* @param array $resources Resource names to be attached ("category" supported).
|
2020-11-16 11:41:04 +03:00
|
|
|
*
|
2021-10-27 11:04:42 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-11-06 17:40:55 +03:00
|
|
|
public function load(array &$service, array $resources)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
if (empty($service) || empty($resources))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
return;
|
2017-09-15 14:36:37 +03:00
|
|
|
}
|
2020-04-06 21:34:32 +03:00
|
|
|
|
2021-10-27 11:04:42 +03:00
|
|
|
foreach ($resources as $resource)
|
2020-04-06 21:34:32 +03:00
|
|
|
{
|
2021-10-27 11:04:42 +03:00
|
|
|
switch ($resource)
|
|
|
|
{
|
2021-12-15 10:00:48 +03:00
|
|
|
case 'category':
|
|
|
|
$service['category'] = $this
|
2021-10-27 11:04:42 +03:00
|
|
|
->db
|
2021-12-15 10:00:48 +03:00
|
|
|
->get_where('categories', [
|
|
|
|
'id' => $service['id_categories'] ?? $service['categoryId'] ?? NULL
|
2021-10-27 11:04:42 +03:00
|
|
|
])
|
|
|
|
->row_array();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new InvalidArgumentException('The requested appointment relation is not supported: ' . $resource);
|
|
|
|
}
|
2020-04-06 21:34:32 +03:00
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
2021-11-05 11:32:34 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the database service record to the equivalent API resource.
|
|
|
|
*
|
|
|
|
* @param array $service Service data.
|
|
|
|
*/
|
|
|
|
public function api_encode(array &$service)
|
|
|
|
{
|
|
|
|
$encoded_resource = [
|
|
|
|
'id' => array_key_exists('id', $service) ? (int)$service['id'] : NULL,
|
|
|
|
'name' => $service['name'],
|
|
|
|
'duration' => (int)$service['duration'],
|
|
|
|
'price' => (float)$service['price'],
|
|
|
|
'currency' => $service['currency'],
|
|
|
|
'description' => $service['description'],
|
|
|
|
'location' => $service['location'],
|
|
|
|
'availabilitiesType' => $service['availabilities_type'],
|
|
|
|
'attendantsNumber' => (int)$service['attendants_number'],
|
2021-12-15 10:00:48 +03:00
|
|
|
'categoryId' => $service['id_categories'] !== NULL ? (int)$service['id_categories'] : NULL
|
2021-11-05 11:32:34 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
$service = $encoded_resource;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the API resource to the equivalent database service record.
|
|
|
|
*
|
|
|
|
* @param array $service API resource.
|
|
|
|
* @param array|null $base Base service data to be overwritten with the provided values (useful for updates).
|
|
|
|
*/
|
|
|
|
public function api_decode(array &$service, array $base = NULL)
|
|
|
|
{
|
|
|
|
$decoded_resource = $base ?: [];
|
|
|
|
|
|
|
|
if (array_key_exists('id', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['id'] = $service['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('name', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['name'] = $service['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('duration', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['duration'] = $service['duration'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('price', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['price'] = $service['price'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('currency', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['currency'] = $service['currency'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('description', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['description'] = $service['description'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('location', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['location'] = $service['location'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('availabilitiesType', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['availabilities_type'] = $service['availabilitiesType'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('attendantsNumber', $service))
|
|
|
|
{
|
|
|
|
$decoded_resource['attendants_number'] = $service['attendantsNumber'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('categoryId', $service))
|
|
|
|
{
|
2021-12-15 10:00:48 +03:00
|
|
|
$decoded_resource['id_categories'] = $service['categoryId'];
|
2021-11-05 11:32:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$service = $decoded_resource;
|
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|