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 Customers_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-04 00:26:04 +03:00
|
|
|
* Add a customer record to the database.
|
|
|
|
*
|
2013-04-20 20:20:16 +03:00
|
|
|
* This method adds a customer to the database. If the customer
|
2013-05-04 00:26:04 +03:00
|
|
|
* doesn't exists it is going to be inserted, otherwise the
|
|
|
|
* record is going to be updated.
|
2013-04-20 20:20:16 +03:00
|
|
|
*
|
2013-05-15 18:03:47 +03:00
|
|
|
* @expectedException ValidationException When customer's data are invalid.
|
|
|
|
* @expectedException DatabaseException When update or insert method fails.
|
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param array $customer_data Associative array with the customer's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return int Returns the customer id.
|
2013-04-20 20:20:16 +03:00
|
|
|
*/
|
2013-05-04 00:26:04 +03:00
|
|
|
public function add($customer_data) {
|
2013-06-08 12:54:45 +03:00
|
|
|
// Validate the customer data before doing anything.
|
2013-05-15 18:03:47 +03:00
|
|
|
if (!$this->validate_data($customer_data)) {
|
|
|
|
throw new ValidationException('Customer data are not valid.');
|
|
|
|
}
|
2013-06-20 00:12:06 +03:00
|
|
|
|
|
|
|
// :: CHECK IF CUSTOMER ALREADY EXIST (FROM EMAIL).
|
|
|
|
if ($this->exists($customer_data) && !isset($customer_data['id'])) {
|
|
|
|
// Find the customer id from the database.
|
|
|
|
$customer_data['id'] = $this->get_batch(
|
|
|
|
array('email' => $customer_data['email']))[0]['id'];
|
|
|
|
}
|
2013-05-15 18:03:47 +03:00
|
|
|
|
2013-06-20 00:12:06 +03:00
|
|
|
// :: INSERT OR UPDATE CUSTOMER RECORD
|
2013-06-08 12:54:45 +03:00
|
|
|
if (!isset($customer_data['id'])) {
|
2013-05-15 18:03:47 +03:00
|
|
|
$customer_data['id'] = $this->insert($customer_data);
|
|
|
|
} else {
|
2013-06-08 12:54:45 +03:00
|
|
|
$this->update($customer_data);
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
2013-05-15 18:03:47 +03:00
|
|
|
|
|
|
|
return $customer_data['id'];
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-05-04 00:26:04 +03:00
|
|
|
* Check if a particular customer record already exists.
|
2013-04-20 20:20:16 +03:00
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* This method checks wether the given customer already exists in
|
2013-05-15 18:03:47 +03:00
|
|
|
* the database. It doesn't search with the id, but with the following
|
|
|
|
* fields: "email"
|
|
|
|
*
|
|
|
|
* @expectedException InvalidArgumentException When the $customer_data
|
|
|
|
* array does not contain all the necessary fields.
|
2013-05-04 00:26:04 +03:00
|
|
|
*
|
2013-05-15 18:03:47 +03:00
|
|
|
* @param array $customer_data Associative array with the customer's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return bool Returns wether the record exists or not.
|
2013-04-20 20:20:16 +03:00
|
|
|
*/
|
2013-05-15 18:03:47 +03:00
|
|
|
public function exists($customer_data) {
|
|
|
|
if (!isset($customer_data['email'])) {
|
|
|
|
throw new InvalidArgumentException('Customer\'s email is not provided.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method shouldn't depend on another method of this class.
|
|
|
|
$num_rows = $this->db
|
|
|
|
->select('*')
|
|
|
|
->from('ea_users')
|
|
|
|
->join('ea_roles', 'ea_roles.id = ea_users.id_roles', 'inner')
|
|
|
|
->where('ea_users.email', $customer_data['email'])
|
|
|
|
->where('ea_roles.slug', DB_SLUG_CUSTOMER)
|
|
|
|
->get()->num_rows();
|
|
|
|
|
|
|
|
return ($num_rows > 0) ? TRUE : FALSE;
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-05-04 00:26:04 +03:00
|
|
|
* Insert a new customer record to the database.
|
2013-04-20 20:20:16 +03:00
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param array $customer_data Associative array with the customer's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return int Returns the id of the new record.
|
2013-04-20 20:20:16 +03:00
|
|
|
*/
|
2013-05-04 00:26:04 +03:00
|
|
|
private function insert($customer_data) {
|
|
|
|
// Before inserting the customer we need to get the customer's role id
|
|
|
|
// from the database and assign it to the new record as a foreign key.
|
2013-05-15 18:03:47 +03:00
|
|
|
$customer_role_id = $this->db
|
|
|
|
->select('id')
|
|
|
|
->from('ea_roles')
|
|
|
|
->where('slug', DB_SLUG_CUSTOMER)
|
|
|
|
->get()->row()->id;
|
2013-04-20 20:20:16 +03:00
|
|
|
|
2013-05-15 18:03:47 +03:00
|
|
|
$customer_data['id_roles'] = $customer_role_id;
|
2013-04-20 20:20:16 +03:00
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
if (!$this->db->insert('ea_users', $customer_data)) {
|
2013-05-15 18:03:47 +03:00
|
|
|
throw new DatabaseException('Could not insert customer to the database.');
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
|
2013-05-15 18:03:47 +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 customer record in the database.
|
|
|
|
*
|
|
|
|
* The customer data argument should already include the record
|
|
|
|
* id in order to process the update operation.
|
|
|
|
*
|
|
|
|
* @param array $customer_data Associative array with the customer's
|
|
|
|
* data. Each key has the same name with the database fields.
|
|
|
|
* @return int Returns the updated record id.
|
|
|
|
*/
|
2013-06-08 12:54:45 +03:00
|
|
|
private function update($customer_data) {
|
2013-05-04 00:26:04 +03:00
|
|
|
$this->db->where('id', $customer_data['id']);
|
|
|
|
if (!$this->db->update('ea_users', $customer_data)) {
|
2013-05-15 18:03:47 +03:00
|
|
|
throw new DatabaseException('Could not update customer to the database.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return intval($customer_data['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the database id of a customer record.
|
|
|
|
*
|
|
|
|
* The customer data should include the following fields in order to
|
|
|
|
* get the unique id from the database: "email"
|
|
|
|
*
|
|
|
|
* <strong>IMPORTANT!</strong> The record must already exists in the
|
|
|
|
* database, otherwise an exception is raised.
|
|
|
|
*
|
|
|
|
* @expectedException DatabaseException When the record is not found.
|
|
|
|
*
|
|
|
|
* @param array $customer_data Array with the customer 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($customer_data) {
|
|
|
|
if (!isset($customer_data['email'])) {
|
|
|
|
throw new InvalidArgumentException('Customer\'s email was not provided : '
|
|
|
|
. print_r($customer_data, TRUE));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get customer's role id
|
|
|
|
$result = $this->db
|
|
|
|
->select('ea_users.id')
|
|
|
|
->from('ea_users')
|
|
|
|
->join('ea_roles', 'ea_roles.id = ea_users.id_roles', 'inner')
|
|
|
|
->where('ea_users.email', $customer_data['email'])
|
|
|
|
->where('ea_roles.slug', DB_SLUG_CUSTOMER)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
if ($result->num_rows() == 0) {
|
|
|
|
throw new DatabaseException('Could not find appointment record id.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result->row()->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate customer data before the insert or
|
|
|
|
* update operation is executed.
|
|
|
|
*
|
|
|
|
* @param array $customer_data Contains the customer data.
|
|
|
|
* @return bool Returns the validation result.
|
|
|
|
*/
|
|
|
|
public function validate_data($customer_data) {
|
|
|
|
$this->load->helper('data_validation');
|
|
|
|
|
|
|
|
try {
|
2013-06-08 12:54:45 +03:00
|
|
|
// If a customer id is provided, check whether the record
|
|
|
|
// exist in the database.
|
|
|
|
if (isset($customer_data['id'])) {
|
|
|
|
$num_rows = $this->db->get_where('ea_users',
|
|
|
|
array('id' => $customer_data['id']))->num_rows();
|
|
|
|
if ($num_rows == 0) {
|
|
|
|
throw new Exception('Provided customer id does not '
|
|
|
|
. 'exist in the database.');
|
|
|
|
}
|
|
|
|
}
|
2013-05-15 18:03:47 +03:00
|
|
|
// Validate required fields
|
|
|
|
if (!isset($customer_data['last_name'])
|
|
|
|
|| !isset($customer_data['email'])
|
|
|
|
|| !isset($customer_data['phone_number'])) {
|
|
|
|
throw new Exception('Not all required fields are provided : '
|
|
|
|
. print_r($customer_data, TRUE));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate email address
|
|
|
|
if (!filter_var($customer_data['email'], FILTER_VALIDATE_EMAIL)) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new Exception('Invalid email address provided : '
|
|
|
|
. $customer_data['email']);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
} catch (Exception $exc) {
|
|
|
|
return FALSE;
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an existing customer record from the database.
|
|
|
|
*
|
2013-05-15 18:03:47 +03:00
|
|
|
* @expectedException InvalidArgumentException Raises when
|
|
|
|
* the $customer_id is not an integer.
|
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param int $customer_id The record id to be deleted.
|
|
|
|
* @return bool Returns the delete operation result.
|
|
|
|
*/
|
|
|
|
public function delete($customer_id) {
|
2013-05-17 16:09:10 +03:00
|
|
|
if (!is_numeric($customer_id)) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('Invalid argument type $customer_id : '
|
|
|
|
. $customer_id);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$num_rows = $this->db->get_where('ea_users', array('id' => $customer_id))->num_rows();
|
|
|
|
if ($num_rows == 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
$this->db->where('id', $customer_id);
|
|
|
|
return $this->db->delete('ea_users');
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-05-04 00:26:04 +03:00
|
|
|
* Get a specific row from the appointments table.
|
2013-04-20 20:20:16 +03:00
|
|
|
*
|
2013-05-04 00:26:04 +03:00
|
|
|
* @param int $customer_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.
|
2013-04-20 20:20:16 +03:00
|
|
|
*/
|
2013-05-04 00:26:04 +03:00
|
|
|
public function get_row($customer_id) {
|
2013-05-17 16:09:10 +03:00
|
|
|
if (!is_numeric($customer_id)) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('Invalid argument provided as $customer_id : '
|
|
|
|
. $customer_id);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
return $this->db->get_where('ea_users', array('id' => $customer_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 $customer_id The selected record's id.
|
|
|
|
* @return string Returns the records value from the database.
|
|
|
|
*/
|
|
|
|
public function get_value($field_name, $customer_id) {
|
2013-05-17 16:09:10 +03:00
|
|
|
if (!is_numeric($customer_id)) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('Invalid argument provided as $customer_id : '
|
|
|
|
. $customer_id);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_string($field_name)) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('$field_name argument is not a string : '
|
|
|
|
. $field_name);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->db->get_where('ea_users', array('id' => $customer_id))->num_rows() == 0) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('The record with the $customer_id argument '
|
|
|
|
. 'does not exist in the database : ' . $customer_id);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
2013-06-08 12:54:45 +03:00
|
|
|
$row_data = $this->db->get_where('ea_users', array('id' => $customer_id)
|
|
|
|
)->row_array();
|
2013-05-15 18:03:47 +03:00
|
|
|
if (!isset($row_data[$field_name])) {
|
2013-06-08 12:54:45 +03:00
|
|
|
throw new InvalidArgumentException('The given $field_name argument does not'
|
|
|
|
. 'exist in the database : ' . $field_name);
|
2013-05-15 18:03:47 +03:00
|
|
|
}
|
|
|
|
|
2013-06-08 12:54:45 +03:00
|
|
|
return $this->db->get_where('ea_users', array('id' => $customer_id))
|
|
|
|
->row_array()[$field_name];
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all, or specific records from appointment's table.
|
|
|
|
*
|
|
|
|
* @example $this->Model->getBatch('id = ' . $recordId);
|
|
|
|
*
|
|
|
|
* @param string $whereClause (OPTIONAL) The WHERE clause of
|
|
|
|
* the query to be executed. DO NOT INCLUDE 'WHERE' KEYWORD.
|
|
|
|
* @return array Returns the rows from the database.
|
|
|
|
*/
|
2013-05-15 18:03:47 +03:00
|
|
|
public function get_batch($where_clause = '') {
|
2013-05-04 00:26:04 +03:00
|
|
|
$customers_role_id = $this->get_customers_role_id();
|
2013-04-20 20:20:16 +03:00
|
|
|
|
2013-05-15 18:03:47 +03:00
|
|
|
if ($where_clause != '') {
|
2013-05-04 00:26:04 +03:00
|
|
|
$this->db->where($where_clause);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->db->where('id_roles', $customers_role_id);
|
|
|
|
|
2013-05-08 17:31:17 +03:00
|
|
|
return $this->db->get('ea_users')->result_array();
|
2013-05-04 00:26:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the customers role id from the database.
|
|
|
|
*
|
|
|
|
* @return int Returns the role id for the customer records.
|
|
|
|
*/
|
|
|
|
public function get_customers_role_id() {
|
|
|
|
return $this->db->get_where('ea_roles', array('slug' => DB_SLUG_CUSTOMER))->row()->id;
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/* End of file customers_model.php */
|
|
|
|
/* Location: ./application/models/customers_model.php */
|