Current Path : /var/www/opcart/upload/admin/controller/extension/payment/ |
Current File : /var/www/opcart/upload/admin/controller/extension/payment/klarna_checkout.php |
<?php class ControllerExtensionPaymentKlarnaCheckout extends Controller { private $error = array(); public function index() { $this->load->language('extension/payment/klarna_checkout'); $this->document->setTitle($this->language->get('heading_title')); $this->load->model('setting/setting'); if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) { $this->model_setting_setting->editSetting('klarna_checkout', $this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $this->response->redirect($this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=payment', true)); } $data['heading_title'] = $this->language->get('heading_title'); $data['text_edit'] = $this->language->get('text_edit'); $data['text_enabled'] = $this->language->get('text_enabled'); $data['text_disabled'] = $this->language->get('text_disabled'); $data['text_none'] = $this->language->get('text_none'); $data['text_live'] = $this->language->get('text_live'); $data['text_test'] = $this->language->get('text_test'); $data['text_confirm_settlement'] = $this->language->get('text_confirm_settlement'); $data['text_downloading_settlement'] = $this->language->get('text_downloading_settlement'); $data['text_processing_orders'] = $this->language->get('text_processing_orders'); $data['text_processing_order'] = $this->language->get('text_processing_order'); $data['text_no_files'] = $this->language->get('text_no_files'); $data['text_loading'] = $this->language->get('text_loading'); $data['entry_debug'] = $this->language->get('entry_debug'); $data['entry_total'] = $this->language->get('entry_total'); $data['entry_order_status'] = $this->language->get('entry_order_status'); $data['entry_status'] = $this->language->get('entry_status'); $data['entry_terms'] = $this->language->get('entry_terms'); $data['entry_currency'] = $this->language->get('entry_currency'); $data['entry_locale'] = $this->language->get('entry_locale'); $data['entry_merchant_id'] = $this->language->get('entry_merchant_id'); $data['entry_secret'] = $this->language->get('entry_secret'); $data['entry_environment'] = $this->language->get('entry_environment'); $data['entry_country'] = $this->language->get('entry_country'); $data['entry_api'] = $this->language->get('entry_api'); $data['entry_sftp_username'] = $this->language->get('entry_sftp_username'); $data['entry_sftp_password'] = $this->language->get('entry_sftp_password'); $data['entry_process_settlement'] = $this->language->get('entry_process_settlement'); $data['entry_settlement_order_status'] = $this->language->get('entry_settlement_order_status'); $data['help_debug'] = $this->language->get('help_debug'); $data['help_total'] = $this->language->get('help_total'); $data['help_locale'] = $this->language->get('help_locale'); $data['help_api'] = $this->language->get('help_api'); $data['help_sftp_username'] = $this->language->get('help_sftp_username'); $data['help_sftp_password'] = $this->language->get('help_sftp_password'); $data['help_settlement_order_status'] = $this->language->get('help_settlement_order_status'); $data['button_save'] = $this->language->get('button_save'); $data['button_cancel'] = $this->language->get('button_cancel'); $data['button_account_remove'] = $this->language->get('button_account_remove'); $data['button_account_add'] = $this->language->get('button_account_add'); $data['button_process_settlement'] = $this->language->get('button_process_settlement'); $data['button_ip_add'] = $this->language->get('button_ip_add'); $data['tab_setting'] = $this->language->get('tab_setting'); $data['tab_account'] = $this->language->get('tab_account'); $data['tab_settlement'] = $this->language->get('tab_settlement'); $data['token'] = $this->session->data['token']; $this->load->model('localisation/language'); $data['languages'] = $this->model_localisation_language->getLanguages(); $this->load->model('localisation/country'); $data['countries'] = $this->model_localisation_country->getCountries(); $data['api_locations'] = array( array( 'name' => 'North America', 'code' => 'NA' ), array( 'name' => 'Europe', 'code' => 'EU' ) ); $this->load->model('catalog/information'); $data['informations'] = $this->model_catalog_information->getInformations(); $this->load->model('localisation/currency'); $data['currencies'] = $this->model_localisation_currency->getCurrencies(); $this->load->model('localisation/order_status'); $data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses(); if (isset($this->error['warning'])) { $data['error_warning'] = $this->error['warning']; } else { $data['error_warning'] = ''; } if (isset($this->error['account_warning'])) { $data['error_account_warning'] = $this->error['account_warning']; } else { $data['error_account_warning'] = ''; } if (isset($this->error['account'])) { $data['error_account'] = $this->error['account']; } else { $data['error_account'] = array(); } if (isset($this->error['settlement_warning'])) { $data['error_settlement_warning'] = $this->error['settlement_warning']; } else { $data['error_settlement_warning'] = ''; } $data['breadcrumbs'] = array(); $data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'), 'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], true) ); $data['breadcrumbs'][] = array( 'text' => $this->language->get('text_extension'), 'href' => $this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=payment', true) ); $data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'), 'href' => $this->url->link('extension/payment/klarna_checkout', 'token=' . $this->session->data['token'], true) ); $data['action'] = $this->url->link('extension/payment/klarna_checkout', 'token=' . $this->session->data['token'], true); $data['cancel'] = $this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=payment', true); if (isset($this->request->post['klarna_checkout_debug'])) { $data['klarna_checkout_debug'] = $this->request->post['klarna_checkout_debug']; } else { $data['klarna_checkout_debug'] = $this->config->get('klarna_checkout_debug'); } if (isset($this->request->post['klarna_checkout_total'])) { $data['klarna_checkout_total'] = $this->request->post['klarna_checkout_total']; } else { $data['klarna_checkout_total'] = $this->config->get('klarna_checkout_total'); } if (isset($this->request->post['klarna_checkout_order_status_id'])) { $data['klarna_checkout_order_status_id'] = $this->request->post['klarna_checkout_order_status_id']; } else { $data['klarna_checkout_order_status_id'] = $this->config->get('klarna_checkout_order_status_id'); } if (isset($this->request->post['klarna_checkout_terms'])) { $data['klarna_checkout_terms'] = $this->request->post['klarna_checkout_terms']; } else { $data['klarna_checkout_terms'] = $this->config->get('klarna_checkout_terms'); } if (isset($this->request->post['klarna_checkout_status'])) { $data['klarna_checkout_status'] = $this->request->post['klarna_checkout_status']; } else { $data['klarna_checkout_status'] = $this->config->get('klarna_checkout_status'); } if ($this->request->server['REQUEST_METHOD'] == 'POST' && !isset($this->request->post['klarna_checkout_account'])) { $data['klarna_checkout_account'] = array(); } elseif ($this->request->server['REQUEST_METHOD'] == 'POST' && isset($this->request->post['klarna_checkout_account'])) { $data['klarna_checkout_account'] = $this->request->post['klarna_checkout_account']; } elseif ($this->config->get('klarna_checkout_account')) { $data['klarna_checkout_account'] = $this->config->get('klarna_checkout_account'); } else { $data['klarna_checkout_account'] = array(); } if (isset($this->request->post['klarna_checkout_sftp_username'])) { $data['klarna_checkout_sftp_username'] = $this->request->post['klarna_checkout_sftp_username']; } else { $data['klarna_checkout_sftp_username'] = $this->config->get('klarna_checkout_sftp_username'); } if (isset($this->request->post['klarna_checkout_sftp_password'])) { $data['klarna_checkout_sftp_password'] = $this->request->post['klarna_checkout_sftp_password']; } else { $data['klarna_checkout_sftp_password'] = $this->config->get('klarna_checkout_sftp_password'); } if (isset($this->request->post['klarna_checkout_settlement_order_status_id'])) { $data['klarna_checkout_settlement_order_status_id'] = $this->request->post['klarna_checkout_settlement_order_status_id']; } else { $data['klarna_checkout_settlement_order_status_id'] = $this->config->get('klarna_checkout_settlement_order_status_id'); } $data['store_url'] = $this->request->server['HTTPS'] ? HTTPS_CATALOG : HTTP_CATALOG; // API login $this->load->model('user/api'); $api_info = $this->model_user_api->getApi($this->config->get('config_api_id')); if ($api_info) { $data['api_id'] = $api_info['api_id']; $data['api_key'] = $api_info['key']; $data['api_ip'] = $this->request->server['REMOTE_ADDR']; } else { $data['api_id'] = ''; $data['api_key'] = ''; $data['api_ip'] = ''; } $data['header'] = $this->load->controller('common/header'); $data['column_left'] = $this->load->controller('common/column_left'); $data['footer'] = $this->load->controller('common/footer'); $this->response->setOutput($this->load->view('extension/payment/klarna_checkout', $data)); } public function order() { $this->load->language('extension/payment/klarna_checkout'); $data['text_payment_info'] = $this->language->get('text_payment_info'); $data['token'] = $this->session->data['token']; $data['order_id'] = $this->request->get['order_id']; return $this->load->view('extension/payment/klarna_checkout_order', $data); } public function getTransaction() { $this->load->language('extension/payment/klarna_checkout'); $this->load->model('extension/payment/klarna_checkout'); $this->load->model('sale/order'); if (!$this->config->get('klarna_checkout_status') || !isset($this->request->get['order_id'])) { return; } $order_reference = $this->model_extension_payment_klarna_checkout->getOrder($this->request->get['order_id']); $order_info = $this->model_sale_order->getOrder($this->request->get['order_id']); if (!$order_reference || !$order_reference['order_ref'] || !$order_info) { return; } list($klarna_account, $connector) = $this->model_extension_payment_klarna_checkout->getConnector($this->config->get('klarna_checkout_account'), $order_info['shipping_country_id'], $order_info['currency_code']); if (!$klarna_account || !$connector) { return; } $klarna_order = $this->model_extension_payment_klarna_checkout->omRetrieve($connector, $order_reference['order_ref']); if (!$klarna_order) { return; } $data['text_na'] = $this->language->get('text_na'); $data['text_confirm_cancel'] = $this->language->get('text_confirm_cancel'); $data['text_confirm_capture'] = $this->language->get('text_confirm_capture'); $data['text_confirm_refund'] = $this->language->get('text_confirm_refund'); $data['text_confirm_extend_authorization'] = $this->language->get('text_confirm_extend_authorization'); $data['text_confirm_release_authorization'] = $this->language->get('text_confirm_release_authorization'); $data['text_confirm_merchant_reference'] = $this->language->get('text_confirm_merchant_reference'); $data['text_confirm_shipping_info'] = $this->language->get('text_confirm_shipping_info'); $data['text_confirm_billing_address'] = $this->language->get('text_confirm_billing_address'); $data['text_confirm_shipping_address'] = $this->language->get('text_confirm_shipping_address'); $data['text_confirm_trigger_send_out'] = $this->language->get('text_confirm_trigger_send_out'); $data['text_no_capture'] = $this->language->get('text_no_capture'); $data['text_no_refund'] = $this->language->get('text_no_refund'); $data['text_new_capture_title'] = $this->language->get('text_new_capture_title'); $data['text_new_refund_title'] = $this->language->get('text_new_refund_title'); $data['column_order_id'] = $this->language->get('column_order_id'); $data['column_capture_id'] = $this->language->get('column_capture_id'); $data['column_reference'] = $this->language->get('column_reference'); $data['column_status'] = $this->language->get('column_status'); $data['column_merchant_reference_1'] = $this->language->get('column_merchant_reference_1'); $data['column_customer_details'] = $this->language->get('column_customer_details'); $data['column_billing_address'] = $this->language->get('column_billing_address'); $data['column_shipping_address'] = $this->language->get('column_shipping_address'); $data['column_order_lines'] = $this->language->get('column_order_lines'); $data['column_amount'] = $this->language->get('column_amount'); $data['column_authorization_remaining'] = $this->language->get('column_authorization_remaining'); $data['column_authorization_expiry'] = $this->language->get('column_authorization_expiry'); $data['column_item_reference'] = $this->language->get('column_item_reference'); $data['column_type'] = $this->language->get('column_type'); $data['column_quantity'] = $this->language->get('column_quantity'); $data['column_quantity_unit'] = $this->language->get('column_quantity_unit'); $data['column_name'] = $this->language->get('column_name'); $data['column_total_amount'] = $this->language->get('column_total_amount'); $data['column_unit_price'] = $this->language->get('column_unit_price'); $data['column_total_discount_amount'] = $this->language->get('column_total_discount_amount'); $data['column_tax_rate'] = $this->language->get('column_tax_rate'); $data['column_total_tax_amount'] = $this->language->get('column_total_tax_amount'); $data['column_action'] = $this->language->get('column_action'); $data['column_cancel'] = $this->language->get('column_cancel'); $data['column_capture'] = $this->language->get('column_capture'); $data['column_refund'] = $this->language->get('column_refund'); $data['column_date'] = $this->language->get('column_date'); $data['column_refund_history'] = $this->language->get('column_refund_history'); $data['column_title'] = $this->language->get('column_title'); $data['column_given_name'] = $this->language->get('column_given_name'); $data['column_family_name'] = $this->language->get('column_family_name'); $data['column_street_address'] = $this->language->get('column_street_address'); $data['column_street_address2'] = $this->language->get('column_street_address2'); $data['column_city'] = $this->language->get('column_city'); $data['column_postal_code'] = $this->language->get('column_postal_code'); $data['column_region'] = $this->language->get('column_region'); $data['column_country'] = $this->language->get('column_country'); $data['column_email'] = $this->language->get('column_email'); $data['column_phone'] = $this->language->get('column_phone'); $data['column_shipping_info'] = $this->language->get('column_shipping_info'); $data['column_shipping_company'] = $this->language->get('column_shipping_company'); $data['column_shipping_method'] = $this->language->get('column_shipping_method'); $data['column_tracking_number'] = $this->language->get('column_tracking_number'); $data['column_tracking_uri'] = $this->language->get('column_tracking_uri'); $data['column_return_shipping_company'] = $this->language->get('column_return_shipping_company'); $data['column_return_tracking_number'] = $this->language->get('column_return_tracking_number'); $data['column_return_tracking_uri'] = $this->language->get('column_return_tracking_uri'); $data['entry_shipping_company'] = $this->language->get('entry_shipping_company'); $data['entry_shipping_method'] = $this->language->get('entry_shipping_method'); $data['entry_tracking_number'] = $this->language->get('entry_tracking_number'); $data['entry_tracking_uri'] = $this->language->get('entry_tracking_uri'); $data['entry_return_shipping_company'] = $this->language->get('entry_return_shipping_company'); $data['entry_return_tracking_number'] = $this->language->get('entry_return_tracking_number'); $data['entry_return_tracking_uri'] = $this->language->get('entry_return_tracking_uri'); $data['button_cancel'] = $this->language->get('button_cancel'); $data['button_capture'] = $this->language->get('button_capture'); $data['button_refund'] = $this->language->get('button_refund'); $data['button_extend_authorization'] = $this->language->get('button_extend_authorization'); $data['button_release_authorization'] = $this->language->get('button_release_authorization'); $data['button_update'] = $this->language->get('button_update'); $data['button_add'] = $this->language->get('button_add'); $data['button_add_shipping_info'] = $this->language->get('button_add_shipping_info'); $data['button_edit'] = $this->language->get('button_edit'); $data['button_close'] = $this->language->get('button_close'); $data['button_trigger_send_out'] = $this->language->get('button_trigger_send_out'); $data['button_edit_shipping_info'] = $this->language->get('button_edit_shipping_info'); $data['button_edit_billing_address'] = $this->language->get('button_edit_billing_address'); $data['button_new_capture'] = $this->language->get('button_new_capture'); $data['button_new_refund'] = $this->language->get('button_new_refund'); $data['order_ref'] = $order_reference['order_ref']; $data['token'] = $this->session->data['token']; $data['order_id'] = $this->request->get['order_id']; $extend_authorization_action = $cancel_action = $capture_action = $refund_action = $merchant_reference_action = $address_action = $release_authorization_action = false; switch (strtoupper($klarna_order['status'])) { case 'AUTHORIZED': $merchant_reference_action = true; $extend_authorization_action = true; $address_action = true; $cancel_action = true; $capture_action = true; break; case 'PART_CAPTURED': $merchant_reference_action = true; $extend_authorization_action = true; $release_authorization_action = true; $address_action = true; $capture_action = true; $refund_action = true; break; case 'CAPTURED': $address_action = true; $merchant_reference_action = true; $refund_action = true; break; case 'CANCELLED': break; case 'EXPIRED': break; case 'CLOSED': break; } $format = '{title} {given_name} {family_name}' . "\n" . '{street_address}' . "\n" . '{street_address2}' . "\n" . '{city} {postcode}' . "\n" . '{region}' . "\n" . '{country}' . "\n" . '{email} {phone}'; $find = array( '{title}', '{given_name}', '{family_name}', '{street_address}', '{street_address2}', '{city}', '{postcode}', '{region}', '{country}', '{email}', '{phone}', ); $replace = array( 'title' => $klarna_order['billing_address']['title'], 'given_name' => $klarna_order['billing_address']['given_name'], 'family_name' => $klarna_order['billing_address']['family_name'], 'street_address' => $klarna_order['billing_address']['street_address'], 'street_address2' => $klarna_order['billing_address']['street_address2'], 'city' => $klarna_order['billing_address']['city'], 'postcode' => $klarna_order['billing_address']['postal_code'], 'region' => $klarna_order['billing_address']['region'], 'country' => $klarna_order['billing_address']['country'], 'email' => $klarna_order['billing_address']['email'], 'phone' => $klarna_order['billing_address']['phone'] ); $billing_address_formatted = str_replace(array("\r\n", "\r", "\n"), '<br />', preg_replace(array("/\s\s+/", "/\r\r+/", "/\n\n+/"), '<br />', trim(str_replace($find, $replace, $format)))); $replace = array( 'title' => $klarna_order['shipping_address']['title'], 'given_name' => $klarna_order['shipping_address']['given_name'], 'family_name' => $klarna_order['shipping_address']['family_name'], 'street_address' => $klarna_order['shipping_address']['street_address'], 'street_address2' => $klarna_order['shipping_address']['street_address2'], 'city' => $klarna_order['shipping_address']['city'], 'postcode' => $klarna_order['shipping_address']['postal_code'], 'region' => $klarna_order['shipping_address']['region'], 'country' => $klarna_order['shipping_address']['country'], 'email' => $klarna_order['shipping_address']['email'], 'phone' => $klarna_order['shipping_address']['phone'] ); $shipping_address_formatted = str_replace(array("\r\n", "\r", "\n"), '<br />', preg_replace(array("/\s\s+/", "/\r\r+/", "/\n\n+/"), '<br />', trim(str_replace($find, $replace, $format)))); $order_lines = array(); foreach ($klarna_order['order_lines'] as $order_line) { $order_lines[] = array( 'reference' => $order_line['reference'], 'type' => $order_line['type'], 'quantity' => $order_line['quantity'], 'quantity_unit' => $order_line['quantity_unit'], 'name' => $order_line['name'], 'total_amount' => $this->currency->format($order_line['total_amount'] / 100, $order_info['currency_code'], '1.00000000'), 'unit_price' => $this->currency->format($order_line['unit_price'] / 100, $order_info['currency_code'], '1.00000000'), 'total_discount_amount' => $this->currency->format($order_line['total_discount_amount'] / 100, $order_info['currency_code'], '1.00000000'), 'tax_rate' => ($order_line['tax_rate'] / 100) . '%', 'total_tax_amount' => $this->currency->format($order_line['total_tax_amount'] / 100, $order_info['currency_code'], '1.00000000') ); } $data['transaction'] = array( 'order_id' => $klarna_order['order_id'], 'reference' => $klarna_order['klarna_reference'], 'status' => $klarna_order['status'], 'merchant_reference_1' => $klarna_order['merchant_reference1'], 'billing_address' => $klarna_order['billing_address'], 'shipping_address' => $klarna_order['shipping_address'], 'billing_address_formatted' => $billing_address_formatted, 'shipping_address_formatted' => $shipping_address_formatted, 'order_lines' => $order_lines, 'amount' => $this->currency->format($klarna_order['order_amount'] / 100, $order_info['currency_code'], '1.00000000'), 'authorization_expiry' => isset($klarna_order['expires_at']) ? date($this->language->get('date_format_short'), strtotime($klarna_order['expires_at'])) : '', 'authorization_remaining' => $this->currency->format($klarna_order['remaining_authorized_amount'] / 100, $order_info['currency_code'], '1.00000000'), ); $max_capture_amount = $klarna_order['remaining_authorized_amount'] / 100; $max_refund_amount = $klarna_order['captured_amount'] / 100; $data['captures'] = array(); foreach ($klarna_order['captures'] as $capture) { $data['captures'][] = array( 'capture_id' => $capture['capture_id'], 'shipping_info_title' => sprintf($this->language->get('text_capture_shipping_info_title'), $capture['capture_id']), 'billing_address_title' => sprintf($this->language->get('text_capture_billing_address_title'), $capture['capture_id']), 'date_added' => date($this->language->get('datetime_format'), strtotime($capture['captured_at'])), 'amount' => $this->currency->format($capture['captured_amount'] / 100, $order_info['currency_code'], '1.00000000', true), 'reference' => $capture['klarna_reference'], 'shipping_info' => $capture['shipping_info'], 'billing_address' => $capture['billing_address'], 'shipping_address' => $capture['shipping_address'] ); } $data['refunds'] = array(); foreach ($klarna_order['refunds'] as $capture) { $max_refund_amount -= ($capture['refunded_amount'] / 100); $data['refunds'][] = array( 'date_added' => date($this->language->get('datetime_format'), strtotime($capture['refunded_at'])), 'amount' => $this->currency->format($capture['refunded_amount'] / 100, $order_info['currency_code'], '1.00000000', true) ); } if (!$max_capture_amount) { $capture_action = false; } if (!$max_refund_amount) { $refund_action = false; } $data['allowed_shipping_methods'] = array( 'PickUpStore', 'Home', 'BoxReg', 'BoxUnreg', 'PickUpPoint', 'Own' ); $data['extend_authorization_action'] = $extend_authorization_action; $data['cancel_action'] = $cancel_action; $data['capture_action'] = $capture_action; $data['refund_action'] = $refund_action; $data['address_action'] = $address_action; $data['merchant_reference_action'] = $merchant_reference_action; $data['release_authorization_action'] = $release_authorization_action; $data['max_capture_amount'] = $this->currency->format($max_capture_amount, $order_info['currency_code'], '1.00000000', false); $data['max_refund_amount'] = $this->currency->format($max_refund_amount, $order_info['currency_code'], '1.00000000', false); $data['symbol_left'] = $this->currency->getSymbolLeft($order_info['currency_code']); $data['symbol_right'] = $this->currency->getSymbolRight($order_info['currency_code']); $this->response->setOutput($this->load->view('extension/payment/klarna_checkout_order_ajax', $data)); } public function install() { $this->load->model('extension/payment/klarna_checkout'); $this->model_extension_payment_klarna_checkout->install(); } public function uninstall() { $this->load->model('extension/payment/klarna_checkout'); $this->model_extension_payment_klarna_checkout->uninstall(); } public function transactionCommand() { $this->load->language('extension/payment/klarna_checkout'); $this->load->model('extension/payment/klarna_checkout'); $this->load->model('sale/order'); $json = array(); $success = $error = ''; $order_info = $this->model_sale_order->getOrder($this->request->get['order_id']); list($klarna_account, $connector) = $this->model_extension_payment_klarna_checkout->getConnector($this->config->get('klarna_checkout_account'), $order_info['shipping_country_id'], $order_info['currency_code']); if (!$klarna_account || !$connector) { return; } if ($this->request->post['type'] == 'cancel') { $action = $this->model_extension_payment_klarna_checkout->omCancel($connector, $this->request->post['order_ref']); } elseif ($this->request->post['type'] == 'capture' && $this->request->post['data']) { $action = $this->model_extension_payment_klarna_checkout->omCapture($connector, $this->request->post['order_ref'], array( 'captured_amount' => $this->request->post['data'] * 100 )); } elseif ($this->request->post['type'] == 'refund' && $this->request->post['data']) { $action = $this->model_extension_payment_klarna_checkout->omRefund($connector, $this->request->post['order_ref'], array( 'refunded_amount' => $this->request->post['data'] * 100 )); } elseif ($this->request->post['type'] == 'extend_authorization') { $action = $this->model_extension_payment_klarna_checkout->omExtendAuthorizationTime($connector, $this->request->post['order_ref']); } elseif ($this->request->post['type'] == 'merchant_reference' && $this->request->post['data']) { $data = array(); parse_str(html_entity_decode($this->request->post['data']), $data); $action = $this->model_extension_payment_klarna_checkout->omUpdateMerchantReference($connector, $this->request->post['order_ref'], array( 'merchant_reference1' => (string)$data['merchant_reference_1'] )); } elseif (($this->request->post['type'] == 'billing_address' || $this->request->post['type'] == 'shipping_address') && $this->request->post['data']) { if ($this->request->post['type'] == 'billing_address') { $data['billing_address'] = array(); parse_str(html_entity_decode($this->request->post['data']), $data['billing_address']); } else if ($this->request->post['type'] == 'shipping_address') { $data['shipping_address'] = array(); parse_str(html_entity_decode($this->request->post['data']), $data['shipping_address']); } $action = $this->model_extension_payment_klarna_checkout->omUpdateAddress($connector, $this->request->post['order_ref'], $data); } elseif ($this->request->post['type'] == 'release_authorization') { $action = $this->model_extension_payment_klarna_checkout->omReleaseAuthorization($connector, $this->request->post['order_ref']); } elseif ($this->request->post['type'] == 'capture_shipping_info' && isset($this->request->post['id'])) { $data = array(); parse_str(html_entity_decode($this->request->post['data']), $data); $action = $this->model_extension_payment_klarna_checkout->omShippingInfo($connector, $this->request->post['order_ref'], $this->request->post['id'], $data); } elseif ($this->request->post['type'] == 'capture_billing_address' && isset($this->request->post['id'])) { $data['billing_address'] = array(); parse_str(html_entity_decode($this->request->post['data']), $data['billing_address']); $action = $this->model_extension_payment_klarna_checkout->omCustomerDetails($connector, $this->request->post['order_ref'], $this->request->post['id'], $data); } elseif ($this->request->post['type'] == 'trigger_send_out' && isset($this->request->post['id'])) { $action = $this->model_extension_payment_klarna_checkout->omTriggerSendOut($connector, $this->request->post['order_ref'], $this->request->post['id']); } else { $error = true; } if (!$error && $action) { $success = $this->language->get('text_success_action'); } elseif (!$error && $action && isset($action->message)) { $error = sprintf($this->language->get('text_error_settle'), $action->message); } else { $error = $this->language->get('text_error_generic'); } $json['success'] = $success; $json['error'] = $error; $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } public function downloadSettlementFiles() { $this->load->language('extension/payment/klarna_checkout'); $this->load->model('extension/payment/klarna_checkout'); $this->load->model('sale/order'); $json = array(); $error = array(); $klarna_checkout_directory = DIR_UPLOAD . 'klarna_checkout/'; if (isset($this->request->post['username'])) { $username = $this->request->post['username']; } else { $username = ''; } if (isset($this->request->post['password'])) { $password = html_entity_decode($this->request->post['password']); } else { $password = ''; } if (isset($this->request->post['order_status_id'])) { $order_status_id = $this->request->post['order_status_id']; } else { $order_status_id = false; } if (!$username || !$password || !$order_status_id) { $error[] = 'Please supply a username, password and order status'; } if (!$error) { // Connect to the site via FTP $connection = ftp_connect('mft.klarna.com', '4001'); $files = array(); if ($connection) { $login = ftp_login($connection, $username, $password); if ($login) { $files = ftp_nlist($connection, '.'); rsort($files); if (!is_dir($klarna_checkout_directory)) { mkdir($klarna_checkout_directory, 0777); } // Save all files to local foreach (array_diff($files, array('.', '..')) as $file) { if (!ftp_get($connection, $klarna_checkout_directory . $file, $file, FTP_BINARY)) { $error[] = 'There was a problem saving one or more files'; } } } } } $orders_to_process = array(); $files = scandir($klarna_checkout_directory); if (!$error) { // Loop local files and process foreach (array_diff($files, array('.', '..')) as $file) { $handle = fopen($klarna_checkout_directory . $file, 'r'); // Skip first 2 lines, use third as headings fgetcsv($handle); fgetcsv($handle); $headings = fgetcsv($handle); while ($data = fgetcsv($handle)) { $row = array_combine($headings, $data); if ($row['type'] == 'SALE') { $order_id = $this->encryption->decrypt($row['merchant_reference1']); $klarna_order_info = $this->model_extension_payment_klarna_checkout->getOrder($order_id); $order_info = $this->model_sale_order->getOrder($order_id); // Check if order exists in system, if it does, pass back to process if ($klarna_order_info && $order_info && ($order_info['payment_code'] == 'klarna_checkout') && ($order_info['order_status_id'] != $order_status_id)) { $orders_to_process[] = $order_id; } } } fclose($handle); } } // Delete local files foreach (array_diff($files, array('.', '..')) as $file) { if (!unlink($klarna_checkout_directory . $file)) { $error[] = 'Cannot delete files'; } } if ($error) { $orders_to_process = array(); } $json['error'] = $error; $json['orders'] = $orders_to_process; $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } protected function validate() { $this->load->model('extension/payment/klarna_checkout'); $this->load->model('localisation/geo_zone'); if (version_compare(phpversion(), '5.4.0', '<')) { $this->error['warning'] = $this->language->get('error_php_version'); } if (!$this->user->hasPermission('modify', 'extension/payment/klarna_checkout')) { $this->error['warning'] = $this->language->get('error_permission'); } if (!$this->config->get('config_secure')) { $this->error['warning'] = $this->language->get('error_ssl'); } if (empty($this->request->post['klarna_checkout_account'])) { $this->error['account_warning'] = $this->language->get('error_account_minimum'); } else { $countries = array(); foreach ($this->request->post['klarna_checkout_account'] as $key => $account) { if (in_array($account['country'], $countries)) { $this->error['account_warning'] = $this->language->get('error_account_countries'); break; } else { $countries[] = $account['country']; } if (!$account['merchant_id']) { $this->error['account'][$key]['merchant_id'] = $this->language->get('error_merchant_id'); } if (!$account['secret']) { $this->error['account'][$key]['secret'] = $this->language->get('error_secret'); } if (!$account['locale']) { $this->error['account'][$key]['locale'] = $this->language->get('error_locale'); } } } if ($this->error && !isset($this->error['warning'])) { $this->error['warning'] = $this->language->get('error_warning'); } return !$this->error; } }