Compare commits

...

19 Commits
v1.3 ... master

Author SHA1 Message Date
Frey
0f6af16e2d
Update README.md
Changed donations section.
2021-04-12 14:43:58 +08:00
Frey Mansikkaniemi
b0d9f87a5c bumped up version 2020-12-24 16:42:41 +08:00
Frey Mansikkaniemi
488336bce4 Use base64 incoded qrcode png instead 2020-12-24 16:39:34 +08:00
Frey Mansikkaniemi
114d068585 Version bumped up 2020-11-20 16:07:43 +08:00
Frey Mansikkaniemi
f3a0b6de96 Readme updated 2020-11-20 16:06:57 +08:00
Frey Mansikkaniemi
25db807a1d Changed payee message default instruction text 2020-11-20 16:05:04 +08:00
Frey Mansikkaniemi
4b60d7f9ed Invalid index bug fixed 2020-11-20 15:55:40 +08:00
Frey Mansikkaniemi
3722338708 Removed dynamic QRCode generation 2020-10-14 20:30:50 +08:00
Frey Mansikkaniemi
3bb1d92138 Bumped up version, added release notes 2020-10-14 20:15:30 +08:00
Frey Mansikkaniemi
ad3937dbce Closing brackets removed 2020-10-14 19:28:39 +08:00
Frey Mansikkaniemi
b487cdc0c5 Merge branch 'master' of https://github.com/invite-frey/is-woo-payment-fps
Remote sync
2020-10-14 19:13:07 +08:00
Frey Mansikkaniemi
14d4d6f931 Empty lines removed 2020-09-07 18:40:39 +08:00
Frey Mansikkaniemi
572b7f3e03 Bugfix 2020-09-07 11:09:10 +08:00
Frey Mansikkaniemi
c4c3991890 Bumped up the version 2020-09-07 10:50:11 +08:00
Frey Mansikkaniemi
252795d70e Added option to cache qrcodrs in file 2020-09-07 10:47:08 +08:00
Frey Mansikkaniemi
4bf51e1778 Bumped up version 2020-09-06 21:13:46 +08:00
Frey Mansikkaniemi
102b41354d Register query vars for troubleshooting 2020-09-06 21:09:47 +08:00
Frey Mansikkaniemi
544529348a Bugfix 2020-09-06 21:00:45 +08:00
Frey Mansikkaniemi
7651a99563 Extra line breaks removed 2020-09-01 17:16:49 +08:00
7 changed files with 69 additions and 46 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
._*
.fuse_*
.DS_Store
.DS_Store
qrcodes/*.png

View File

@ -53,14 +53,31 @@ $ git clone https://github.com/invite-frey/is-woo-payment-fps.git
* Output QR Code at a higher priority during WP startup
* Form validation for the Payment Gateway settings
### 1.31
* Bug fixes
### 1.4
* Optional QRCode caching added
### 1.41
* Bugfix
### 1.42
* QRCodes always cached to disk due to browser incompatibility issues with dynamic generation.
* Fixed bug preventing headers to be output on some systems
### 1.43
* Minor bug fixes
### 1.44
* base64 encoded png qrcode
## Donations
Donations are much appreciated if you found this resource useful.
* Bitcoin: 32AULufQ6AUzq9jKZdcLjSxfePZbsqQKEp
* BTC Lightning via tippin.me: [https://tippin.me/@freyhk](https://tippin.me/@freyhk)
* [Other forms of payment](https://frey.hk/#donations)
Bitcoin, Lightning Network and most major credit cards available for donations at [https://frey.hk](https://frey.hk).
## License
This project is licensed under the LGPL 3 License - see the [LICENSE.md](LICENSE.md) file for details
This project is licensed under the LGPL 3 License - see the [LICENSE.md](LICENSE.md) file for details

View File

@ -1,18 +1,18 @@
<?php
/**
* @package Hong_Kong_FPS_Woo_Payment
* @version 1.3
* @version 1.44
*/
/*
Plugin Name: Hong Kong FPS Woo Payment
Plugin URI: https://github.com/invite-frey/is-woo-payment-fps
Description: Woocommerce payment method enabling Hong Kong FPS payments. Displays QR code and FPS payent if to user. Requires manual confirmation.
Author: Frey Mansikkaniemi, invITe Services
Version: 1.3
Author: invITe Services
Version: 1.44
Author URI: http://frey.hk/
License: GPLv3
*/
if (!defined('ABSPATH')) {
return;
}
@ -53,32 +53,13 @@ function its_wpf_add_class( $methods ){
}
/**
* Print out qr code when the right query var is found
*/
add_action( 'init', 'its_wpf_qrcode_catch', 0 );
function its_wpf_qrcode_catch()
{
$qrcode_string = $_REQUEST['generate_fps_qrcode'];
$nonce = $_REQUEST['_wpnonce'];
if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) )
{
require_once('libs/phpqrcode.php');
ob_clean(); //Clean the output buffer before printing out image
header('Content-Type: image/png');
QRcode::png($qrcode_string,false,QR_ECLEVEL_H);
exit();
}
}
/**
* Change text on the Pay order button.
*/
add_filter('woocommerce_available_payment_gateways', 'its_wpf_pay_order_label');
function its_wpf_pay_order_label($gateways) {
if($gateways[ITS_WPF_PLUGIN_ID]) {
if(!empty($gateways[ITS_WPF_PLUGIN_ID])) {
$gateways[ITS_WPF_PLUGIN_ID]->order_button_text = __('Confirm FPS Payment Completed',ITS_WPF_PLUGIN_ID);
}
return $gateways;
@ -118,6 +99,3 @@ add_action('init', 'its_wpf_init_fps_qrcode_class');
function its_wpf_init_fps_qrcode_class(){
require_once 'its-fps-qrcodedata-class.php';
}
?>

View File

@ -144,6 +144,4 @@ if( !class_exists('ITS_FPS_QRCodeData') ){
}
}
}
?>
}

