From 9a2696af374d3a93e3048f7c5a7d1cbb34daeb33 Mon Sep 17 00:00:00 2001
From: Patrick
Date: Fri, 4 Oct 2024 10:29:51 -0400
Subject: [PATCH] SP-1079: Test modal
---
BitPayLib/class-bitpaypages.php | 6 +-
js/bitpay.js | 167 ++++++++++++++++++++++++++++++++
js/testbitpay.js | 167 ++++++++++++++++++++++++++++++++
3 files changed, 337 insertions(+), 3 deletions(-)
create mode 100644 js/bitpay.js
create mode 100644 js/testbitpay.js
diff --git a/BitPayLib/class-bitpaypages.php b/BitPayLib/class-bitpaypages.php
index 3b14b68..1ea6633 100644
--- a/BitPayLib/class-bitpaypages.php
+++ b/BitPayLib/class-bitpaypages.php
@@ -30,15 +30,15 @@ public function checkout_thank_you( int $order_id ): void {
$restore_url = get_home_url() . '/wp-json/bitpay/cartfix/restore';
$test_mode = false;
- $js_script = 'https://bitpay.com/bitpay.min.js';
+ $js_script = '../../js/bitpay.js';
if ( $this->bitpay_payment_settings->get_bitpay_environment() === 'test' ) {
$test_mode = true;
- $js_script = 'https://test.bitpay.com/bitpay.min.js';
+ $js_script = '../../js/testbitpay.js';
}
$invoice_id = $_COOKIE['bitpay-invoice-id'] ?? null; // phpcs:ignore
- wp_enqueue_script( 'remote-bitpay-js', $js_script, null, BitPayPluginSetup::VERSION, false ); // phpcs:ignore
+ wp_enqueue_script( 'remote-bitpay-js', plugins_url($js_script, __FILE__ ), null, BitPayPluginSetup::VERSION, false ); // phpcs:ignore
wp_enqueue_script( 'bitpay_thank_you', plugins_url( '../../js/bitpay_thank_you.js', __FILE__ ), null, BitPayPluginSetup::VERSION, false ); // phpcs:ignore
?>
\' to your webpage. This will ensure that you get access to new features and product updates as they become available.');
+ }
+ window.removeEventListener('load', load);
+ });
+
+ window.addEventListener('message', receiveMessage, false);
+ setButtonListeners();
+
+ window.bitpay = {
+ showFrame: showFrame,
+ hideFrame: hideFrame,
+ showInvoice: showInvoice,
+ onModalWillEnter: onModalWillEnter,
+ onModalWillLeave: onModalWillLeave,
+ enableTestMode: enableTestMode,
+ setApiUrlPrefix: setApiUrlPrefix
+ };
+
+})();
diff --git a/js/testbitpay.js b/js/testbitpay.js
new file mode 100644
index 0000000..674cfec
--- /dev/null
+++ b/js/testbitpay.js
@@ -0,0 +1,167 @@
+/* jshint browser: true, strict: false, maxlen: false, maxstatements: false */
+(function() {
+
+ function warn() {
+ if(window.console && window.console.warn) {
+ window.console.warn.apply(window.console, arguments);
+ }
+ }
+
+ if(window.bitpay) {
+ warn('bitpay.js attempted to initialize more than once.');
+ return;
+ }
+
+ var iframe = document.createElement('iframe');
+ iframe.name = 'bitpay';
+ iframe.class = 'bitpay';
+ iframe.setAttribute('allowtransparency', 'true');
+ iframe.style.display = 'none';
+ iframe.style.border = 0;
+ iframe.style.position = 'fixed';
+ iframe.style.top = 0;
+ iframe.style.left = 0;
+ iframe.style.height = '100%';
+ iframe.style.width = '100%';
+ iframe.style.zIndex = '2147483647';
+
+ var origin = 'https://bitpay.com';
+ var onModalWillEnterMethod = function() {};
+ var onModalWillLeaveMethod = function() {};
+
+ function showFrame() {
+ document.body.style.overflow = 'hidden';
+ if (window.document.getElementsByName('bitpay').length === 0) {
+ window.document.body.appendChild(iframe);
+ }
+ onModalWillEnterMethod();
+ iframe.style.display = 'block';
+ }
+
+ function hideFrame() {
+ onModalWillLeaveMethod();
+ iframe.style.display = 'none';
+ iframe = window.document.body.removeChild(iframe);
+ document.body.style.overflow = 'auto';
+
+ }
+
+ function onModalWillEnter(customOnModalWillEnter) {
+ onModalWillEnterMethod = customOnModalWillEnter;
+ }
+
+ function onModalWillLeave(customOnModalWillLeave) {
+ onModalWillLeaveMethod = customOnModalWillLeave;
+ }
+
+ function receiveMessage(event){
+ var uri;
+
+ if(origin !== event.origin) {
+ return;
+ }
+ if(event.data === 'close') {
+ hideFrame();
+ } else if(event.data === 'loaded') {
+ showFrame();
+ } else if(event.data && event.data.open) {
+ uri = event.data.open;
+ if(uri.indexOf('bitcoin:') === 0 || uri.indexOf('bitcoincash:') === 0 || uri.indexOf('ethereum:') === 0
+ || uri.indexOf('ripple:') === 0 || uri.indexOf('bitpay:') === 0 || uri.indexOf('copay:') === 0){
+ event.preventDefault();
+ if (event.data.mobile) {
+ window.location.href = uri;
+ return;
+ }
+ var iframe = document.createElement('iframe');
+ iframe.src = uri;
+ document.head.appendChild(iframe);
+ setTimeout( function() {
+ iframe.parentNode.removeChild(iframe);
+ }, 100);
+ }
+ } else if(event.data && event.data.mailto) {
+ uri = event.data.mailto;
+ if(uri.indexOf('mailto:') === 0) {
+ window.location = uri;
+ }
+ }
+ }
+
+ function showInvoice(invoiceId, params) {
+ document.body.style.overflow = 'hidden';
+ window.document.body.appendChild(iframe);
+ var invoiceUrl = origin + '/invoice?id=' + invoiceId + '&view=modal';
+
+ if (params && params.v3) {
+ invoiceUrl += '&v=3';
+ } else {
+ invoiceUrl += '&v=4';
+ }
+
+ if (params && params.animateEntrance === false) {
+ invoiceUrl += '&animateEntrance=false';
+ }
+ iframe.src = invoiceUrl;
+ }
+
+ function setApiUrlPrefix(urlPrefix) {
+ origin = urlPrefix;
+ }
+
+ function enableTestMode(enable) {
+ if(enable === false) {
+ origin = 'https://bitpay.com';
+ return;
+ }
+ origin = 'https://test.bitpay.com';
+ warn('bitpay.js is running in test mode.');
+ }
+
+ function isLoadedFromBitPay() {
+ var loadedFromBitPay = false;
+ var scriptTags = window.document.getElementsByTagName('script');
+ for (var i = 0; i < scriptTags.length; i++) {
+ var tag = scriptTags[i];
+ if(tag.outerHTML && tag.outerHTML.indexOf && (tag.outerHTML.indexOf('https://bitpay.com/bitpay.js') !== -1) ||
+ (tag.outerHTML.indexOf('https://bitpay.com/bitpay.min.js') !== -1) ) {
+ loadedFromBitPay = true;
+ }
+ }
+ if(window.location.origin === 'https://bitpay.com' ||
+ window.location.origin === 'https://test.bitpay.com' ||
+ window.location.origin === origin) {
+ loadedFromBitPay = true;
+ }
+ return loadedFromBitPay;
+ }
+
+ function setButtonListeners() {
+ var buttons = window.document.querySelectorAll('[data-bitpay-button]');
+ for(var i = 0; i < buttons.length; i++) {
+ var b = buttons[0];
+ b.addEventListener('submit', showFrame);
+ }
+ }
+
+ window.addEventListener('load', function load() {
+ if(!isLoadedFromBitPay()) {
+ warn('bitpay.js: It looks like you may be loading bitpay.js in an unconvential way. We highly recommend that you load bitpay.js by adding \'\' to your webpage. This will ensure that you get access to new features and product updates as they become available.');
+ }
+ window.removeEventListener('load', load);
+ });
+
+ window.addEventListener('message', receiveMessage, false);
+ setButtonListeners();
+
+ window.bitpay = {
+ showFrame: showFrame,
+ hideFrame: hideFrame,
+ showInvoice: showInvoice,
+ onModalWillEnter: onModalWillEnter,
+ onModalWillLeave: onModalWillLeave,
+ enableTestMode: enableTestMode,
+ setApiUrlPrefix: setApiUrlPrefix
+ };
+
+})();