Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ dhakazone.com/ catalog/ model/ extension/ payment/ |
|
<?php class ModelExtensionPaymentG2APay extends Model { public function getMethod($address, $total) { $this->load->language('extension/payment/g2apay'); $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('payment_g2apay_geo_zone_id') . "' AND country_id = '" . (int)$address['country_id'] . "' AND (zone_id = '" . (int)$address['zone_id'] . "' OR zone_id = '0')"); if ($this->config->get('payment_g2apay_total') > 0 && $this->config->get('payment_g2apay_total') > $total) { $status = false; } elseif (!$this->config->get('payment_g2apay_geo_zone_id')) { $status = true; } elseif ($query->num_rows) { $status = true; } else { $status = false; } $method_data = array(); if ($status) { $method_data = array( 'code' => 'g2apay', 'title' => $this->language->get('text_title'), 'terms' => '', 'sort_order' => $this->config->get('payment_g2apay_sort_order') ); } return $method_data; } public function addG2aOrder($order_info) { $this->db->query("INSERT INTO `" . DB_PREFIX . "g2apay_order` SET `order_id` = '" . (int)$order_info['order_id'] . "', `date_added` = now(), `modified` = now(), `currency_code` = '" . $this->db->escape($order_info['currency_code']) . "', `total` = '" . $this->currency->format($order_info['total'], $order_info['currency_code'], false, false) . "'"); } public function updateOrder($g2apay_order_id, $g2apay_transaction_id, $type, $order_info) { $this->db->query("UPDATE `" . DB_PREFIX . "g2apay_order` SET `g2apay_transaction_id` = '" . $this->db->escape($g2apay_transaction_id) . "', `modified` = now() WHERE `order_id` = '" . (int)$order_info['order_id'] . "'"); $this->addTransaction($g2apay_order_id, $type, $order_info); } public function addTransaction($g2apay_order_id, $type, $order_info) { $this->db->query("INSERT INTO `" . DB_PREFIX . "g2apay_order_transaction` SET `g2apay_order_id` = '" . (int)$g2apay_order_id . "', `date_added` = now(), `type` = '" . $this->db->escape($type) . "', `amount` = '" . $this->currency->format($order_info['total'], $order_info['currency_code'], false, false) . "'"); } public function getG2aOrder($order_id) { $qry = $this->db->query("SELECT * FROM `" . DB_PREFIX . "g2apay_order` WHERE `order_id` = '" . (int)$order_id . "' LIMIT 1"); if ($qry->num_rows) { return $qry->row; } else { return false; } } public function sendCurl($url, $fields) { $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $fields); $response = curl_exec($curl); curl_close($curl); return json_decode($response); } public function logger($message) { if ($this->config->get('payment_g2apay_debug') == 1) { $log = new Log('g2apay.log'); $backtrace = debug_backtrace(); $log->write('Origin: ' . $backtrace[6]['class'] . '::' . $backtrace[6]['function']); $log->write(print_r($message, 1)); } } }