-
Notifications
You must be signed in to change notification settings - Fork 4
/
woocommerce-payment-paynl.php
380 lines (341 loc) · 16.6 KB
/
woocommerce-payment-paynl.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
/**
* Plugin Name: Pay. Payment Methods for WooCommerce
* Plugin URI: https://wordpress.org/plugins/woocommerce-paynl-payment-methods/
* Description: Pay. Payment Methods for WooCommerce
* Version: 3.20.1
* Author: Pay.
* Author URI: https://www.pay.nl
* Requires at least: 3.5.1
* WC requires at least: 3.0
* Requires PHP: 7.0
* Text Domain: woocommerce-paynl-payment-methods
* Domain Path: /i18n/languages
*/
require_once dirname(__FILE__) . '/includes/classes/Autoload.php';
require_once dirname(__FILE__) . '/vendor/autoload.php';
# Load plugin functionality
require_once(ABSPATH . '/wp-admin/includes/plugin.php');
define('PPMFWC_WOOCOMMERCE_TEXTDOMAIN', 'woocommerce-paynl-payment-methods');
define('PPMFWC_PLUGIN_URL', plugins_url('/', __FILE__));
define('PPMFWC_PLUGIN_PATH', plugin_dir_path(__FILE__));
# Load textdomain
load_plugin_textdomain(PPMFWC_WOOCOMMERCE_TEXTDOMAIN, false, 'woocommerce-paynl-payment-methods/i18n/languages');
# Check if Curl is available
if (!in_array('curl', get_loaded_extensions())) {
add_action('admin_notices', 'ppmfwc_error_curl_not_installed');
}
# Register autoloader
PPMFWC_Autoload::ppmfwc_register();
# Register installer
register_activation_hook(__FILE__, array('PPMFWC_Setup', 'ppmfwc_install'));
add_action('init', array('PPMFWC_Setup', 'ppmfwc_install_init'));
if (is_plugin_active_for_network('woocommerce-paynl-payment-methods/woocommerce-payment-paynl.php')) {
add_action('wp_initialize_site', array('PPMFWC_Setup', 'ppmfwc_newBlog'), 11);
add_filter('wpmu_drop_tables', array('PPMFWC_Setup', 'ppmfwc_delBlog'));
}
if (is_plugin_active('woocommerce/woocommerce.php') || is_plugin_active_for_network('woocommerce/woocommerce.php')) {
# Register PAY gateway in WooCommerce
PPMFWC_Gateways::ppmfwc_register();
# Test if Pay. can be reached
PPMFWC_Setup::ppmfwc_testConnection();
# Register checkoutFlash
PPMFWC_Gateways::ppmfwc_registerCheckoutFlash();
# Register function calls to WooCommerce API
PPMFWC_Gateways::ppmfwc_registerApi();
# Add PAY settings tab in WooCommerce
PPMFWC_Gateways::ppmfwc_settingsTab();
add_action('wp_enqueue_scripts', function () {
$post = get_post();
if (WC_Blocks_Utils::has_block_in_page($post->ID, 'woocommerce/checkout') === true || WC_Blocks_Utils::has_block_in_page($post->ID, 'woocommerce/cart') === true) {
$blocks_js_route = PPMFWC_PLUGIN_URL . 'assets/js/paynl-blocks.js';
$gateways = WC()->payment_gateways()->payment_gateways();
$payGateways = [];
$texts['issuer'] = __('Issuer', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['selectissuer'] = __('Select an issuer', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['enterbirthdate'] = __('Date of birth', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['enterCocNumber'] = __('COC number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['requiredCocNumber'] = __('Please enter your COC number, this field is required.', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['enterVatNumber'] = __('VAT number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['requiredVatNumber'] = __('Please enter your VAT number, this field is required.', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['dobRequired'] = __('Please enter your date of birth, this field is required.', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
foreach ($gateways as $gateway_id => $gateway) {
/** @var PPMFWC_Gateway_Abstract $gateway */
if (substr($gateway_id, 0, 11) != 'pay_gateway') {
continue;
}
if ($gateway->enabled != 'yes') {
continue;
}
$payGateways[] = array(
'paymentMethodId' => $gateway_id,
'title' => $gateway->get_title(),
'description' => $gateway->description,
'image_path' => $gateway->getIcon(),
'issuers' => $gateway->getIssuers(),
'issuersSelectionType' => $gateway->getSelectionType(),
'texts' => $texts,
'showbirthdate' => $gateway->askBirthdate(),
'birthdateRequired' => $gateway->birthdateRequired(),
'showVatField' => $gateway->showVat(),
'vatRequired' => $gateway->vatRequired(),
'showCocField' => $gateway->showCoc(),
'cocRequired' => $gateway->cocRequired()
);
}
wp_enqueue_script('paynl-blocks-js', $blocks_js_route, array('wc-blocks-registry'), (string)time(), true);
wp_localize_script('paynl-blocks-js', 'paynl_gateways', $payGateways);
wp_register_style('paynl-blocks-style', PPMFWC_PLUGIN_URL . 'assets/css/paynl_blocks.css');
wp_enqueue_style('paynl-blocks-style');
}
});
# Add settings link on the plugin-page
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'ppmfwc_plugin_add_settings_link');
if (!empty(get_option('paynl_show_vat_number')) && get_option('paynl_show_vat_number') != "no") {
add_action('woocommerce_before_order_notes', 'ppmfwc_vatField');
add_action('woocommerce_checkout_update_order_meta', 'ppmfwc_checkout_vat_number_update_order_meta');
add_action('woocommerce_admin_order_data_after_billing_address', 'ppmfwc_vat_number_display_admin_order_meta', 10, 1);
}
if (!empty(get_option('paynl_show_coc_number')) && get_option('paynl_show_coc_number') != "no") {
add_action('woocommerce_before_order_notes', 'ppmfwc_cocField');
add_action('woocommerce_checkout_update_order_meta', 'ppmfwc_checkout_coc_number_update_order_meta');
add_action('woocommerce_admin_order_data_after_billing_address', 'ppmfwc_coc_number_display_admin_order_meta', 10, 1);
}
if (get_option('paynl_standard_style') == "yes" || empty(get_option('paynl_standard_style'))) {
add_action('wp_enqueue_scripts', 'ppmfwc_payStyle');
}
add_action('wp_enqueue_scripts', 'ppmfwc_payScript');
if (get_option('paynl_auto_capture') == "yes" || get_option('paynl_auto_void') == "yes") {
add_action('woocommerce_order_status_changed', 'ppmfwc_auto_functions', 10, 3);
}
add_action('woocommerce_order_item_add_action_buttons', 'ppmfwc_add_order_js', 10, 1);
add_action('wp_enqueue_scripts', array('PPMFWC_Hooks_FastCheckout_Buttons', 'ppmfwc_fast_checkout_css'));
add_action('woocommerce_widget_shopping_cart_buttons', array('PPMFWC_Hooks_FastCheckout_Buttons', 'ppmfwc_fast_checkout_mini_cart'), 30);
add_action('woocommerce_proceed_to_checkout', array('PPMFWC_Hooks_FastCheckout_Buttons', 'ppmfwc_fast_checkout_cart'), 30);
add_action('woocommerce_after_add_to_cart_button', array('PPMFWC_Hooks_FastCheckout_Buttons', 'ppmfwc_fast_checkout_product'), 30);
} else {
# WooCommerce seems to be inactive, show eror message
add_action('admin_notices', 'ppmfwc_error_woocommerce_not_active');
}
/**
* Show WooCommerce error message
* @return void
*/
function ppmfwc_error_woocommerce_not_active()
{
echo '<div class="error"><p>' . esc_html(__('The Pay. Payment Methods for WooCommerce plugin requires WooCommerce to be active', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)) . '</p></div>';
}
/**
* Show curl error message
* @return void
*/
function ppmfwc_error_curl_not_installed()
{
echo '<div class="error"><p>' . esc_html(__('Curl is not installed. In order to use the Pay. payment methods, you must install install CURL. Ask your system administrator to install php_curl.', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)) . '</p></div>'; // phpcs:ignore
}
/**
* @param array $links
* @return mixed
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_plugin_add_settings_link($links)
{
$settings_link = '<a href="' . admin_url('/admin.php?page=wc-settings&tab=' . PPMFWC_Gateways::TAB_ID) . '">' . esc_html(__('Settings')) . '</a>';
array_push($links, $settings_link);
return $links;
}
/**
* @param object $checkout
* @return void
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_vatField($checkout)
{
woocommerce_form_field('vat_number', array(
'type' => 'text',
'class' => array('vat-number-field form-row-wide'),
'label' => esc_html(__('VAT number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)),
'placeholder' => esc_html(__('Enter your VAT number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)),
'required' => (get_option('paynl_show_vat_number') == 'yes_required'),
), $checkout->get_value('vat_number'));
}
/**
* @return void
*/
function ppmfwc_payStyle()
{
if (is_checkout() == true) {
wp_register_style('ppmfwc_checkout_style', PPMFWC_PLUGIN_URL . 'assets/css/paycheckout.css');
wp_enqueue_style('ppmfwc_checkout_style');
}
}
/**
* @return void
*/
function ppmfwc_payScript()
{
$scriptsAdded = array();
if (is_checkout() == true) {
$gateways = WC()->payment_gateways->payment_gateways();
if ($gateways) {
foreach ($gateways as $gateway) {
if ($gateway->enabled == 'yes') {
if (!empty($gateway->settings['show_for_company']) && $gateway->settings['show_for_company'] != 'both' && !in_array('ppmfwc_checkout_script', $scriptsAdded)) {
//Register the Show for Company javascript
wp_register_script('ppmfwc_checkout_script', PPMFWC_PLUGIN_URL . 'assets/js/paycheckout.js', array('jquery'), '1.0', true);
wp_enqueue_script('ppmfwc_checkout_script');
$scriptsAdded[] = 'ppmfwc_checkout_script';
}
if (!empty($gateway->settings['applepay_detection']) && $gateway->settings['applepay_detection'] == 'yes' && !in_array('ppmfwc_applepay_script', $scriptsAdded)) {
//Register the Apple Pay Detection javascript
wp_register_script('ppmfwc_applepay_script', PPMFWC_PLUGIN_URL . 'assets/js/applepay.js', array('jquery'), '1.0', true);
wp_enqueue_script('ppmfwc_applepay_script');
$scriptsAdded[] = 'ppmfwc_applepay_script';
}
}
}
}
}
}
/**
* @param object $checkout
* @return void
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_cocField($checkout)
{
woocommerce_form_field('coc_number', array(
'type' => 'text',
'class' => array('coc-number-field form-row-wide'),
'label' => esc_html(__('COC number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)),
'placeholder' => esc_html(__('Enter your COC number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)),
'required' => (get_option('paynl_show_coc_number') == 'yes_required'),
), $checkout->get_value('coc_number'));
}
/**
* Save VAT-field in the order
* @param string $order_id
* @return void
*/
function ppmfwc_checkout_vat_number_update_order_meta($order_id)
{
if (!empty($_POST['vat_number'])) {
update_post_meta($order_id, '_vat_number', sanitize_text_field($_POST['vat_number']));
}
}
/**
* Show VAT in the WooCommerce admin
* @param object $order
* @return void
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_vat_number_display_admin_order_meta($order)
{
echo '<p><strong>' . esc_html(__('VAT number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)) . ':</strong> ' . esc_html(get_post_meta($order->get_id(), '_vat_number', true)) . '</p>';
}
/**
* Save COC-field in the order
* @param string $order_id
* @return void
*/
function ppmfwc_checkout_coc_number_update_order_meta(string $order_id)
{
if (!empty($_POST['coc_number'])) {
update_post_meta($order_id, '_coc_number', sanitize_text_field($_POST['coc_number']));
}
}
/**
* Show COC in the WooCommerce admin
* @param object $order
* @return void
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_coc_number_display_admin_order_meta($order)
{
echo '<p><strong>' . esc_html(__('COC number', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)) . ':</strong> ' . esc_html(get_post_meta($order->get_id(), '_coc_number', true)) . '</p>';
}
/**
* @param string $order_id
* @param string $old_status
* @param string $new_status
* @return void
*/
function ppmfwc_auto_functions($order_id, $old_status, $new_status)
{
if (
($new_status == "completed" && get_option('paynl_auto_capture') == "yes") ||
($new_status == "cancelled" && get_option('paynl_auto_void') == "yes")
) {
$order = new WC_Order($order_id);
$transactionId = $order->get_transaction_id();
$transactionLocalDB = PPMFWC_Helper_Transaction::getTransaction($transactionId);
# Get transaction and make sure its status is Authorized
if ($new_status == "completed" && get_option('paynl_auto_capture') == "yes" && !empty($transactionLocalDB['status']) && $transactionLocalDB['status'] == PPMFWC_Gateways::STATUS_AUTHORIZE) {
try {
PPMFWC_Gateway_Abstract::loginSDK();
$bResult = \Paynl\Transaction::capture($transactionId);
if ($bResult) {
$order->add_order_note(sprintf(esc_html(__('Pay.: Performed auto capture on transaction: %s', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)), $transactionId));
} else {
throw new Exception('Could not capture');
}
} catch (Exception $e) {
PPMFWC_Helper_Data::ppmfwc_payLogger('Auto capture failed: ' . $e->getMessage(), $transactionId, array('wc-order-id' => $order_id));
}
} elseif ($new_status == "cancelled" && get_option('paynl_auto_void') == "yes" && !empty($transactionLocalDB['status']) && $transactionLocalDB['status'] == PPMFWC_Gateways::STATUS_AUTHORIZE) { // phpcs:ignore
try {
PPMFWC_Gateway_Abstract::loginSDK();
$bResult = \Paynl\Transaction::void($transactionId);
if ($bResult) {
$order->add_order_note(sprintf(esc_html(__('Pay.: Performed auto void on transaction: %s', PPMFWC_WOOCOMMERCE_TEXTDOMAIN)), $transactionId));
} else {
throw new Exception('Could not void');
}
} catch (Exception $e) {
PPMFWC_Helper_Data::ppmfwc_payLogger('Auto void failed: ' . $e->getMessage(), $transactionId, array('wc-order-id' => $order_id));
}
}
}
}
/**
* Show Pin Refund on order page
* @param order $order
* @return void
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
*/
function ppmfwc_add_order_js($order)
{
$transactionId = $order->get_meta('transactionId');
$transactionLocalDB = PPMFWC_Helper_Transaction::getTransaction($transactionId);
if (!empty($transactionLocalDB)) {
if ($order->get_payment_method() == 'pay_gateway_instore') {
$cache_key = 'paynl_instore_terminals_' . PPMFWC_Gateway_Abstract::getServiceId();
$terminals = get_transient($cache_key);
if ($terminals === false) {
PPMFWC_Gateway_Abstract::loginSDK();
$terminals = \Paynl\Instore::getAllTerminals()->getList();
set_transient($cache_key, $terminals, HOUR_IN_SECONDS);
}
if (!empty($terminals)) {
$payment_gateways = WC_Payment_Gateways::instance();
$instoreGateway = $payment_gateways->payment_gateways()['pay_gateway_instore'];
$texts['i18n_refund_error_zero'] = __("Refund amount must be greater than €0.00", PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['i18n_refund_invalid'] = __('Invalid refund amount', 'woocommerce');
$texts['i18n_refund_error'] = __('Error processing refund. Please try again.', 'woocommerce');
$texts['i18n_refund_title'] = __('Refund', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['i18n_retourpin_title'] = __('via Retourpinnen', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$texts['i18n_api_title'] = __('via Pay.', PPMFWC_WOOCOMMERCE_TEXTDOMAIN);
$payData = array(
'texts' => $texts,
'terminals' => $terminals,
'order_id' => $order->get_id(),
'max_amount' => $order->get_remaining_refund_amount(),
'default_terminal' => $instoreGateway->get_option('paynl_instore_terminal'),
);
wp_register_script('paynl_wp_admin_order_js', PPMFWC_PLUGIN_URL . 'assets/js/payorder.js', array('jquery'), PPMFWC_Helper_Data::getVersion(), true);
wp_enqueue_script('paynl_wp_admin_order_js');
wp_localize_script('paynl_wp_admin_order_js', 'paynl_order', $payData);
}
}
}
}