db->query("INSERT INTO `" . DB_PREFIX . "country` SET `name` = '" . $this->db->escape((string)$data['name']) . "', `iso_code_2` = '" . $this->db->escape((string)$data['iso_code_2']) . "', `iso_code_3` = '" . $this->db->escape((string)$data['iso_code_3']) . "', `address_format_id` = '" . (int)$data['address_format_id'] . "', `postcode_required` = '" . (int)$data['postcode_required'] . "', `status` = '" . (bool)(isset($data['status']) ? $data['status'] : 0) . "'"); $this->cache->delete('country'); return $this->db->getLastId(); } /** * @param int $country_id * @param array $data * * @return void */ public function editCountry(int $country_id, array $data): void { $this->db->query("UPDATE `" . DB_PREFIX . "country` SET `name` = '" . $this->db->escape((string)$data['name']) . "', `iso_code_2` = '" . $this->db->escape((string)$data['iso_code_2']) . "', `iso_code_3` = '" . $this->db->escape((string)$data['iso_code_3']) . "', `address_format_id` = '" . (int)$data['address_format_id'] . "', `postcode_required` = '" . (int)$data['postcode_required'] . "', `status` = '" . (bool)(isset($data['status']) ? $data['status'] : 0) . "' WHERE `country_id` = '" . (int)$country_id . "'"); $this->cache->delete('country'); } /** * @param int $country_id * * @return void */ public function deleteCountry(int $country_id): void { $this->db->query("DELETE FROM `" . DB_PREFIX . "country` WHERE `country_id` = '" . (int)$country_id . "'"); $this->cache->delete('country'); } /** * @param int $country_id * * @return array */ public function getCountry(int $country_id): array { $query = $this->db->query("SELECT DISTINCT * FROM `" . DB_PREFIX . "country` WHERE `country_id` = '" . (int)$country_id . "'"); return $query->row; } /** * @param $iso_code_2 * * @return array */ public function getCountryByIsoCode2($iso_code_2): array { $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "country WHERE `iso_code_2` = '" . $this->db->escape($iso_code_2) . "' AND `status` = '1'"); return $query->row; } /** * @param $iso_code_3 * * @return array */ public function getCountryByIsoCode3($iso_code_3): array { $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "country WHERE `iso_code_3` = '" . $this->db->escape($iso_code_3) . "' AND `status` = '1'"); return $query->row; } /** * @param array $data * * @return array */ public function getCountries(array $data = []): array { $sql = "SELECT * FROM `" . DB_PREFIX . "country`"; $implode = []; if (!empty($data['filter_name'])) { $implode[] = "`name` LIKE '" . $this->db->escape((string)$data['filter_name'] . '%') . "'"; } if (!empty($data['filter_iso_code_2'])) { $implode[] = "`iso_code_2` LIKE '" . $this->db->escape((string)$data['filter_iso_code_2'] . '%') . "'"; } if (!empty($data['filter_iso_code_3'])) { $implode[] = "`iso_code_3` LIKE '" . $this->db->escape((string)$data['filter_iso_code_3'] . '%') . "'"; } if ($implode) { $sql .= " WHERE " . implode(" AND ", $implode); } $sort_data = [ 'name', 'iso_code_2', 'iso_code_3' ]; if (isset($data['sort']) && in_array($data['sort'], $sort_data)) { $sql .= " ORDER BY " . $data['sort']; } else { $sql .= " ORDER BY `name`"; } if (isset($data['order']) && ($data['order'] == 'DESC')) { $sql .= " DESC"; } else { $sql .= " ASC"; } if (isset($data['start']) || isset($data['limit'])) { if ($data['start'] < 0) { $data['start'] = 0; } if ($data['limit'] < 1) { $data['limit'] = 20; } $sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit']; } $country_data = $this->cache->get('country.' . md5($sql)); if (!$country_data) { $query = $this->db->query($sql); $country_data = $query->rows; $this->cache->set('country.' . md5($sql), $country_data); } return $country_data; } /** * @param array $data * * @return int */ public function getTotalCountries(array $data = []): int { $sql = "SELECT COUNT(*) AS `total` FROM `" . DB_PREFIX . "country`"; $implode = []; if (!empty($data['filter_name'])) { $implode[] = "`name` LIKE '" . $this->db->escape((string)$data['filter_name'] . '%') . "'"; } if (!empty($data['filter_iso_code_2'])) { $implode[] = "`iso_code_2` LIKE '" . $this->db->escape((string)$data['filter_iso_code_2'] . '%') . "'"; } if (!empty($data['filter_iso_code_3'])) { $implode[] = "`iso_code_3` LIKE '" . $this->db->escape((string)$data['filter_iso_code_3'] . '%') . "'"; } if ($implode) { $sql .= " WHERE " . implode(" AND ", $implode); } $query = $this->db->query($sql); return (int)$query->row['total']; } /** * @param int $address_format_id * * @return int */ public function getTotalCountriesByAddressFormatId(int $address_format_id): int { $query = $this->db->query("SELECT COUNT(*) AS `total` FROM `" . DB_PREFIX . "country` WHERE `address_format_id` = '" . (int)$address_format_id . "'"); return (int)$query->row['total']; } }