validate_data($customer_data)) { throw new ValidationException('Customer data are not valid.'); } if (!$this->exists($customer_data)) { $customer_data['id'] = $this->insert($customer_data); } else { $customer_data['id'] = $this->update($customer_data); } return $customer_data['id']; } /** * Check if a particular customer record already exists. * * This method checks wether the given customer already exists in * 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. * * @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. */ 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; } /** * Insert a new customer record to the database. * * @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. */ 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. $customer_role_id = $this->db ->select('id') ->from('ea_roles') ->where('slug', DB_SLUG_CUSTOMER) ->get()->row()->id; $customer_data['id_roles'] = $customer_role_id; if (!$this->db->insert('ea_users', $customer_data)) { throw new DatabaseException('Could not insert customer to the database.'); } return intval($this->db->insert_id()); } /** * 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. */ private function update($customer_data) { if (!isset($customer_data['id'])) { $customer_data['id'] = $this->find_record_id($customer_data); } $this->db->where('id', $customer_data['id']); if (!$this->db->update('ea_users', $customer_data)) { 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" * * IMPORTANT! 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 { // 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)) { throw new Exception('Invalid email address provided : ' . $customer_data['email']); } return TRUE; } catch (Exception $exc) { return FALSE; } } /** * Delete an existing customer record from the database. * * @expectedException InvalidArgumentException Raises when * the $customer_id is not an integer. * * @param int $customer_id The record id to be deleted. * @return bool Returns the delete operation result. */ public function delete($customer_id) { if (!is_int($customer_id)) { throw new InvalidArgumentException('Invalid argument type $customer_id : ' . $customer_id); } $num_rows = $this->db->get_where('ea_users', array('id' => $customer_id))->num_rows(); if ($num_rows == 0) { return FALSE; } $this->db->where('id', $customer_id); return $this->db->delete('ea_users'); } /** * Get a specific row from the appointments table. * * @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. */ public function get_row($customer_id) { if (!is_int($customer_id)) { throw new InvalidArgumentException('Invalid argument provided as $customer_id : ' . $customer_id); } 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) { if (!is_int($customer_id)) { throw new InvalidArgumentException('Invalid argument provided as $customer_id : ' . $customer_id); } if (!is_string($field_name)) { throw new InvalidArgumentException('$field_name argument is not a string : ' . $field_name); } if ($this->db->get_where('ea_users', array('id' => $customer_id))->num_rows() == 0) { throw new InvalidArgumentException('The record with the $customer_id argument does not exist in the database : ' . $customer_id); } $row_data = $this->db->get_where('ea_users', array('id' => $customer_id))->row_array(); if (!isset($row_data[$field_name])) { throw new InvalidArgumentException('The given $field_name argument does not exist in the database : ' . $field_name); } return $this->db->get_where('ea_users', array('id' => $customer_id))->row_array()[$field_name]; } /** * 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. */ public function get_batch($where_clause = '') { $customers_role_id = $this->get_customers_role_id(); if ($where_clause != '') { $this->db->where($where_clause); } $this->db->where('id_roles', $customers_role_id); return $this->db->get('ea_users')->result_array(); } /** * 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; } } /* End of file customers_model.php */ /* Location: ./application/models/customers_model.php */