-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
240 lines (214 loc) · 8.94 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?php
/*
Plugin Name: Parolapara
Plugin URI:
Description: Parolapara ile ödemeye almaya başlayın
Version: 1.0.3
Author URI:
License: GNU
Text Domain: parolapara
Domain Path: /languages
*/
if (!defined('ABSPATH')) {
exit;
}
// Çoklu Dil Desteği Ekler
add_action('init', 'wpdocs_load_parolapara');
function wpdocs_load_parolapara()
{
load_plugin_textdomain('parolapara', false, dirname(plugin_basename(__FILE__)) . '/languages/');
}
define("PAROLOPARA_URL", plugin_dir_url(__FILE__));
define("PAROLOPARA_DATA", get_plugin_data( __FILE__ ));
add_filter('woocommerce_payment_gateways', 'parolapara_add_gateway_class');
function parolapara_add_gateway_class($gateways)
{
$gateways[] = 'WC_parolapara_Gateway';
return $gateways;
}
require_once "class/class-parolapara.php";
/*
* The class itself, please note that it is inside plugins_loaded action hook
*/
add_action('plugins_loaded', 'parolapara_init_gateway_class');
function parolapara_init_gateway_class()
{
class WC_parolapara_Gateway extends WC_Payment_Gateway
{
private $parolapara_settings;
/**
* Class constructor, more about it in Step 3
*/
public function __construct()
{
$this->parolapara_settings = get_option("woocommerce_parolapara_settings");
$this->id = 'parolapara';
//$this->icon = plugin_dir_url(__FILE__) . "images/logo.png";
$this->has_fields = true;
$this->method_title = 'parolapara';
$this->method_description = "Parolapara ile ödeme almaya başlayın";
$this->supports = array('products');
$this->init_form_fields();
$this->init_settings();
$this->title = $this->get_option('title');
$this->description = $this->get_option('description');
$this->enabled = $this->get_option('enabled');
add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
add_action('woocommerce_receipt_parolapara', array($this, 'parolapara_payment_redirect'));
add_action('woocommerce_api_parolapara_installment', array($this, 'getInstallment'));
add_action('woocommerce_api_parolapara_start_payment', array($this, 'startPayment'));
add_action('woocommerce_api_parolapara_complete_payment', array($this, 'completePayment'));
}
public function init_form_fields()
{
$this->form_fields = array(
'enabled' => array(
'title' => 'Enable/Disable',
'label' => 'Enable parolapara',
'type' => 'checkbox',
'description' => '',
'default' => 'no',
),
'title' => array(
'title' => esc_html__('Başlık', 'parolapara'),
'type' => 'text',
'description' => esc_html__('Sitenizde müşterilerinizin göreceği ödeme yöntemi başlığı', 'parolapara'),
'default' => 'parolapara Sanal Pos',
'desc_tip' => true,
),
'description' => array(
'title' => esc_html__('Açıklama', 'parolapara'),
'type' => 'text',
'description' => esc_html__('Sitenizde müşterilerinizin göreceği ödeme yöntemi açıklaması', 'parolapara'),
'default' => 'Kredi kartınızla ödeme yapın.',
'desc_tip' => true,
),
'api_type' => array(
'title' => esc_html__('Api Türü', 'parolapara'),
'type' => 'select',
'options' => array(
'https://ccpayment.parolapara.com/ccpayment/' => esc_html__('Gerçek Ortam', 'parolapara'),
'https://testccpayment.parolapara.com/ccpayment/' => esc_html__('Test Ortamı', 'parolapara'),
),
),
'3d_secure' => array(
'title' => esc_html__('3d Secure', 'parolapara'),
'type' => 'select',
'options' => array(
'3d' => esc_html__('3d Ödeme', 'parolapara'),
),
),
'installmentlimit' => array(
'title' => esc_html__('Maksimum Taksit', 'parolapara'),
'type' => 'select',
'options' => array(
'1' => esc_html__('Tek Çekim', 'parolapara'),
'2' => esc_html__('2 Taksit', 'parolapara'),
'3' => esc_html__('3 Taksit', 'parolapara'),
'4' => esc_html__('4 Taksit', 'parolapara'),
'5' => esc_html__('5 Taksit', 'parolapara'),
'6' => esc_html__('6 Taksit', 'parolapara'),
'7' => esc_html__('7 Taksit', 'parolapara'),
'8' => esc_html__('8 Taksit', 'parolapara'),
'9' => esc_html__('9 Taksit', 'parolapara'),
'10' => esc_html__('10 Taksit', 'parolapara'),
'11' => esc_html__('11 Taksit', 'parolapara'),
'12' => esc_html__('12 Taksit', 'parolapara'),
),
),
'form_type' => array(
'title' => esc_html__('Form Türü', 'parolapara'),
'type' => 'select',
'options' => array(
'payment-form-api' => esc_html__('Ödeme Formu', 'parolapara'),
),
),
'merchant_id' => array(
'title' => esc_html__('Merchant ID', 'parolapara'),
'type' => 'text',
),
'merchant_key' => array(
'title' => esc_html__('Merchant Key', 'parolapara'),
'type' => 'text',
),
'app_key' => array(
'title' => esc_html__('App Key', 'parolapara'),
'type' => 'text',
),
'app_secret' => array(
'title' => esc_html__('App Secret', 'parolapara'),
'type' => 'text',
),
);
}
public function process_payment($order_id)
{
$order = wc_get_order($order_id);
return array(
'result' => 'success',
'redirect' => $order->get_checkout_payment_url(true),
);
}
public function parolapara_payment_redirect($order_id)
{
if (isset($_REQUEST['error']) && !empty($_REQUEST['error'])) {
wc_print_notice($_REQUEST['error'], "error");
}
$order = wc_get_order($order_id);
require_once "view/" . $this->parolapara_settings['form_type'] . ".php";
}
/*
* Taksit sayısını çeker
*/
public function getInstallment()
{
if (!isset($_REQUEST['order_id'])) {
return "<h5>Taksit Bilgileri Bulunamadı.</h5>";
}
if (isset($_REQUEST['order_id']) && !(intval($_REQUEST['order_id']) > 0)) {
return "<h5>Taksit Bilgileri Bulunamadı.</h5>";
}
$order = wc_get_order($_REQUEST['order_id']);
if (!$order) {
return "<h5>Sipariş Bulunamadı.</h5>";
}
if (!isset($_REQUEST['cardnumber'])) {
return "<h5>Kart no eksik.</h5>";
}
$cardnumber = substr(preg_replace('/\s+/', '', $_REQUEST['cardnumber']), 0, 6);
if (strlen($cardnumber) < 6) {
return "<h5>Kart no eksik veya hatalı.</h5>";
}
$parolapara = new parolapara();
$par = [
'merchant_key' => $this->parolapara_settings['merchant_key'],
'amount' => $order->get_total(),
'credit_card' => $cardnumber,
'currency_code' => 'TRY',
'is_recurring' => 0,
'is_2d' => 0,
];
echo $parolapara->getInstallment($par, $order);
exit;
}
public function startPayment()
{
if (isset($_REQUEST['d3Yonlendir']) && intval($_REQUEST['d3Yonlendir']) > 0) {
$parolapara = new parolapara();
$parolapara->start3d(intval($_REQUEST['d3Yonlendir']));
}
exit;
}
/*
* 3d ödeme tamamla
*/
public function completePayment()
{
if (isset($_REQUEST['invoice_id']) && intval($_REQUEST['invoice_id']) > 0) {
$parolapara = new parolapara();
$parolapara->completePayment(intval($_REQUEST['invoice_id']));
}
exit;
}
}
}