1
qrcodes/readme.txt Normal file
View File

@ -0,0 +1 @@
Dynamically generated qrcodes are saved here

View File

@ -58,3 +58,22 @@ Enables [FPS](https://www.hkma.gov.hk/eng/key-functions/international-financial-
= 1.3 =
* Output QR Code at a higher priority during WP startup
* Form validation for the Payment Gateway settings
= 1.31 =
* Bug fixes
= 1.4 =
* Optional QRCode caching added
= 1.41 =
* Bugfix
= 1.42 =
* QRCodes always cached to disk due to browser incompatibility issues with dynamic generation.
* Fixed bug preventing headers to be output on some systems
= 1.43 =
* Minor bugfixes
= 1.44 =
* base64 encoded png qrcode

View File

@ -24,6 +24,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
$this->account_bank_code = $this->get_option( 'account_bank_code' );
$this->ask_to_pay = $this->get_option( 'ask_to_pay' );
$this->fps_payment_reference_guide = $this->get_option( 'fps_payment_reference_guide' );
$this->write_qr_code_to_file = $this->get_option('write_qr_code_to_file');
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
}
@ -73,7 +74,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
'fps_payment_reference_guide' => array(
'title' => __('Payment Reference Guide',ITS_WPF_PLUGIN_ID),
'type' => 'textarea',
'default' => __('Please input the payment reference number below after payment has been completed.',ITS_WPF_PLUGIN_ID),
'default' => __('Please use the code below as a Message to Payee when initiating the transaction in your bank\'s app.',ITS_WPF_PLUGIN_ID),
'description' => __('Instructions visible to the customer for providing payment reference number after payment. This is not visble of Ask to Pay is active.',ITS_WPF_PLUGIN_ID)
),
'ask_to_pay' => array(
@ -233,6 +234,22 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
return $url;
}
private function qrcode_img_data($data_string){
/**
* Load the PHP QRcode library
*/
if( !class_exists( 'QRtools' ) ){
require_once 'libs/phpqrcode.php';
}
$fp = fopen('php://memory','r+');
QRCode::png($data_string,$fp,QR_ECLEVEL_H);
rewind($fp);
$qrcode = stream_get_contents($fp);
return $qrcode;
}
public function payment_fields() {
@ -249,11 +266,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
$fps_data['currency'] = $fps_data['curr'];
$qrcode = new ITS_FPS_QRCodeData($fps_data);
$qr_code_url = add_query_arg(
'_wpnonce',
wp_create_nonce(ITS_WPF_PLUGIN_ID),
get_site_url() . '/?generate_fps_qrcode=' . urlencode($qrcode->getDataString())
);
$qr_code_img = $this->qrcode_img_data($qrcode->getDataString());
if ( $this->description ) {
echo wpautop( wp_kses_post( $this->description ) );
@ -280,7 +293,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
}
?>
<div class="form-row form-row-wide" style="text-align: center;">
<img src="<?php echo $qr_code_url?>">
<img style="margin: 0 auto;" src="data:image/png;base64,<?php echo base64_encode($qr_code_img); ?>" />
</div>
@ -329,7 +342,3 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
}
}
}
?>