forked from KomodoPlatform/WooCommerce-KMD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspace-spacecoin-gateway.php
More file actions
executable file
·778 lines (658 loc) · 37.4 KB
/
space-spacecoin-gateway.php
File metadata and controls
executable file
·778 lines (658 loc) · 37.4 KB
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
<?php
/**
Spacecoin for WooCommerce
https://github.com/SpaceWorksCo/WooCommerce-SPACE
*/
//---------------------------------------------------------------------------
add_action('plugins_loaded', 'SPACE__plugins_loaded__load_spacecoin_gateway', 0);
//---------------------------------------------------------------------------
//###########################################################################
// Hook payment gateway into WooCommerce
function SPACE__plugins_loaded__load_spacecoin_gateway()
{
if (!class_exists('WC_Payment_Gateway'))
// Nothing happens here is WooCommerce is not loaded
return;
//=======================================================================
/**
* Spacecoin Payment Gateway
*
* Provides a Spacecoin Payment Gateway
*
* @class SPACE_Spacecoin
* @extends WC_Payment_Gateway
* @version 1.0.0
* @author
*/
class SPACE_Spacecoin extends WC_Payment_Gateway
{
//-------------------------------------------------------------------
/**
* Constructor for the gateway.
*
* @access public
* @return void
*/
public function __construct()
{
$this->id = 'spacecoin';
$this->icon = plugins_url('/images/space_buyitnow_32x.png', __FILE__); // 32 pixels high
$this->has_fields = false;
$this->method_title = __('Spacecoin', 'woocommerce');
// Load SPACE settings.
$space_settings = SPACE__get_settings();
$this->service_provider = $space_settings['service_provider']; // This need to be before $this->init_settings otherwise it generate PHP Notice: "Undefined property: SPACE_Spacecoin::$service_provider" down below.
// Load the form fields.
$this->init_form_fields();
$this->init_settings();
// Define user set variables
$this->title = $this->settings['title']; // The title which the user is shown on the checkout ? retrieved from the settings which init_settings loads.
$this->spacecoin_addr_merchant = $this->settings['spacecoin_addr_merchant']; // Forwarding address where all product payments will aggregate.
$this->confs_num = $space_settings['confs_num']; //$this->settings['confirmations'];
$this->description = $this->settings['description']; // Short description about the gateway which is shown on checkout.
$this->instructions = $this->settings['instructions']; // Detailed payment instructions for the buyer.
$this->instructions_multi_payment_str = __('You may send payments from multiple accounts to reach the total required.', 'woocommerce');
$this->instructions_single_payment_str = __('You must pay in a single payment in full.', 'woocommerce');
// Actions
if (version_compare(WOOCOMMERCE_VERSION, '2.0.0', '>='))
add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
else
add_action('woocommerce_update_options_payment_gateways', array($this, 'process_admin_options')); // hook into this action to save options in the backend
add_action('woocommerce_thankyou_' . $this->id, array($this, 'SPACE__thankyou_page')); // hooks into the thank you page after payment
// Customer Emails
add_action('woocommerce_email_before_order_table', array($this, 'SPACE__email_instructions'), 10, 2); // hooks into the email template to show additional details
// Hook IPN callback logic
if (version_compare(WOOCOMMERCE_VERSION, '2.0', '<'))
add_action('init', array($this, 'SPACE__maybe_spacecoin_ipn_callback'));
else
add_action('woocommerce_api_' . strtolower(get_class($this)), array($this, 'SPACE__maybe_spacecoin_ipn_callback'));
// Validate currently set currency for the store. Must be among supported ones.
if (!SPACE__is_gateway_valid_for_use()) $this->enabled = false;
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
/**
* Check if this gateway is enabled and available for the store's default currency
*
* @access public
* @return bool
*/
function is_gateway_valid_for_use(&$ret_reason_message = NULL)
{
$valid = true;
//----------------------------------
// Validate settings
if (!$this->service_provider) {
$reason_message = __("Spacecoin Service Provider is not selected", 'woocommerce');
$valid = false;
} else if ($this->service_provider == 'blockchain_info') {
if ($this->spacecoin_addr_merchant == '') {
$reason_message = __("Your personal spacecoin address is not selected", 'woocommerce');
$valid = false;
} else if ($this->spacecoin_addr_merchant == 'RDSRa87h2D7PE1SBEwcs2smQE41qqRe3D7') {
$reason_message = __("Your personal spacecoin address is invalid. The address specified is the donation address :)", 'woocommerce');
$valid = false;
}
} else if ($this->service_provider == 'electrum_wallet') {
$mpk = SPACE__get_next_available_mpk();
if (!$mpk) {
$reason_message = __("Please specify Spacecoin Master Public Key (MPK) in the plugin settings. <br />To retrieve MPK: launch your spacecoin electrum wallet, select: Wallet -> Information", 'woocommerce');
$valid = false;
} else if (!preg_match('/^[a-f0-9]{128}$/', $mpk) && !preg_match('/^xpub[a-zA-Z0-9]{107}$/', $mpk)) {
$reason_message = __("Spacecoin Electrum Master Public Key is invalid. Must be 128 or 111 characters long, consisting of digits and letters.", 'woocommerce');
$valid = false;
} else if (!extension_loaded('gmp') && !extension_loaded('bcmath')) {
$reason_message = __("ERROR: neither 'bcmath' nor 'gmp' math extensions are loaded For Spacecoin Electrum wallet options to function. Contact your hosting company and ask them to enable either 'bcmath' or 'gmp' extensions. 'gmp' is preferred (much faster)! \nAlternatively you may choose another 'Spacecoin Service Provider' option.", 'woocommerce');
$valid = false;
}
}
if (!$valid) {
if ($ret_reason_message !== NULL)
$ret_reason_message = $reason_message;
return false;
}
//----------------------------------
//----------------------------------
// Validate connection to exchange rate services
$store_currency_code = get_woocommerce_currency();
if ($store_currency_code != 'SPACE') {
$currency_rate = SPACE__get_exchange_rate_per_spacecoin($store_currency_code, 'getfirst', false);
if (!$currency_rate) {
$valid = false;
// Assemble error message.
$error_msg = "ERROR: Cannot determine exchange rates (for '$store_currency_code')! {{{ERROR_MESSAGE}}} Make sure your PHP settings are configured properly and your server can (is allowed to) connect to external WEB services via PHP.";
$extra_error_message = "";
$fns = array('file_get_contents', 'curl_init', 'curl_setopt', 'curl_setopt_array', 'curl_exec');
$fns = array_filter($fns, 'SPACE__function_not_exists');
$extra_error_message = "";
if (count($fns))
$extra_error_message = "The following PHP functions are disabled on your server: " . implode(", ", $fns) . ".";
$reason_message = str_replace('{{{ERROR_MESSAGE}}}', $extra_error_message, $error_msg);
if ($ret_reason_message !== NULL)
$ret_reason_message = $reason_message;
return false;
}
}
return true;
}
/**
* Initialise Gateway Settings Form Fields
*
* @access public
* @return void
*/
function init_form_fields()
{
// This defines the settings we want to show in the admin area.
// This allows user to customize payment gateway.
// Add as many as you see fit.
// See this for more form elements: http://wcdocs.woothemes.com/codex/extending/settings-api/
//-----------------------------------
// Assemble currency ticker.
$store_currency_code = get_woocommerce_currency();
if (!$store_currency_code)
$currency_code = 'USD';
else
$currency_code = $store_currency_code;
$currency_ticker = SPACE__get_exchange_rate_per_spacecoin($currency_code, 'getfirst', true);
//-----------------------------------
//-----------------------------------
// Payment instructions
$payment_instructions = '
<table class="space-payment-instructions-table" id="space-payment-instructions-table">
<tr class="bpit-table-row">
<td colspan="2">' . __('Please send your Spacecoin payment as follows:', 'woocommerce') . '</td>
</tr>
<tr class="bpit-table-row">
<td style="vertical-align:middle;" class="bpit-td-name bpit-td-name-amount">
' . __('Amount', 'woocommerce') . ' (<strong>SPACE</strong>):
</td>
<td class="bpit-td-value bpit-td-value-amount">
<div style="border:1px solid #FCCA09;padding:2px 6px;margin:2px;background-color:#FCF8E3;border-radius:4px;color:#CC0000;font-weight: bold;font-size: 120%;">
{{{SPACECOIN_AMOUNT}}}
</div>
</td>
</tr>
<tr class="bpit-table-row">
<td style="vertical-align:middle;" class="bpit-td-name bpit-td-name-spaceaddr">
Address:
</td>
<td class="bpit-td-value bpit-td-value-spaceaddr">
<div style="border:1px solid #FCCA09;padding:2px 6px;margin:2px;background-color:#FCF8E3;border-radius:4px;color:#555;font-weight: bold;font-size: 120%;">
{{{SPACECOIN_ADDRESS}}}
</div>
</td>
</tr>
<tr class="bpit-table-row">
<td style="vertical-align:middle;" class="bpit-td-name bpit-td-name-qr">
QR Code:
</td>
<td class="bpit-td-value bpit-td-value-qr">
<div style="border:1px solid #FCCA09;padding:5px;margin:2px;background-color:#FCF8E3;border-radius:4px;">
<a href="spacecoin:{{{SPACECOIN_ADDRESS}}}?amount={{{SPACECOIN_AMOUNT}}}"><img src="https://api.qrserver.com/v1/create-qr-code/?color=000000&bgcolor=FFFFFF&data=spacecoin%3A{{{SPACECOIN_ADDRESS}}}%3Famount%3D{{{SPACECOIN_AMOUNT}}}&qzone=1&margin=0&size=180x180&ecc=L" style="vertical-align:middle;border:1px solid #888;" /></a>
</div>
</td>
</tr>
</table>
' . __('Please note:', 'woocommerce') . '
<ol class="bpit-instructions">
<li>' . __('We ONLY accept Spacecoin.', 'woocommerce') . '</li>
<li>' . __('You must make a payment within 1 hour, or your order may be cancelled', 'woocommerce') . '</li>
<li>' . __('As soon as your payment is received in full you will receive email confirmation with order delivery details.', 'woocommerce') . '</li>
<li>{{{EXTRA_INSTRUCTIONS}}}</li>
</ol>
';
$payment_instructions = trim($payment_instructions);
$payment_instructions_description = '
<p class="description" style="width:50%;float:left;width:49%;">
' . __('Specific instructions given to the customer to complete Spacecoin payment.<br />You may change it, but make sure these tags will be present: <b>{{{SPACECOIN_AMOUNT}}}</b>, <b>{{{SPACECOIN_ADDRESS}}}</b> and <b>{{{EXTRA_INSTRUCTIONS}}}</b> as these tags will be replaced with customer - specific payment details.', 'woocommerce') . '
</p>
<p class="description" style="width:50%;float:left;width:49%;">
Payment Instructions, original template (for reference):<br />
<textarea rows="2" onclick="this.focus();this.select()" readonly="readonly" style="width:100%;background-color:#f1f1f1;height:4em">' . $payment_instructions . '</textarea>
</p>
';
$payment_instructions_description = trim($payment_instructions_description);
//-----------------------------------
$this->form_fields = array(
'enabled' => array(
'title' => __('Enable/Disable', 'woocommerce'),
'type' => 'checkbox',
'label' => __('Enable Spacecoin Payments', 'woocommerce'),
'default' => 'yes'
),
'title' => array(
'title' => __('Title', 'woocommerce'),
'type' => 'text',
'description' => __('This controls the title which the user sees during checkout.', 'woocommerce'),
'default' => __('Spacecoin Payment', 'woocommerce')
),
'spacecoin_addr_merchant' => array(
'title' => __('Your personal spacecoin address', 'woocommerce'),
'type' => 'text',
'css' => $this->service_provider != 'blockchain_info' ? 'display:none;' : '',
'disabled' => $this->service_provider != 'blockchain_info' ? true : false,
'description' => $this->service_provider != 'blockchain_info' ? __('Available when Spacecoin service provider is set to: <b>Blockchain.info</b> (at Spacecoin plugin settings page)', 'woocommerce') : __('Your own spacecoin address - where you would like the payment to be sent. When customer sends you payment for the product - it will be automatically forwarded to this address by blockchain.info APIs.', 'woocommerce'),
'default' => '',
),
'description' => array(
'title' => __('Customer Message', 'woocommerce'),
'type' => 'text',
'description' => __('Initial instructions for the customer at checkout screen', 'woocommerce'),
'default' => __('Please proceed to the next screen to see necessary payment details.', 'woocommerce')
),
'instructions' => array(
'title' => __('Payment Instructions (HTML)', 'woocommerce'),
'type' => 'textarea',
'description' => $payment_instructions_description,
'default' => $payment_instructions,
),
);
}
//-------------------------------------------------------------------
/**
* Admin Panel Options
* - Options for bits like 'title' and availability on a country-by-country basis
*
* @access public
* @return void
*/
public function admin_options()
{
$validation_msg = "";
$store_valid = SPACE__is_gateway_valid_for_use($validation_msg);
// After defining the options, we need to display them too; thats where this next function comes into play:
?>
<h3><?php _e('Spacecoin Payment', 'woocommerce'); ?></h3>
<p>
<?php _e('Allows to accept payments in spacecoin. <a href="https://spacecoin.network/" target="_blank">Spacecoin</a> is peer-to-peer, decentralized digital currency that enables instant payments from anyone to anyone, anywhere in the world', 'woocommerce'); ?>
</p>
<?php
echo $store_valid ? ('<p style="border:1px solid #DDD;padding:5px 10px;font-weight:bold;color:#004400;background-color:#CCFFCC;">' .
__('Spacecoin payment gateway is operational', 'woocommerce') .
'</p>') : ('<p style="border:1px solid #DDD;padding:5px 10px;font-weight:bold;color:#EE0000;background-color:#FFFFAA;">' .
__('Spacecoin payment gateway is not operational (try to re-enter and save Spacecoin Plugin settings): ', 'woocommerce') . $validation_msg . '</p>');
?>
<table class="form-table">
<?php
// Generate the HTML For the settings form.
$this->generate_settings_html();
?>
</table><!--/.form-table-->
<?php
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// Hook into admin options saving.
public function process_admin_options()
{
// Call parent
parent::process_admin_options();
return;
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
/**
* Process the payment and return the result
*
* @access public
* @param int $order_id
* @return array
*/
function process_payment($order_id)
{
$space_settings = SPACE__get_settings();
$order = wc_get_order($order_id);
// TODO: Implement CRM features within store admin dashboard
$order_meta = array();
$order_meta['space_order'] = $order;
$order_meta['space_items'] = $order->get_items();
$order_meta['space_b_addr'] = $order->get_formatted_billing_address();
$order_meta['space_s_addr'] = $order->get_formatted_shipping_address();
$order_meta['space_b_email'] = $order->get_billing_email();
$order_meta['space_currency'] = $order->get_currency();
$order_meta['space_settings'] = $space_settings;
$order_meta['space_store'] = plugins_url('', __FILE__);
//-----------------------------------
// Save spacecoin payment info together with the order.
// Note: this code must be on top here, as other filters will be called from here and will use these values ...
//
// Calculate realtime spacecoin price (if exchange is necessary)
$exchange_rate = SPACE__get_exchange_rate_per_spacecoin(get_woocommerce_currency(), 'getfirst');
if (!$exchange_rate) {
$msg = 'ERROR: Cannot determine Spacecoin exchange rate. Possible issues: store server does not allow outgoing connections, exchange rate servers are blocking incoming connections or down. ' .
'You may avoid that by setting store currency directly to Spacecoin (SPACE)';
SPACE__log_event(__FILE__, __LINE__, $msg);
exit ('<h2 style="color:red;">' . $msg . '</h2>');
}
$order_total_in_space = ($order->get_total() / $exchange_rate);
if (get_woocommerce_currency() != 'SPACE')
// Apply exchange rate multiplier only for stores with non-spacecoin default currency.
$order_total_in_space = $order_total_in_space;
$order_total_in_space = sprintf("%.8f", $order_total_in_space);
$space_address = false;
$order_info =
array(
'order_meta' => $order_meta,
'order_id' => $order_id,
'order_total' => $order_total_in_space, // Order total in SPACE
'order_datetime' => date('Y-m-d H:i:s T'),
'requested_by_ip' => @$_SERVER['REMOTE_ADDR'],
'requested_by_ua' => @$_SERVER['HTTP_USER_AGENT'],
'requested_by_srv' => SPACE__base64_encode(serialize($_SERVER)),
);
$ret_info_array = array();
if ($this->service_provider == 'electrum_wallet') {
$ret_info_array = SPACE__get_address_for_payment__electrum(SPACE__get_next_available_mpk(), $order_info);
$spacecoin_address = @$ret_info_array['generated_address'];
//echo '<script>console.log("HELLO error: ' .@$ret_info_array['generated_address'] . '")</script>';
}
if (!$spacecoin_address) {
$msg = "ERROR: cannot generate spacecoin address for the order: '" . @$ret_info_array['message'] . "'";
SPACE__log_event(__FILE__, __LINE__, $msg);
exit ('<h2 style="color:red;">' . $msg . '</h2>');
}
SPACE__log_event(__FILE__, __LINE__, " Generated unique spacecoin address: '{$spacecoin_address}' for order_id " . $order_id);
update_post_meta(
$order_id, // post id ($order_id)
'order_total_in_space', // meta key
$order_total_in_space // meta value. If array - will be auto-serialized
);
update_post_meta(
$order_id, // post id ($order_id)
'spacecoin_address', // meta key
$spacecoin_address // meta value. If array - will be auto-serialized
);
update_post_meta(
$order_id, // post id ($order_id)
'spacecoin_paid_total', // meta key
"0" // meta value. If array - will be auto-serialized
);
update_post_meta(
$order_id, // post id ($order_id)
'spacecoin_refunded', // meta key
"0" // meta value. If array - will be auto-serialized
);
update_post_meta(
$order_id, // post id ($order_id)
'_incoming_payments', // meta key. Starts with '_' - hidden from UI.
array() // array (array('datetime'=>'', 'from_addr'=>'', 'amount'=>''),)
);
update_post_meta(
$order_id, // post id ($order_id)
'_payment_completed', // meta key. Starts with '_' - hidden from UI.
0 // array (array('datetime'=>'', 'from_addr'=>'', 'amount'=>''),)
);
//-----------------------------------
// The spacecoin gateway does not take payment immediately, but it does need to change the orders status to on-hold
// (so the store owner knows that spacecoin payment is pending).
// We also need to tell WooCommerce that it needs to redirect to the thankyou page ? this is done with the returned array
// and the result being a success.
//
global $woocommerce;
// Updating the order status:
// Mark as on-hold (we're awaiting for spacecoin payment to arrive)
$order->update_status('on-hold', __('Awaiting Spacecoin payment to arrive', 'woocommerce'));
/*
///////////////////////////////////////
// timbowhite's suggestion:
// -----------------------
// Mark as pending (we're awaiting for spacecoin payment to arrive), not 'on-hold' since
// woocommerce does not automatically cancel expired on-hold orders. Woocommerce handles holding the stock
// for pending orders until order payment is complete.
$order->update_status('pending', __('Awaiting spacecoin payment to arrive', 'woocommerce'));
// Me: 'pending' does not trigger "Thank you" page and neither email sending. Not sure why.
// Also - I think cancellation of unpaid orders needs to be initiated from cron job, as only we know when order needs to be cancelled,
// by scanning "on-hold" orders through 'assigned_address_expires_in_mins' timeout check.
///////////////////////////////////////
*/
// Remove cart
$woocommerce->cart->empty_cart();
// Empty awaiting payment session
if (isset($_SESSION['order_awaiting_payment'])) unset($_SESSION['order_awaiting_payment']);
// Return thankyou redirect
if (version_compare(WOOCOMMERCE_VERSION, '2.1', '<')) {
return array(
'result' => 'success',
'redirect' => add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(woocommerce_get_page_id('thanks'))))
);
} else {
return array(
'result' => 'success',
'redirect' => add_query_arg('key', $order->get_order_key(), add_query_arg('order', $order_id, $this->get_return_url($order)))
);
}
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
/**
* Output for the order received page.
*
* @access public
* @return void
*/
function SPACE__thankyou_page($order_id)
{
// SPACE__thankyou_page is hooked into the "thank you" page and in the simplest case can just echo?s the description.
// Get order object.
// http://wcdocs.woothemes.com/apidocs/class-WC_Order.html
$order = wc_get_order($order_id);
// Assemble detailed instructions.
$order_total_in_space = get_post_meta($order->get_id(), 'order_total_in_space', true); // set single to true to receive properly unserialized array
$spacecoin_address = get_post_meta($order->get_id(), 'spacecoin_address', true); // set single to true to receive properly unserialized array
$instructions = $this->instructions;
$instructions = str_replace('{{{SPACECOIN_AMOUNT}}}', $order_total_in_space, $instructions);
$instructions = str_replace('{{{SPACECOIN_ADDRESS}}}', $spacecoin_address, $instructions);
$instructions =
str_replace(
'{{{EXTRA_INSTRUCTIONS}}}',
$this->instructions_multi_payment_str,
$instructions
);
$order->add_order_note(__("Order instructions: price=SPACE {$order_total_in_space}, incoming account:{$spacecoin_address}", 'woocommerce'));
echo wpautop(wptexturize($instructions));
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
/**
* Add content to the WC emails.
*
* @access public
* @param WC_Order $order
* @param bool $sent_to_admin
* @return void
*/
function SPACE__email_instructions($order, $sent_to_admin)
{
if ($sent_to_admin) return;
if (!in_array($order->get_status(), array('pending', 'on-hold'), true)) return;
if ($order->get_payment_method() !== 'spacecoin') return;
// Assemble payment instructions for email
$order_total_in_space = get_post_meta($order->get_id(), 'order_total_in_space', true); // set single to true to receive properly unserialized array
$spacecoin_address = get_post_meta($order->get_id(), 'spacecoin_address', true); // set single to true to receive properly unserialized array
$instructions = $this->instructions;
$instructions = str_replace('{{{SPACECOIN_AMOUNT}}}', $order_total_in_space, $instructions);
$instructions = str_replace('{{{SPACECOIN_ADDRESS}}}', $spacecoin_address, $instructions);
$instructions =
str_replace(
'{{{EXTRA_INSTRUCTIONS}}}',
$this->instructions_multi_payment_str,
$instructions
);
echo wpautop(wptexturize($instructions));
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
/**
* Check for Spacecoin-related IPN callabck
*
* @access public
* @return void
*/
function SPACE__maybe_spacecoin_ipn_callback()
{
// If example.com/?spacecoin=1 is present - it is callback URL.
if (isset($_REQUEST['spacecoin']) && $_REQUEST['spacecoin'] == '1') {
SPACE__log_event(__FILE__, __LINE__, "SPACE__maybe_spacecoin_ipn_callback () called and 'spacecoin=1' detected. REQUEST = " . serialize(@$_REQUEST));
if (@$_GET['src'] != 'bcinfo') {
$src = $_GET['src'];
SPACE__log_event(__FILE__, __LINE__, "Warning: received IPN notification with 'src'= '{$src}', which is not matching expected: 'bcinfo'. Ignoring ...");
exit();
}
// Processing IPN callback from blockchain.info ('bcinfo')
$order_id = @$_GET['order_id'];
$secret_key = get_post_meta($order_id, 'secret_key', true);
$secret_key_sent = @$_GET['secret_key'];
// Check the Request secret_key matches the original one (blockchain.info sends all params back)
if ($secret_key_sent != $secret_key) {
SPACE__log_event(__FILE__, __LINE__, "Warning: secret_key does not match! secret_key sent: '{$secret_key_sent}'. Expected: '{$secret_key}'. Processing aborted.");
exit ('Invalid secret_key');
}
$confirmations = @$_GET['confirmations'];
if ($confirmations >= $this->confs_num) {
// The value of the payment received in satoshi (not including fees). Divide by 100000000 to get the value in SPACE.
$value_in_space = @$_GET['value'] / 100000000;
$txn_hash = @$_GET['transaction_hash'];
$txn_confirmations = @$_GET['confirmations'];
//---------------------------
// Update incoming payments array stats
$incoming_payments = get_post_meta($order_id, '_incoming_payments', true);
$incoming_payments[$txn_hash] =
array(
'txn_value' => $value_in_space,
'dest_address' => @$_GET['address'],
'confirmations' => $txn_confirmations,
'datetime' => date("Y-m-d, G:i:s T"),
);
update_post_meta($order_id, '_incoming_payments', $incoming_payments);
//---------------------------
//---------------------------
// Recalc total amount received for this order by adding totals from uniquely hashed txn's ...
$paid_total_so_far = 0;
foreach ($incoming_payments as $k => $txn_data)
$paid_total_so_far += $txn_data['txn_value'];
update_post_meta($order_id, 'spacecoin_paid_total', $paid_total_so_far);
//---------------------------
$order_total_in_space = get_post_meta($order_id, 'order_total_in_space', true);
if ($paid_total_so_far >= $order_total_in_space) {
SPACE__process_payment_completed_for_order($order_id, false);
} else {
SPACE__log_event(__FILE__, __LINE__, "NOTE: Payment received (for SPACE {$value_in_space}), but not enough yet to cover the required total. Will be waiting for more. Spacecoin: now/total received/needed = {$value_in_space}/{$paid_total_so_far}/{$order_total_in_space}");
}
// Reply '*ok*' so no more notifications are sent
exit ('*ok*');
} else {
// Number of confirmations are not there yet... Skip it this time ...
// Don't print *ok* so the notification resent again on next confirmation
SPACE__log_event(__FILE__, __LINE__, "NOTE: Payment notification received (for SPACE {$value_in_space}), but number of confirmations is not enough yet. Confirmations received/required: {$confirmations}/{$this->confs_num}");
exit();
}
}
}
//-------------------------------------------------------------------
}
//=======================================================================
//-----------------------------------------------------------------------
// Hook into WooCommerce - add necessary hooks and filters
add_filter('woocommerce_payment_gateways', 'SPACE__add_spacecoin_gateway');
// Disable unnecessary billing fields.
/// Note: it affects whole store.
/// add_filter ('woocommerce_checkout_fields' , 'SPACE__woocommerce_checkout_fields' );
add_filter('woocommerce_currencies', 'SPACE__add_space_currency');
add_filter('woocommerce_currency_symbol', 'SPACE__add_space_currency_symbol', 10, 2);
// Change [Order] button text on checkout screen.
/// Note: this will affect all payment methods.
/// add_filter ('woocommerce_order_button_text', 'SPACE__order_button_text');
//-----------------------------------------------------------------------
//=======================================================================
/**
* Add the gateway to WooCommerce
*
* @access public
* @param array $methods
* @package
* @return array
* /
*/
function SPACE__add_spacecoin_gateway($methods)
{
$methods[] = 'SPACE_SPACECOIN';
return $methods;
}
//=======================================================================
//=======================================================================
// Our hooked in function - $fields is passed via the filter!
function SPACE__woocommerce_checkout_fields($fields)
{
unset($fields['order']['order_comments']);
unset($fields['billing']['billing_first_name']);
unset($fields['billing']['billing_last_name']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_address_1']);
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_city']);
unset($fields['billing']['billing_postcode']);
unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_state']);
unset($fields['billing']['billing_phone']);
return $fields;
}
//=======================================================================
//=======================================================================
function SPACE__add_space_currency($currencies)
{
$currencies['SPACE'] = __('Spacecoin', 'woocommerce');
return $currencies;
}
//=======================================================================
//=======================================================================
function SPACE__add_space_currency_symbol($currency_symbol, $currency)
{
switch ($currency) {
case 'SPACE':
$currency_symbol = 'S';
break;
}
return $currency_symbol;
}
//=======================================================================
//=======================================================================
function SPACE__order_button_text()
{
return 'Continue';
}
//=======================================================================
}
//###########################################################################
//===========================================================================
function SPACE__process_payment_completed_for_order($order_id, $spacecoin_paid = false)
{
if ($spacecoin_paid)
update_post_meta($order_id, 'spacecoin_paid_total', $spacecoin_paid);
// Payment completed
// Make sure this logic is done only once, in case customer keep sending payments :)
if (!get_post_meta($order_id, '_payment_completed', true)) {
update_post_meta($order_id, '_payment_completed', '1');
SPACE__log_event(__FILE__, __LINE__, "Success: order '{$order_id}' paid in full. Processing and notifying customer ...");
// Instantiate order object.
$order = wc_get_order($order_id);
$order->add_order_note(__('Order paid in full', 'woocommerce'));
$order->payment_complete();
$space_settings = SPACE__get_settings();
if ($space_settings['autocomplete_paid_orders']) {
// Ensure order is completed.
$order->update_status('completed', __('Order marked as completed according to Spacecoin plugin settings', 'woocommerce'));
}
// Notify admin about payment processed
$email = get_option('admin_email');
if (!$email)
$email = get_option('admin_email');
if ($email) {
// Send email from admin to admin
SPACE__send_email($email, $email, "Full payment received for order ID: '{$order_id}'",
"Order ID: '{$order_id}' paid in full. <br />Received SPACE: '$spacecoin_paid'.<br />Please process and complete order for customer."
);
}
}
}
//===========================================================================