2013-05-04 00:26:04 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
class Appointments_Model extends CI_Model {
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
2013-04-20 20:20:16 +03:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
2013-05-11 13:19:18 +03:00
|
|
|
$this->load->helper('custom_exceptions');
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Add an appointment record to the database.
|
|
|
|
*
|
|
|
|
* This method adds a new appointment to the database. If the
|
|
|
|
* appointment doesn't exists it is going to be inserted, otherwise
|
|
|
|
* the record is going to be updated.
|
|
|
|
*
|
2013-05-11 13:19:18 +03:00
|
|
|
* @expectedException ValidationException
|
|
|
|
* @expectedException DatabaseException
|
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param array $appointment_data Associative array with the appointmet's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return int Returns the appointments id.
|
|
|
|
*/
|
|
|
|
public function add($appointment_data) {
|
2013-05-11 13:19:18 +03:00
|
|
|
// Validate the appointment data before doing anything.
|
|
|
|
if (!$this->validate_data($appointment_data)) {
|
|
|
|
throw new ValidationException('Appointment data are not valid');
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
2013-05-11 13:19:18 +03:00
|
|
|
|
|
|
|
// Insert or update the appointment data.
|
|
|
|
if (!$this->exists($appointment_data)) {
|
|
|
|
$appointment_data['id'] = $this->insert($appointment_data);
|
|
|
|
} else {
|
|
|
|
$appointment_data['id'] = $this->update($appointment_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $appointment_data['id'];
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Check if a particular appointment record already exists.
|
|
|
|
*
|
|
|
|
* This method checks wether the given appointment already exists in
|
|
|
|
* the database. This method does not search with the id, but with a
|
|
|
|
* combination of the appointments field values.
|
|
|
|
*
|
2013-05-11 13:19:18 +03:00
|
|
|
* @uses find_record_id()
|
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param array $appointment_data Associative array with the appointment's
|
|
|
|
* data. Each key has the same name with the database fields.
|
2013-05-11 13:19:18 +03:00
|
|
|
* @return bool Returns wether the record exists or not.
|
2013-05-04 00:26:04 +03:00
|
|
|
*/
|
2013-05-11 13:19:18 +03:00
|
|
|
public function exists($appointment_data) {
|
|
|
|
try {
|
|
|
|
$this->find_record_id($appointment_data);
|
|
|
|
return TRUE;
|
|
|
|
} catch(DatabaseException $dbExc) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a new appointment record to the database.
|
|
|
|
*
|
2013-05-11 13:19:18 +03:00
|
|
|
* @expectedException DatabaseException
|
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param array $appointment_data Associative array with the appointment's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return int Returns the id of the new record.
|
|
|
|
*/
|
|
|
|
private function insert($appointment_data) {
|
|
|
|
if (!$this->db->insert('ea_appointments', $appointment_data)) {
|
2013-05-11 13:19:18 +03:00
|
|
|
throw new DatabaseException('Could not insert appointment record.');
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
2013-05-11 13:19:18 +03:00
|
|
|
return intval($this->db->insert_id());
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Update an existing appointment record in the database.
|
|
|
|
*
|
|
|
|
* The appointment data argument should already include the record
|
|
|
|
* id in order to process the update operation.
|
|
|
|
*
|
|
|
|
* @param array $appointment_data Associative array with the appointment's
|
|
|
|
* data. Each key has the same name with the database fields.
|
2013-05-11 13:19:18 +03:00
|
|
|
* @return int Returns the id of the updated record.
|
2013-05-04 00:26:04 +03:00
|
|
|
*/
|
|
|
|
private function update($appointment_data) {
|
2013-05-11 13:19:18 +03:00
|
|
|
if (!isset($appointment_data['id'])) {
|
|
|
|
$appointment_data['id'] = $this->find_record_id($appointment_data);
|
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
$this->db->where('id', $appointment_data['id']);
|
|
|
|
if (!$this->db->update('ea_appointments', $appointment_data)) {
|
2013-05-11 13:19:18 +03:00
|
|
|
throw new DatabaseException('Could not update appointment record.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $appointment_data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the database id of an appointment record.
|
|
|
|
*
|
|
|
|
* The appointment data should include the following fields in order to
|
|
|
|
* get the unique id from the database: start_datetime, end_datetime,
|
|
|
|
* id_users_provider, id_users_customer, id_services.
|
|
|
|
*
|
|
|
|
* @expectedException DatabaseException
|
|
|
|
*
|
|
|
|
* @param array $appointment_data Array with the appointment data. The
|
|
|
|
* keys of the array should have the same names as the db fields.
|
|
|
|
* @return int Returns the id.
|
|
|
|
*/
|
|
|
|
public function find_record_id($appointment_data) {
|
|
|
|
$this->db->where(array(
|
|
|
|
'start_datetime' => $appointment_data['start_datetime'],
|
|
|
|
'end_datetime' => $appointment_data['end_datetime'],
|
|
|
|
'id_users_provider' => $appointment_data['id_users_provider'],
|
|
|
|
'id_users_customer' => $appointment_data['id_users_customer'],
|
|
|
|
'id_services' => $appointment_data['id_services']
|
|
|
|
));
|
|
|
|
|
|
|
|
$result = $this->db->get('ea_appointments');
|
|
|
|
|
|
|
|
if ($result->num_rows() == 0) {
|
|
|
|
throw new DatabaseException('Could not find appointment record id.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result->row()->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate appointment data before the insert or
|
|
|
|
* update operation is executed.
|
|
|
|
*
|
|
|
|
* @param array $appointment_data Contains the appointment data.
|
|
|
|
* @return boolean Returns the validation result.
|
|
|
|
*/
|
|
|
|
public function validate_data($appointment_data) {
|
|
|
|
$this->load->helper('data_validation');
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Check if appointment dates are valid.
|
|
|
|
if (!validate_mysql_datetime($appointment_data['start_datetime'])) {
|
|
|
|
throw new Exception('Appointment start datetime is invalid.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!validate_mysql_datetime($appointment_data['end_datetime'])) {
|
|
|
|
throw new Exception('Appointment end datetime is invalid.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// @task Check if appointment foreign keys are valid.
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
} catch (Exception $exc) {
|
|
|
|
return FALSE;
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Delete an existing appointment record from the database.
|
|
|
|
*
|
|
|
|
* @param int $appointment_id The record id to be deleted.
|
|
|
|
* @return bool Returns the delete operation result.
|
|
|
|
*/
|
|
|
|
public function delete($appointment_id) {
|
|
|
|
$this->db->where('id', $appointment_id);
|
|
|
|
return $this->db->delete('ea_appointments');
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Get a specific row from the appointments table.
|
|
|
|
*
|
|
|
|
* @param int $appointment_id The record's id to be returned.
|
|
|
|
* @return array Returns an associative array with the selected
|
|
|
|
* record's data. Each key has the same name as the database
|
|
|
|
* field names.
|
|
|
|
*/
|
|
|
|
public function get_row($appointment_id) {
|
|
|
|
return $this->db->get_where('ea_appointments', array('id' => $appointment_id))->row_array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a specific field value from the database.
|
|
|
|
*
|
|
|
|
* @param string $field_name The field name of the value to be
|
|
|
|
* returned.
|
|
|
|
* @param int $appointment_id The selected record's id.
|
|
|
|
* @return string Returns the records value from the database.
|
|
|
|
*/
|
|
|
|
public function get_value($field_name, $appointment_id) {
|
|
|
|
return $this->db->get_where('ea_appointments', array('id' => $appointment_id))->row_array()[$field_name];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all, or specific records from appointment's table.
|
|
|
|
*
|
|
|
|
* @example $this->Model->getBatch('id = ' . $recordId);
|
|
|
|
*
|
|
|
|
* @param string $where_clause (OPTIONAL) The WHERE clause of
|
|
|
|
* the query to be executed. DO NOT INCLUDE 'WHERE' KEYWORD.
|
|
|
|
* @return array Returns the rows from the database.
|
|
|
|
*/
|
|
|
|
public function get_batch($where_clause = '') {
|
|
|
|
if ($where_clause != '') {
|
|
|
|
$this->db->where($where_clause);
|
|
|
|
}
|
2013-04-20 20:20:16 +03:00
|
|
|
|
2013-05-08 17:31:17 +03:00
|
|
|
return $this->db->get('ea_appointments')->result_array();
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
|
|
|
|
/* End of file appointments_model.php */
|
|
|
|
/* Location: ./application/models/appointments_model.php */
|