aboutsummaryrefslogtreecommitdiffstats
path: root/public/admin/controller/extension/payment/alipay.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/admin/controller/extension/payment/alipay.php')
-rw-r--r--public/admin/controller/extension/payment/alipay.php153
1 files changed, 153 insertions, 0 deletions
diff --git a/public/admin/controller/extension/payment/alipay.php b/public/admin/controller/extension/payment/alipay.php
new file mode 100644
index 0000000..ce549b1
--- /dev/null
+++ b/public/admin/controller/extension/payment/alipay.php
@@ -0,0 +1,153 @@
+<?php
+class ControllerExtensionPaymentAlipay extends Controller {
+ private $error = array();
+
+ public function index() {
+ $this->load->language('extension/payment/alipay');
+
+ $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('payment_alipay', $this->request->post);
+
+ $this->session->data['success'] = $this->language->get('text_success');
+
+ $this->response->redirect($this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=payment', true));
+ }
+
+ if (isset($this->error['warning'])) {
+ $data['error_warning'] = $this->error['warning'];
+ } else {
+ $data['error_warning'] = '';
+ }
+
+ if (isset($this->error['app_id'])) {
+ $data['error_app_id'] = $this->error['app_id'];
+ } else {
+ $data['error_app_id'] = '';
+ }
+
+ if (isset($this->error['merchant_private_key'])) {
+ $data['error_merchant_private_key'] = $this->error['merchant_private_key'];
+ } else {
+ $data['error_merchant_private_key'] = '';
+ }
+
+ if (isset($this->error['alipay_public_key'])) {
+ $data['error_alipay_public_key'] = $this->error['alipay_public_key'];
+ } else {
+ $data['error_alipay_public_key'] = '';
+ }
+
+ $data['breadcrumbs'] = array();
+
+ $data['breadcrumbs'][] = array(
+ 'text' => $this->language->get('text_home'),
+ 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
+ );
+
+ $data['breadcrumbs'][] = array(
+ 'text' => $this->language->get('text_extension'),
+ 'href' => $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=payment', true)
+ );
+
+ $data['breadcrumbs'][] = array(
+ 'text' => $this->language->get('heading_title'),
+ 'href' => $this->url->link('extension/payment/alipay', 'user_token=' . $this->session->data['user_token'], true)
+ );
+
+ $data['action'] = $this->url->link('extension/payment/alipay', 'user_token=' . $this->session->data['user_token'], true);
+
+ $data['cancel'] = $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=payment', true);
+
+ if (isset($this->request->post['payment_alipay_app_id'])) {
+ $data['payment_alipay_app_id'] = $this->request->post['payment_alipay_app_id'];
+ } else {
+ $data['payment_alipay_app_id'] = $this->config->get('payment_alipay_app_id');
+ }
+
+ if (isset($this->request->post['payment_alipay_merchant_private_key'])) {
+ $data['payment_alipay_merchant_private_key'] = $this->request->post['payment_alipay_merchant_private_key'];
+ } else {
+ $data['payment_alipay_merchant_private_key'] = $this->config->get('payment_alipay_merchant_private_key');
+ }
+
+ if (isset($this->request->post['payment_alipay_alipay_public_key'])) {
+ $data['payment_alipay_alipay_public_key'] = $this->request->post['payment_alipay_alipay_public_key'];
+ } else {
+ $data['payment_alipay_alipay_public_key'] = $this->config->get('payment_alipay_alipay_public_key');
+ }
+
+ if (isset($this->request->post['payment_alipay_total'])) {
+ $data['payment_alipay_total'] = $this->request->post['payment_alipay_total'];
+ } else {
+ $data['payment_alipay_total'] = $this->config->get('payment_alipay_total');
+ }
+
+ if (isset($this->request->post['payment_alipay_order_status_id'])) {
+ $data['payment_alipay_order_status_id'] = $this->request->post['payment_alipay_order_status_id'];
+ } else {
+ $data['payment_alipay_order_status_id'] = $this->config->get('payment_alipay_order_status_id');
+ }
+
+ $this->load->model('localisation/order_status');
+
+ $data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
+
+ if (isset($this->request->post['payment_alipay_geo_zone_id'])) {
+ $data['payment_alipay_geo_zone_id'] = $this->request->post['payment_alipay_geo_zone_id'];
+ } else {
+ $data['payment_alipay_geo_zone_id'] = $this->config->get('payment_alipay_geo_zone_id');
+ }
+
+ $this->load->model('localisation/geo_zone');
+
+ $data['geo_zones'] = $this->model_localisation_geo_zone->getGeoZones();
+
+ if (isset($this->request->post['payment_alipay_test'])) {
+ $data['payment_alipay_test'] = $this->request->post['payment_alipay_test'];
+ } else {
+ $data['payment_alipay_test'] = $this->config->get('payment_alipay_test');
+ }
+
+ if (isset($this->request->post['payment_alipay_status'])) {
+ $data['payment_alipay_status'] = $this->request->post['payment_alipay_status'];
+ } else {
+ $data['payment_alipay_status'] = $this->config->get('payment_alipay_status');
+ }
+
+ if (isset($this->request->post['payment_alipay_sort_order'])) {
+ $data['payment_alipay_sort_order'] = $this->request->post['payment_alipay_sort_order'];
+ } else {
+ $data['payment_alipay_sort_order'] = $this->config->get('payment_alipay_sort_order');
+ }
+
+ $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/alipay', $data));
+ }
+
+ private function validate() {
+ if (!$this->user->hasPermission('modify', 'extension/payment/alipay')) {
+ $this->error['warning'] = $this->language->get('error_permission');
+ }
+
+ if (!$this->request->post['payment_alipay_app_id']) {
+ $this->error['app_id'] = $this->language->get('error_app_id');
+ }
+
+ if (!$this->request->post['payment_alipay_merchant_private_key']) {
+ $this->error['merchant_private_key'] = $this->language->get('error_merchant_private_key');
+ }
+
+ if (!$this->request->post['payment_alipay_alipay_public_key']) {
+ $this->error['alipay_public_key'] = $this->language->get('error_alipay_public_key');
+ }
+
+ return !$this->error;
+ }
+} \ No newline at end of file