MaketRandevu/application/models/Consents_model.php

287 lines
7.7 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.3.2
* ---------------------------------------------------------------------------- */
/**
2021-10-27 11:04:09 +03:00
* Consents model
*
* Handles all the database operations of the consent resource.
*
* @package Models
*/
class Consents_model extends EA_Model {
/**
* @var array
*/
protected $casts = [
'id' => 'integer',
];
/**
2021-10-27 11:04:09 +03:00
* Save (insert or update) a consent.
*
2021-10-27 11:04:09 +03:00
* @param array $consent Associative array with the consent data.
*
* @return int Returns the consent ID.
*
2021-10-27 11:04:09 +03:00
* @throws InvalidArgumentException
*/
2021-10-27 11:04:09 +03:00
public function save(array $consent): int
{
$this->validate($consent);
2021-10-27 11:04:09 +03:00
if (empty($consent['id']))
{
2021-10-27 11:04:09 +03:00
return $this->insert($consent);
}
else
{
2021-10-27 11:04:09 +03:00
return $this->update($consent);
}
}
/**
2021-10-27 11:04:09 +03:00
* Validate the consent data.
*
2021-10-27 11:04:09 +03:00
* @param array $consent Associative array with the consent data.
*
2021-10-27 11:04:09 +03:00
* @throws InvalidArgumentException
*/
2021-10-27 11:49:42 +03:00
public function validate(array $consent)
{
2021-10-27 11:04:09 +03:00
if (
empty($consent['first_name'])
|| empty($consent['last_name'])
|| empty($consent['email'])
|| empty($consent['ip'])
|| empty($consent['type'])
)
{
2021-10-27 11:04:09 +03:00
throw new InvalidArgumentException('Not all required fields are provided: ' . print_r($consent, TRUE));
}
}
/**
2021-10-27 11:04:09 +03:00
* Insert a new consent into the database.
*
2021-10-27 11:04:09 +03:00
* @param array $consent Associative array with the consent data.
*
2021-10-27 11:04:09 +03:00
* @return int Returns the consent ID.
*
2021-10-27 11:04:09 +03:00
* @throws RuntimeException
*/
2021-10-27 11:04:09 +03:00
protected function insert(array $consent): int
{
$consent['created'] = date('Y-m-d H:i:s');
$consent['modified'] = date('Y-m-d H:i:s');
if ( ! $this->db->insert('consents', $consent))
{
2021-10-27 11:04:09 +03:00
throw new RuntimeException('Could not insert consent.');
}
2021-10-27 11:04:09 +03:00
return $this->db->insert_id();
}
/**
2021-10-27 11:04:09 +03:00
* Update an existing consent.
*
2021-10-27 11:04:09 +03:00
* @param array $consent Associative array with the consent data.
*
2021-10-27 11:04:09 +03:00
* @return int Returns the consent ID.
*
2021-10-27 11:04:09 +03:00
* @throws RuntimeException
*/
2021-10-27 11:04:09 +03:00
protected function update(array $consent): int
{
$consent['modified'] = date('Y-m-d H:i:s');
if ( ! $this->db->update('consents', $consent, ['id' => $consent['id']]))
{
2021-10-27 11:04:09 +03:00
throw new RuntimeException('Could not update consent.');
}
return $consent['id'];
}
/**
* Remove an existing consent from the database.
*
* @param int $consent_id Consent ID.
*
* @throws RuntimeException
*/
2021-10-27 11:49:42 +03:00
public function delete(int $consent_id)
2021-10-27 11:04:09 +03:00
{
if ( ! $this->db->delete('consents', ['id' => $consent_id]))
{
throw new RuntimeException('Could not delete consent.');
}
}
/**
* Get a specific consent from the database.
*
* @param int $consent_id The ID of the record to be returned.
*
* @return array Returns an array with the consent data.
*
* @throws InvalidArgumentException
*/
public function find(int $consent_id): array
{
if ( ! $this->db->get_where('consents', ['id' => $consent_id])->num_rows())
{
throw new InvalidArgumentException('The provided consent ID was not found in the database: ' . $consent_id);
}
$consent = $this->db->get_where('consents', ['id' => $consent_id])->row_array();
$this->cast($consent);
return $consent;
2021-10-27 11:04:09 +03:00
}
/**
* Get a specific field value from the database.
*
* @param int $consent_id Consent ID.
* @param string $field Name of the value to be returned.
*
* @return string Returns the selected consent value from the database.
*
* @throws InvalidArgumentException
*/
public function value(int $consent_id, string $field): string
{
if (empty($field))
{
throw new InvalidArgumentException('The field argument is cannot be empty.');
}
if (empty($consent_id))
{
throw new InvalidArgumentException('The consent ID argument cannot be empty.');
}
// Check whether the consent exists.
2021-10-27 11:04:09 +03:00
$query = $this->db->get_where('consents', ['id' => $consent_id]);
if ( ! $query->num_rows())
{
throw new InvalidArgumentException('The provided consent ID was not found in the database: ' . $consent_id);
}
// Check if the required field is part of the consent data.
$consent = $query->row_array();
$this->cast($consent);
2021-10-27 11:04:09 +03:00
if ( ! array_key_exists($field, $consent))
2021-10-27 11:04:09 +03:00
{
throw new InvalidArgumentException('The requested field was not found in the consent data: ' . $field);
2021-10-27 11:04:09 +03:00
}
return $consent[$field];
2021-10-27 11:04:09 +03:00
}
/**
* Get all consents 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.
*
* @return array Returns an array of consents.
*/
public function get($where = NULL, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
{
if ($where !== NULL)
{
$this->db->where($where);
}
if ($order_by !== NULL)
{
$this->db->order_by($order_by);
}
$consents = $this->db->get('consents', $limit, $offset)->result_array();
foreach($consents as &$consent)
{
$this->cast($consent);
}
return $consents;
2021-10-27 11:04:09 +03:00
}
/**
* Get the query builder interface, configured for use with the consents table.
*
* @return CI_DB_query_builder
*/
public function query(): CI_DB_query_builder
{
return $this->db->from('consents');
}
/**
* Search consents 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.
*
* @return array Returns an array of consents.
*/
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
{
$consents = $this
2021-10-27 11:04:09 +03:00
->db
->select()
->from('consents')
->like('first_name', $keyword)
->or_like('last_name', $keyword)
->or_like('email', $keyword)
->or_like('ip', $keyword)
->limit($limit)
->offset($offset)
->order_by($order_by)
->get()
->result_array();
foreach($consents as &$consent)
{
$this->cast($consent);
}
return $consents;
2021-10-27 11:04:09 +03:00
}
/**
* Attach related resources to a consent.
*
* @param array $consent Associative array with the consent data.
* @param array $resources Resource names to be attached.
*
* @throws InvalidArgumentException
*/
2021-10-27 11:49:42 +03:00
public function attach(array &$consent, array $resources)
2021-10-27 11:04:09 +03:00
{
// Consents do not currently have any related resources.
}
}