MaketRandevu/application/models/Unavailabilities_model.php

471 lines
15 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
*
* @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 http://easyunavailabilities.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
/**
* Unavailabilities model.
*
* @package Models
*/
class Unavailabilities_model extends EA_Model {
/**
* @var array
*/
protected $casts = [
'id' => 'integer',
'is_unavailability' => 'boolean',
'id_users_provider' => 'integer',
'id_users_customer' => 'integer',
'id_services' => 'integer',
];
/**
* Save (insert or update) an unavailability.
*
* @param array $unavailability Associative array with the unavailability data.
*
* @return int Returns the unavailability ID.
*
* @throws InvalidArgumentException
*/
public function save(array $unavailability): int
{
$this->validate($unavailability);
if (empty($unavailability['id']))
{
return $this->insert($unavailability);
}
else
{
return $this->update($unavailability);
}
}
/**
* Validate the unavailability data.
*
* @param array $unavailability Associative array with the unavailability data.
*
* @throws InvalidArgumentException
*/
public function validate(array $unavailability)
{
// If an unavailability ID is provided then check whether the record really exists in the database.
if ( ! empty($unavailability['id']))
{
$count = $this->db->get_where('appointments', ['id' => $unavailability['id']])->num_rows();
if ( ! $count)
{
throw new InvalidArgumentException('The provided unavailability ID does not exist in the database: ' . $unavailability['id']);
}
}
// Make sure all required fields are provided.
if (
empty($unavailability['start_datetime'])
|| empty($unavailability['end_datetime'])
|| empty($unavailability['id_users_provider'])
)
{
throw new InvalidArgumentException('Not all required fields are provided: ' . print_r($unavailability, TRUE));
}
// Make sure that the provided unavailability date time values are valid.
if ( ! validate_datetime($unavailability['start_datetime']))
{
throw new InvalidArgumentException('The unavailability start date time is invalid.');
}
if ( ! validate_datetime($unavailability['end_datetime']))
{
throw new InvalidArgumentException('The unavailability end date time is invalid.');
}
// Make the unavailability lasts longer than the minimum duration (in minutes).
$diff = (strtotime($unavailability['end_datetime']) - strtotime($unavailability['start_datetime'])) / 60;
if ($diff < EVENT_MINIMUM_DURATION)
{
throw new InvalidArgumentException('The unavailability duration cannot be less than ' . EVENT_MINIMUM_DURATION . ' minutes.');
}
// Make sure the provider ID really exists in the database.
$count = $this
->db
->select()
->from('users')
->join('roles', 'roles.id = users.id_roles', 'inner')
->where('users.id', $unavailability['id_users_provider'])
->where('roles.slug', DB_SLUG_PROVIDER)
->get()
->num_rows();
if ( ! $count)
{
throw new InvalidArgumentException('The unavailability provider ID was not found in the database: ' . $unavailability['id_users_provider']);
}
}
/**
* Insert a new unavailability into the database.
*
* @param array $unavailability Associative array with the unavailability data.
*
* @return int Returns the unavailability ID.
*
* @throws RuntimeException
*/
protected function insert(array $unavailability): int
{
$unavailability['book_datetime'] = date('Y-m-d H:i:s');
$unavailability['create_datetime'] = date('Y-m-d H:i:s');
$unavailability['update_datetime'] = date('Y-m-d H:i:s');
$unavailability['hash'] = random_string('alnum', 12);
$unavailability['is_unavailability'] = TRUE;
if ( ! $this->db->insert('appointments', $unavailability))
{
throw new RuntimeException('Could not insert unavailability.');
}
return $this->db->insert_id();
}
/**
* Update an existing unavailability.
*
* @param array $unavailability Associative array with the unavailability data.
*
* @return int Returns the unavailability ID.
*
* @throws RuntimeException
*/
protected function update(array $unavailability): int
{
$unavailability['update_datetime'] = date('Y-m-d H:i:s');
if ( ! $this->db->update('appointments', $unavailability, ['id' => $unavailability['id']]))
{
throw new RuntimeException('Could not update unavailability record.');
}
return $unavailability['id'];
}
/**
* Remove an existing unavailability from the database.
*
* @param int $unavailability_id Unavailability ID.
* @param bool $force_delete Override soft delete.
*
* @throws RuntimeException
*/
public function delete(int $unavailability_id, bool $force_delete = FALSE)
{
if ($force_delete)
{
$this->db->delete('appointments', ['id' => $unavailability_id]);
}
else
{
$this->db->update('appointments', ['delete_datetime' => date('Y-m-d H:i:s')], ['id' => $unavailability_id]);
}
}
/**
* Get a specific unavailability from the database.
*
* @param int $unavailability_id The ID of the record to be returned.
* @param bool $with_trashed
*
* @return array Returns an array with the unavailability data.
*
* @throws InvalidArgumentException
*/
public function find(int $unavailability_id, bool $with_trashed = FALSE): array
{
if ( ! $with_trashed)
{
$this->db->where('delete_datetime IS NULL');
}
$unavailability = $this->db->get_where('appointments', ['id' => $unavailability_id])->row_array();
if ( ! $unavailability)
{
throw new InvalidArgumentException('The provided unavailability ID was not found in the database: ' . $unavailability_id);
}
$this->cast($unavailability);
return $unavailability;
}
/**
* Get a specific field value from the database.
*
* @param int $unavailability_id Unavailability ID.
* @param string $field Name of the value to be returned.
*
2023-01-14 11:39:14 +03:00
* @return mixed Returns the selected unavailability value from the database.
*
* @throws InvalidArgumentException
*/
2023-01-14 11:39:14 +03:00
public function value(int $unavailability_id, string $field): mixed
{
if (empty($field))
{
throw new InvalidArgumentException('The field argument is cannot be empty.');
}
if (empty($unavailability_id))
{
throw new InvalidArgumentException('The unavailability ID argument cannot be empty.');
}
// Check whether the unavailability exists.
$query = $this->db->get_where('appointments', ['id' => $unavailability_id]);
if ( ! $query->num_rows())
{
throw new InvalidArgumentException('The provided unavailability ID was not found in the database: ' . $unavailability_id);
}
// Check if the required field is part of the unavailability data.
$unavailability = $query->row_array();
$this->cast($unavailability);
if ( ! array_key_exists($field, $unavailability))
{
throw new InvalidArgumentException('The requested field was not found in the unavailability data: ' . $field);
}
return $unavailability[$field];
}
/**
* Get all unavailabilities that match the provided criteria.
*
* @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.
* @param bool $with_trashed
*
* @return array Returns an array of unavailabilities.
*/
public function get($where = NULL, int $limit = NULL, int $offset = NULL, string $order_by = NULL, bool $with_trashed = FALSE): array
{
if ($where !== NULL)
{
$this->db->where($where);
}
if ($order_by)
{
$this->db->order_by($order_by);
}
if ( ! $with_trashed)
{
$this->db->where('delete_datetime IS NULL');
}
$unavailabilities = $this->db->get_where('appointments', ['is_unavailability' => TRUE], $limit, $offset)->result_array();
foreach ($unavailabilities as &$unavailability)
{
$this->cast($unavailability);
}
return $unavailabilities;
}
/**
* Get the query builder interface, configured for use with the unavailabilities table.
*
* @return CI_DB_query_builder
*/
public function query(): CI_DB_query_builder
{
return $this->db->from('appointments');
}
/**
* Search unavailabilities by the provided keyword.
*
* @param string $keyword Search keyword.
* @param int|null $limit Record limit.
* @param int|null $offset Record offset.
* @param string|null $order_by Order by.
* @param bool $with_trashed
*
* @return array Returns an array of unavailabilities.
*/
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL, bool $with_trashed = FALSE): array
{
if ( ! $with_trashed)
{
$this->db->where('appointments.delete_datetime IS NULL');
}
$unavailabilities = $this
->db
->select()
->from('appointments')
->join('users AS providers', 'providers.id = appointments.id_users_provider', 'inner')
->where('is_unavailability', TRUE)
->group_start()
->like('appointments.start_datetime', $keyword)
->or_like('appointments.end_datetime', $keyword)
->or_like('appointments.location', $keyword)
->or_like('appointments.hash', $keyword)
->or_like('appointments.notes', $keyword)
->or_like('providers.first_name', $keyword)
->or_like('providers.last_name', $keyword)
->or_like('providers.email', $keyword)
->or_like('providers.phone_number', $keyword)
->group_end()
->limit($limit)
->offset($offset)
->order_by($order_by)
->get()
->result_array();
foreach ($unavailabilities as &$unavailability)
{
$this->cast($unavailability);
}
return $unavailabilities;
}
/**
* Load related resources to an unavailability.
*
* @param array $unavailability Associative array with the unavailability data.
* @param array $resources Resource names to be attached ("service", "provider", "customer" supported).
*
* @throws InvalidArgumentException
*/
public function load(array &$unavailability, array $resources)
{
if (empty($unavailability) || empty($resources))
{
return;
}
foreach ($resources as $resource)
{
switch ($resource)
{
case 'provider':
$unavailability['provider'] = $this
->db
->get_where('users', [
'id' => $unavailability['id_users_provider'] ?? $unavailability['providerId'] ?? NULL
])
->row_array();
break;
default:
throw new InvalidArgumentException('The requested unavailability relation is not supported: ' . $resource);
}
}
}
/**
* Convert the database unavailability record to the equivalent API resource.
*
* @param array $unavailability Unavailability data.
*/
public function api_encode(array &$unavailability)
{
$encoded_resource = [
'id' => array_key_exists('id', $unavailability) ? (int)$unavailability['id'] : NULL,
'book' => $unavailability['book_datetime'],
'start' => $unavailability['start_datetime'],
'end' => $unavailability['end_datetime'],
'hash' => $unavailability['hash'],
'location' => $unavailability['location'],
'notes' => $unavailability['notes'],
'providerId' => $unavailability['id_users_provider'] !== NULL ? (int)$unavailability['id_users_provider'] : NULL,
'googleCalendarId' => $unavailability['id_google_calendar'] !== NULL ? (int)$unavailability['id_google_calendar'] : NULL
];
$unavailability = $encoded_resource;
}
/**
* Convert the API resource to the equivalent database unavailability record.
*
* @param array $unavailability API resource.
* @param array|null $base Base unavailability data to be overwritten with the provided values (useful for updates).
*/
public function api_decode(array &$unavailability, array $base = NULL)
{
$decoded_request = $base ?: [];
if (array_key_exists('id', $unavailability))
{
$decoded_request['id'] = $unavailability['id'];
}
if (array_key_exists('book', $unavailability))
{
$decoded_request['book_datetime'] = $unavailability['book'];
}
if (array_key_exists('start', $unavailability))
{
$decoded_request['start_datetime'] = $unavailability['start'];
}
if (array_key_exists('end', $unavailability))
{
$decoded_request['end_datetime'] = $unavailability['end'];
}
if (array_key_exists('hash', $unavailability))
{
$decoded_request['hash'] = $unavailability['hash'];
}
if (array_key_exists('location', $unavailability))
{
$decoded_request['location'] = $unavailability['location'];
}
if (array_key_exists('notes', $unavailability))
{
$decoded_request['notes'] = $unavailability['notes'];
}
if (array_key_exists('providerId', $unavailability))
{
$decoded_request['id_users_provider'] = $unavailability['providerId'];
}
if (array_key_exists('googleCalendarId', $unavailability))
{
$decoded_request['id_google_calendar'] = $unavailability['googleCalendarId'];
}
$decoded_request['is_unavailability'] = TRUE;
$unavailability = $decoded_request;
}
}