From 1839a253d2a0e49778b9c7ecc416d5f3ca77ea1f Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Mon, 26 Dec 2022 17:10:06 -0500 Subject: [PATCH 01/15] Minor update in plugin --- changelog.md | 7 +++++++ zgopmtgwy.php | 18 +++++++++--------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/changelog.md b/changelog.md index a2775f1..742c06a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,13 @@ *** Changelog *** # ZGo Payment Plugin for WooCommerce +## Version 0.8 - 2022-12-26 +ZGo's WooCommerce backend API in test mode +Set licence to GPL v2 or later + +## Version 0.5 - 2022-11-18 +integration to ZGo's Authentication End Point in test mode + ## Version 0.2 - 2022-11-07 * Initial alpha release Uses test authentication and payent REST API () diff --git a/zgopmtgwy.php b/zgopmtgwy.php index e90a057..964a9fd 100644 --- a/zgopmtgwy.php +++ b/zgopmtgwy.php @@ -2,12 +2,14 @@ /** * Plugin Name: ZGo Payment Gateway * Plugin URI: https://vergara.tech' -* Description: ZGo latest payment processing solution. Accept payments using Zcash. -* Text Domain: zgopmtgwy -* Version: 0.5 -* Author: Vergara Tech +* Description: ZGo latest payment processing solution for Woocommerce. Accept payments using Zcash. +* Version: 0.8 +* Requires at least: 5.2 +* Requires PHP: 7.2 +* Author: Vergara Tech LLC * Author URI: https://vergara.tech -* +* License: GPL v2 or later +* License URI: https://www.gnu.org/licenses/gpl-2.0.html **/ if ( ! defined( 'ABSPATH' ) ) { @@ -71,7 +73,7 @@ function zgopmt_init() { $this->siteURL = get_site_url(); $this->console_log("Site URL: " . $this->siteURL); - $this->domain = 'zgopmt'; + $this->domain = 'zgopmtgwy'; $this->id = "zgo_payment"; $this->icon = $iconurl; @@ -395,9 +397,7 @@ function zgopmt_init() { public function base64url_encode($data) { $edata = str_replace('=','',strtr(base64_encode($data), '+/', '-_')); - // $this->console_log('data -> ' . $data); - // $this->console_log('edata -> ' . $edata); - return $edata; + return $edata; } } From 6cd5f976ec3c7ce679f37a9a372a1889e2e07696 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 12:27:10 -0500 Subject: [PATCH 02/15] Starting installation process definition --- installation.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 installation.md diff --git a/installation.md b/installation.md new file mode 100644 index 0000000..e69de29 From b902d058f2e5da5931f85d3aafba2ea3cf494bfc Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 14:20:18 -0500 Subject: [PATCH 03/15] First step to integrate payment list into payment gateway --- assets/{ => img}/zgo-icon-full_6pct.png | Bin zgopmtgwy.php | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename assets/{ => img}/zgo-icon-full_6pct.png (100%) diff --git a/assets/zgo-icon-full_6pct.png b/assets/img/zgo-icon-full_6pct.png similarity index 100% rename from assets/zgo-icon-full_6pct.png rename to assets/img/zgo-icon-full_6pct.png diff --git a/zgopmtgwy.php b/zgopmtgwy.php index 964a9fd..344f17a 100644 --- a/zgopmtgwy.php +++ b/zgopmtgwy.php @@ -68,7 +68,7 @@ function zgopmt_init() { $this->console_log('zgopayments Table created in MySQL ...'); $iconurl = plugin_dir_url( __FILE__ ) . - 'assets/zgo-icon-full_6pct.png'; + 'assets/img/zgo-icon-full_6pct.png'; $this->siteURL = get_site_url(); $this->console_log("Site URL: " . $this->siteURL); @@ -389,7 +389,7 @@ function zgopmt_init() { public function console_log($data) { - $file = plugin_dir_path( __DIR__ ) . '/zgopmtgwy/assets/console.log'; + $file = plugin_dir_path( __DIR__ ) . '/zgopmtgwy/assets/log/console.log'; file_put_contents($file, $data . chr(0x0D) . chr(0x0A), FILE_TEXT | FILE_APPEND | LOCK_EX ); } From 89d4f1bdcae8790ec555ceadeec981c5edd15f9a Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 15:54:06 -0500 Subject: [PATCH 04/15] First version of unified payment component --- assets/php/class-submenu-page.php | 586 ++++++++++++++++++++++++++++++ assets/php/class-submenu.php | 44 +++ zgopmtgwy.php | 14 +- 3 files changed, 643 insertions(+), 1 deletion(-) create mode 100644 assets/php/class-submenu-page.php create mode 100644 assets/php/class-submenu.php diff --git a/assets/php/class-submenu-page.php b/assets/php/class-submenu-page.php new file mode 100644 index 0000000..5660907 --- /dev/null +++ b/assets/php/class-submenu-page.php @@ -0,0 +1,586 @@ +_path = $path; + $this->console_log('$_path -> '. $this->_path); + + $this->_nrows = $this->getPmtsCount(); + // + // Create zgo_pmtlst if does not exist + // + $sql = 'create table if not exists zgo_pmtlst (' . + 'pg_ix integer ,' . + 'pg_page integer not null default 0,' . + 'pg_npages integer not null default 0,' . + 'pg_offset integer not null default 0,' . + 'pg_limit integer not null default 0,' . + 'pg_dt datetime default current_timestamp, '. + 'unique lstix (pg_ix) );'; + $wpdb->query($sql); + + if ( ! $this->pmtLstRdy() ) { + // + // Calculate first time pagination paramters + // + $this->_limit = 10; + $this->_page = 1; + $this->_offset = 0; + $this->_npages = intdiv($this->_nrows,$this->_limit); + if ( $this->_nrows > ($this->_npages*$this->_limit) ) { + $this->_npages++; + } + + $sql = 'insert into zgo_pmtlst (pg_ix,pg_page,pg_npages,pg_offset,pg_limit) values (1,' . + $this->_page . ',' . + $this->_npages . ',' . + $this->_offset . ',' . + $this->_limit .')'; + $wpdb->query($sql); + } else { + // Load last state + $params = $this->pmtLstParams(); + $this->_page = $params->pg_page; + $this->_offset = $params->pg_offset; + $this->_limit = $params->pg_limit; + $this->_npages = $params->pg_npages; + if ( $this->_nrows > ($this->_npages*$this->_limit) ) { + // + // Calc new number of pages + // + $this->_npages = intdiv($this->_nrows,$this->_limit); + if ( $this->_nrows > ($this->_npages*$this->_limit) ) { + $this->_npages++; + } + $sql = 'update zgo_pmtlst set pg_npages=' . $this->_npages . ' where pg_ix=1'; + $wpdb->query($sql); + } + } + } + + public function getPmtsCount() { + global $wpdb; + + $sql = "select count(*) as npmts from zgo_payments"; + $result = $wpdb->get_var($sql); + $this->console_log('getPmtsCount() -> ' . $result); + return $result; + } + + public function pmtLstRdy() { + global $wpdb; + $sql = 'select count(*) as nrecs from zgo_pmtlst;'; + $result = $wpdb->get_var($sql); + $this->console_log("pmtLstRdy() -> " . $result); + return $result; + } + + public function pmtLstParams() { + global $wpdb; + $sql = 'select * from zgo_pmtlst where pg_ix=1;'; + $result = $wpdb->get_row($sql,OBJECT); + $this->console_log('Params -> ' . json_encode($result) ); + $this->console_log('pg_ix -> ' . $result->pg_ix ); + $this->console_log('pg_page -> ' . $result->pg_page ); + $this->console_log('pg_offset -> ' . $result->pg_offset ); + return $result; + } + + public function console_log($data) { + + $file = $this->_path . 'zgopmtgwy/assets/console.log'; + file_put_contents($file, 'LST::' . $data . chr(0x0D) . chr(0x0A), FILE_TEXT | FILE_APPEND | LOCK_EX ); + + } + + public function render() { + global $wpdb; + + $currentDate = date('Y-m-d H:i:s'); + + if ($_SERVER['REQUEST_METHOD'] === 'POST') { + // + // Navigation button pressed + // + $sql = 'select * from zgo_pmtlst where pg_ix=1;'; + $result = $wpdb->get_row($sql,OBJECT); + $this->_page = $result->pg_page; + $this->console_log("_page -> " . $this->_page); + $this->_limit = $result->pg_limit; + $this->console_log("_limit -> " . $this->_limit); + $this->_npages = $result->pg_npages; + $this->console_log("_npages -> " . $this->_npages); + $this->_nrows = $this->getPmtsCount(); + $this->console_log("_nrows -> " . $this->_nrows); + if ( $this->_nrows > ($this->_npages*$this->_limit) ) { + $this->console_log('_nrows > ' . ($this->_npages*$this->_limit)); + $this->_npages = intdiv($this->_nrows,$this->_limit); + $this->console_log('_npages > ' . $this->_npages ); + if ( $this->_nrows > ($this->_npages*$this->_limit) ) { + $this->_npages++; + $this->console_log('Page number increased to ' . $this->_npages); + } + } + + if ( isset($_POST['First'])) { + $this->_page = 1; + $this->_offset = 0; + } + + if ( isset($_POST['Previous'])) { + if ($this->_page > 1) { + $this->_page--; + } + $this->_offset = $this->_limit*($this->_page-1); + } + + if ( isset($_POST['Next'])) { + if ($this->_page < $this->_npages ) { + $this->_page++; + } + $this->_offset = $this->_limit*($this->_page-1); + } + + if ( isset($_POST['Last'])) { + $this->_page = $this->_npages; + $this->_offset = $this->_limit*($this->_page-1); + } + // + // Save new list state + // + $sql = 'update zgo_pmtlst set pg_page=' . $this->_page . + ', pg_npages=' . $this->_npages . + ', pg_offset=' . $this->_offset . ' where pg_ix=1;'; + $this->console_log( $sql ); + $wpdb->query($sql); + } + + ?> +
+ ZGo Payment Gateway - Received Payments +
+ +
+ + + + + +
+ _page . '/' . $this->_npages; + ?> + + +
+ + + + + + + + + + + + + + _offset . "," . $this->_limit; + $result = $wpdb->get_results($sql,OBJECT); + $npmts = count($result); + if ( $npmts > 0 ) { + $line = 0; + while ( $line < $npmts ) { + $row = $result[$line]; + if ( fmod($line,2) ) { + print ''; + } else { + print ''; + } + $line++; + print '"; + print ""; + print ""; + print '"; + print '"; + print '"; + print '"; + print '"; + print '"; + } + ?> +
ZGo Order IdShop Order IdCustomerAcceptedConfirmedOrder TotalRateTotal ZECPaid?
' . $row->pmt_orderid . "" . $row->pmt_wc_order . "" . $row->pmt_wc_custname . "'. $row->pmt_accepted . "'.$row->pmt_confirmed ."'. number_format($row->pmt_amount,2) . "'. number_format($row->pmt_rate,2) . "'. number_format($row->pmt_zec,8) . "'.$row->pmt_wc_paid ."
+
+
+
+ + + + + + + + + +
+ + + + + + + +
+
+ + render_stats(); + $this->render_totals(); + } + } + + public function render_stats() { + + global $wpdb; + + $sql = "select ifnull(a.dTotalAmount,0) as dTotalAmount, ifnull(a.dTotalZec,0) as dTotalZec, ifnull(a.dTotalPmts,0) as dTotalPmts, ifnull(b.wTotalAmount,0) as wTotalAmount, ifnull(b.wTotalZec,0) as wTotalZec, ifnull(b.wTotalPmts,0) as wTotalPmts, ifnull(c.mTotalAmount,0) as mTotalAmount, ifnull(c.mTotalZec,0) as mTotalZec, ifnull(c.mTotalPmts,0) as mTotalPmts from (select sum(a0.pmt_amount) as dTotalAmount, sum(a0.pmt_zec) as dTotalZec, count(*) as dTotalPmts from zgo_payments a0 where STR_TO_DATE(left(a0.pmt_confirmed,10), '%Y-%m-%d') = CURRENT_DATE ) a join (select sum(aa.pmt_amount) as wTotalAmount, sum(aa.pmt_zec) as wTotalZec, count(*) as wTotalPmts from zgo_payments aa where STR_TO_DATE(aa.pmt_confirmed, '%Y-%m-%d %H:%i:%s') >= DATE_SUB(CURRENT_DATE, INTERVAL 7 DAY)) b join (select sum(bb.pmt_amount) as mTotalAmount, sum(bb.pmt_zec) as mTotalZec, count(*) as mTotalPmts from zgo_payments bb where STR_TO_DATE(bb.pmt_confirmed, '%Y-%m-%d %H:%i:%s') >= DATE_SUB(CURRENT_DATE, INTERVAL 30 DAY)) c where 1;"; + $result = $wpdb->get_row($sql,OBJECT); + ?> +
+ ZGo Confirmed Payments Statistics +
+ + + + + + + + + + + + + +
+ + + + + + +
Payments receivedDescriptionValue
+
+ + + + + + + + + + + + + + + + +
Received Today + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
dTotalAmount,2);?>
dTotalZec > 0.0) { + echo number_format($result->dTotalZec/$result->dTotalAmount,2); + } else { echo '0.00'; } ?>
dTotalZec,8);?>
dTotalPmts;?>
+
Last 7 days + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
wTotalAmount,2);?>
wTotalZec > 0.0) { + echo number_format($result->wTotalAmount/$result->wTotalZec,2); + } else { echo '0.00'; } ?>
wTotalZec,8);?>
wTotalPmts;?>
+
Last 30 days + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
mTotalAmount,2);?>
mTotalZec> 0.0) { + echo number_format($result->mTotalAmount/$result->mTotalZec,2); + } else { echo '0.00'; } ?>
mTotalZec,8);?>
mTotalPmts;?>
+
+
+ get_row($sql,OBJECT); + if ( $result ) { + if ($result->gTotalPmts > 0) { + ?> +
+ Global Totals +
+ + + + + +
+ + + + + + + + + +
Payments:gTotalPmts ?>Total Amount:gTotalAmount,2) ?>Total ZEC:gTotalZec,8) ?>
+
+ submenu_page = $submenu_page; + } + + /** + * Adds a submenu for this plugin to the 'Tools' menu. + **/ + public function init() { + add_action( 'admin_menu', array( $this, 'add_options_page' ) ); + } + + /** + * Creates the submenu item and calls on the Submenu Page object to render + * the actual contents of the page. + **/ + public function add_options_page() { + + add_management_page( + 'ZGo Payment Gateway Support', + 'ZGo Payments', + 'manage_options', + 'zgopmtlist', + array( $this->submenu_page, 'render' ) + ); + } + +} diff --git a/zgopmtgwy.php b/zgopmtgwy.php index 344f17a..46cf367 100644 --- a/zgopmtgwy.php +++ b/zgopmtgwy.php @@ -3,7 +3,7 @@ * Plugin Name: ZGo Payment Gateway * Plugin URI: https://vergara.tech' * Description: ZGo latest payment processing solution for Woocommerce. Accept payments using Zcash. -* Version: 0.8 +* Version: 0.8a * Requires at least: 5.2 * Requires PHP: 7.2 * Author: Vergara Tech LLC @@ -411,5 +411,17 @@ function zgopmt_init() { return $methods; } +} + +// Include the dependencies needed to instantiate the plugin. +foreach ( glob( plugin_dir_path( __FILE__ ) . 'assets/php/*.php' ) as $file ) { + include_once $file; +} + +add_action( 'plugins_loaded', 'zgopmtlist_plugin' ); +function zgopmtlist_plugin() { + + $plugin = new Submenu( new Submenu_Page() ); + $plugin->init(); } From e721f97c83ad8d248be804101e5f78776f2f2592 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 18:22:20 -0500 Subject: [PATCH 05/15] Version 0.9 - ready for testing --- assets/php/class-submenu-page.php | 629 ++++++++++++++++-------------- changelog.md | 3 + zgopmtgwy.php | 6 +- 3 files changed, 345 insertions(+), 293 deletions(-) diff --git a/assets/php/class-submenu-page.php b/assets/php/class-submenu-page.php index 5660907..68120ad 100644 --- a/assets/php/class-submenu-page.php +++ b/assets/php/class-submenu-page.php @@ -20,17 +20,16 @@ class Submenu_Page { public $_nrows; public $_path; - function __construct( ) { + public function __construct( $path ) { + global $wpdb; $this->_path = $path; - $this->console_log('$_path -> '. $this->_path); - - $this->_nrows = $this->getPmtsCount(); - // - // Create zgo_pmtlst if does not exist - // - $sql = 'create table if not exists zgo_pmtlst (' . + $this->_nrows = $this->getPmtsCount(); + // + // Create zgo_pmtlst if does not exist + // + $sql = 'create table if not exists zgo_pmtlst (' . 'pg_ix integer ,' . 'pg_page integer not null default 0,' . 'pg_npages integer not null default 0,' . @@ -38,9 +37,9 @@ class Submenu_Page { 'pg_limit integer not null default 0,' . 'pg_dt datetime default current_timestamp, '. 'unique lstix (pg_ix) );'; - $wpdb->query($sql); + $wpdb->query($sql); - if ( ! $this->pmtLstRdy() ) { + if ( ! $this->pmtLstRdy() ) { // // Calculate first time pagination paramters // @@ -58,7 +57,7 @@ class Submenu_Page { $this->_offset . ',' . $this->_limit .')'; $wpdb->query($sql); - } else { + } else { // Load last state $params = $this->pmtLstParams(); $this->_page = $params->pg_page; @@ -109,15 +108,14 @@ class Submenu_Page { public function console_log($data) { - $file = $this->_path . 'zgopmtgwy/assets/console.log'; + $file = $this->_path . 'assets/log/console.log'; file_put_contents($file, 'LST::' . $data . chr(0x0D) . chr(0x0A), FILE_TEXT | FILE_APPEND | LOCK_EX ); - } public function render() { global $wpdb; - $currentDate = date('Y-m-d H:i:s'); + $currentDate = date('Y-m-d H:i:s'); if ($_SERVER['REQUEST_METHOD'] === 'POST') { // @@ -189,42 +187,42 @@ class Submenu_Page {
- - - - - -
- _page . '/' . $this->_npages; - ?> - - -
- - - - - - - - - - - - +
ZGo Order IdShop Order IdCustomerAcceptedConfirmedOrder TotalRateTotal ZECPaid?
+ + + + +
+ _page . '/' . $this->_npages; + ?> + + +
+ + + + + + + + + + + + '.$row->pmt_wc_paid .""; } ?> -
ZGo Order IdShop Order IdCustomerAcceptedConfirmedOrder TotalRateTotal ZECPaid?
-
-
-
- - - - - - - - - -
- - - - - - - -
-
+ + +
+
+ + + + + + + + + +
+ + + + + + + +
+
render_stats(); @@ -338,11 +336,11 @@ class Submenu_Page { ZGo Confirmed Payments Statistics - - - - + +
+
- - - + + + + - - - - + +
- - - - - - - - - - - - - - - - -
Received Today - - - - - - - - - - - - - -
Total Amount
Average Rate
Total Zec
Number of payments
-
- - - - - - - - - - - - - -
dTotalAmount,2);?>
dTotalZec > 0.0) { - echo number_format($result->dTotalZec/$result->dTotalAmount,2); - } else { echo '0.00'; } ?>
dTotalZec,8);?>
dTotalPmts;?>
-
Last 7 days - - - - - - - - - - - - - -
Total Amount
Average Rate
Total Zec
Number of payments
-
- - - - - - - - - - - - - -
wTotalAmount,2);?>
wTotalZec > 0.0) { - echo number_format($result->wTotalAmount/$result->wTotalZec,2); - } else { echo '0.00'; } ?>
wTotalZec,8);?>
wTotalPmts;?>
-
Last 30 days - - - - - - - - - - - - - -
Total Amount
Average Rate
Total Zec
Number of payments
-
- - - - - - - - - - - - - -
mTotalAmount,2);?>
mTotalZec> 0.0) { - echo number_format($result->mTotalAmount/$result->mTotalZec,2); - } else { echo '0.00'; } ?>
mTotalZec,8);?>
mTotalPmts;?>
-
+
+ + + + + + + + + + + + + + + + +
Received Today + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
dTotalAmount,2);?>
+ dTotalZec > 0.0) { + echo number_format($result->dTotalZec/$result->dTotalAmount,2); + } else { + echo '0.00'; + } + ?> +
+ dTotalZec,8); + ?> +
+ dTotalPmts; + ?> +
+
Last 7 days + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
+ wTotalAmount,2); + ?> +
+ wTotalZec > 0.0) { + echo number_format($result->wTotalAmount/$result->wTotalZec,2); + } else { + echo '0.00'; + } + ?> +
+ wTotalZec,8); + ?> +
+ wTotalPmts; + ?> +
+
Last 30 days + + + + + + + + + + + + + + +
Total Amount
Average Rate
Total Zec
Number of payments
+
+ + + + + + + + + + + + + +
+ mTotalAmount,2); + ?> +
+ mTotalZec> 0.0) { + echo number_format($result->mTotalAmount/$result->mTotalZec,2); + } else { + echo '0.00'; + } + ?> +
+ mTotalZec,8); + ?> +
+ mTotalPmts; + ?> +
+
+ font-weight: 600; + font-size: 15px; + margin: auto; + text-align: center; + vertical-align: center; + height: 20px; + background-color: #ff5722; + git color: white;"> @@ -581,6 +631,5 @@ class Submenu_Page { init(); } From 8634eea19154035cd3ac180b4d85c4a06b0f9481 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 19:22:01 -0500 Subject: [PATCH 06/15] Fix text color for totals in Payment Statistics --- assets/php/class-submenu-page.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/assets/php/class-submenu-page.php b/assets/php/class-submenu-page.php index 68120ad..32b94ff 100644 --- a/assets/php/class-submenu-page.php +++ b/assets/php/class-submenu-page.php @@ -326,8 +326,8 @@ class Submenu_Page { $result = $wpdb->get_row($sql,OBJECT); ?>
Payments: gTotalPmts ?> Total Amount:
+ font-weight: 600; + font-size: 15px; + margin: auto; + text-align: center; + vertical-align: center; + height: 20px; + background-color: #ff5722; + color: white;"> @@ -616,7 +616,7 @@ class Submenu_Page { vertical-align: center; height: 20px; background-color: #ff5722; - git color: white;"> + color: white;"> From eedf7dcd81b00ecf329f2b9fec89223b53048971 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 20:42:49 -0500 Subject: [PATCH 07/15] Version 0.9 - minor appearence fixes --- assets/php/class-submenu-page.php | 55 +++++++++++++++---------------- assets/php/class-submenu.php | 19 ++--------- 2 files changed, 29 insertions(+), 45 deletions(-) diff --git a/assets/php/class-submenu-page.php b/assets/php/class-submenu-page.php index 32b94ff..021152d 100644 --- a/assets/php/class-submenu-page.php +++ b/assets/php/class-submenu-page.php @@ -1,18 +1,13 @@ _path = $path; + $this->_nrows = $this->getPmtsCount(); // // Create zgo_pmtlst if does not exist @@ -40,9 +36,9 @@ class Submenu_Page { $wpdb->query($sql); if ( ! $this->pmtLstRdy() ) { - // - // Calculate first time pagination paramters - // + // + // Calculate first time pagination paramters + // $this->_limit = 10; $this->_page = 1; $this->_offset = 0; @@ -593,7 +589,7 @@ class Submenu_Page { $result = $wpdb->get_row($sql,OBJECT); if ( $result ) { if ($result->gTotalPmts > 0) { - ?> + ?>
Global Totals
-
Payments received Description ValuePayments: gTotalPmts ?> Total Amount:
- - - - - +
- +
+ + + + + -
+ + font-weight: 600; + font-size: 15px; + margin: auto; + text-align: center; + vertical-align: center; + height: 20px; + background-color: #ff5722; + color: white !important;"> @@ -625,10 +621,11 @@ class Submenu_Page {
Payments: gTotalPmts ?> Total Amount:gTotalZec,8) ?>
-
- + submenu_page = $submenu_page; } - /** - * Adds a submenu for this plugin to the 'Tools' menu. - **/ public function init() { add_action( 'admin_menu', array( $this, 'add_options_page' ) ); } - /** - * Creates the submenu item and calls on the Submenu Page object to render - * the actual contents of the page. - **/ public function add_options_page() { add_management_page( From 54129c1bc599787eac805301e156e80fe1899f55 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Fri, 30 Dec 2022 21:01:35 -0500 Subject: [PATCH 08/15] Version 0.9 - another minor fixes --- assets/php/class-submenu-page.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/assets/php/class-submenu-page.php b/assets/php/class-submenu-page.php index 021152d..e0ade99 100644 --- a/assets/php/class-submenu-page.php +++ b/assets/php/class-submenu-page.php @@ -189,16 +189,15 @@ class Submenu_Page { font-size: 15px; vertical-align: center; height: 20px; - color: navy;"> + color: navy;">
_page . '/' . $this->_npages; ?> - +
+ background-color: #ff5722; + color: white;"> @@ -607,7 +606,6 @@ class Submenu_Page {
ZGo Order Id Shop Order Id Customer
@@ -320,7 +320,7 @@ class Submenu_Page { $sql = "select ifnull(a.dTotalAmount,0) as dTotalAmount, ifnull(a.dTotalZec,0) as dTotalZec, ifnull(a.dTotalPmts,0) as dTotalPmts, ifnull(b.wTotalAmount,0) as wTotalAmount, ifnull(b.wTotalZec,0) as wTotalZec, ifnull(b.wTotalPmts,0) as wTotalPmts, ifnull(c.mTotalAmount,0) as mTotalAmount, ifnull(c.mTotalZec,0) as mTotalZec, ifnull(c.mTotalPmts,0) as mTotalPmts from (select sum(a0.pmt_amount) as dTotalAmount, sum(a0.pmt_zec) as dTotalZec, count(*) as dTotalPmts from zgo_payments a0 where STR_TO_DATE(left(a0.pmt_confirmed,10), '%Y-%m-%d') = CURRENT_DATE ) a join (select sum(aa.pmt_amount) as wTotalAmount, sum(aa.pmt_zec) as wTotalZec, count(*) as wTotalPmts from zgo_payments aa where STR_TO_DATE(aa.pmt_confirmed, '%Y-%m-%d %H:%i:%s') >= DATE_SUB(CURRENT_DATE, INTERVAL 7 DAY)) b join (select sum(bb.pmt_amount) as mTotalAmount, sum(bb.pmt_zec) as mTotalZec, count(*) as mTotalPmts from zgo_payments bb where STR_TO_DATE(bb.pmt_confirmed, '%Y-%m-%d %H:%i:%s') >= DATE_SUB(CURRENT_DATE, INTERVAL 30 DAY)) c where 1;"; $result = $wpdb->get_row($sql,OBJECT); ?> -
submenu_page = $submenu_page; + public function __construct( $zpmtStatsPage ) { + $this->zpmtStatsPage = $zpmtStatsPage; } public function init() { @@ -24,7 +24,7 @@ class Submenu { 'ZGo Payments', 'manage_options', 'zgopmtlist', - array( $this->submenu_page, 'render' ) + array( $this->zpmtStatsPage, 'render' ) ); } From 4e3a32f5d1cdb89178398ddcd1e9e027d87b1762 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Sat, 31 Dec 2022 21:31:41 -0500 Subject: [PATCH 10/15] Version 0.9 - log calls removed --- assets/php/zpmt-stats-page.php | 21 ++---------- zgopmtgwy.php | 62 +++------------------------------- 2 files changed, 7 insertions(+), 76 deletions(-) diff --git a/assets/php/zpmt-stats-page.php b/assets/php/zpmt-stats-page.php index 4b09c9a..abb36b9 100644 --- a/assets/php/zpmt-stats-page.php +++ b/assets/php/zpmt-stats-page.php @@ -5,7 +5,6 @@ * This class creates the statistics page for the plugin. * **/ - class zpmt_stats_page { public $_limit; @@ -79,15 +78,13 @@ class zpmt_stats_page { $sql = "select count(*) as npmts from zgo_payments"; $result = $wpdb->get_var($sql); - $this->console_log('getPmtsCount() -> ' . $result); - return $result; + return $result; } public function pmtLstRdy() { global $wpdb; $sql = 'select count(*) as nrecs from zgo_pmtlst;'; $result = $wpdb->get_var($sql); - $this->console_log("pmtLstRdy() -> " . $result); return $result; } @@ -95,10 +92,6 @@ class zpmt_stats_page { global $wpdb; $sql = 'select * from zgo_pmtlst where pg_ix=1;'; $result = $wpdb->get_row($sql,OBJECT); - $this->console_log('Params -> ' . json_encode($result) ); - $this->console_log('pg_ix -> ' . $result->pg_ix ); - $this->console_log('pg_page -> ' . $result->pg_page ); - $this->console_log('pg_offset -> ' . $result->pg_offset ); return $result; } @@ -117,23 +110,16 @@ class zpmt_stats_page { // // Navigation button pressed // - $sql = 'select * from zgo_pmtlst where pg_ix=1;'; - $result = $wpdb->get_row($sql,OBJECT); + $sql = 'select * from zgo_pmtlst where pg_ix=1;'; + $result = $wpdb->get_row($sql,OBJECT); $this->_page = $result->pg_page; - $this->console_log("_page -> " . $this->_page); $this->_limit = $result->pg_limit; - $this->console_log("_limit -> " . $this->_limit); $this->_npages = $result->pg_npages; - $this->console_log("_npages -> " . $this->_npages); $this->_nrows = $this->getPmtsCount(); - $this->console_log("_nrows -> " . $this->_nrows); if ( $this->_nrows > ($this->_npages*$this->_limit) ) { - $this->console_log('_nrows > ' . ($this->_npages*$this->_limit)); $this->_npages = intdiv($this->_nrows,$this->_limit); - $this->console_log('_npages > ' . $this->_npages ); if ( $this->_nrows > ($this->_npages*$this->_limit) ) { $this->_npages++; - $this->console_log('Page number increased to ' . $this->_npages); } } @@ -166,7 +152,6 @@ class zpmt_stats_page { $sql = 'update zgo_pmtlst set pg_page=' . $this->_page . ', pg_npages=' . $this->_npages . ', pg_offset=' . $this->_offset . ' where pg_ix=1;'; - $this->console_log( $sql ); $wpdb->query($sql); } diff --git a/zgopmtgwy.php b/zgopmtgwy.php index f072a72..944bb0d 100644 --- a/zgopmtgwy.php +++ b/zgopmtgwy.php @@ -45,10 +45,6 @@ function zgopmt_init() { public function __construct() { global $wpdb; - - $this->console_log("Gateway constructor accesed."); - - $this->console_log('Create zgo_payments table if not exists...'); // // Create payments table in WordPress database // @@ -63,15 +59,12 @@ function zgopmt_init() { 'pmt_zec double (12,8) not null default 0.0,' . 'pmt_wc_paid int not null default 0,' . 'unique pmt_orderix (pmt_orderid, pmt_wc_order) )'; - $this->console_log('Create table Query -> ' . $sql); $wpdb->query($sql); - $this->console_log('zgopayments Table created in MySQL ...'); $iconurl = plugin_dir_url( __FILE__ ) . 'assets/img/zgo-icon-full_6pct.png'; $this->siteURL = get_site_url(); - $this->console_log("Site URL: " . $this->siteURL); $this->domain = 'zgopmtgwy'; @@ -186,28 +179,22 @@ function zgopmt_init() { $this->zgotoken . '&siteurl=' . $this->base64url_encode($this->siteURL); - $this->console_log('URL -> ' . $url ); $response = wp_remote_get($url); - $this->console_log(json_encode($response)); $httpcode = wp_remote_retrieve_response_code( $response ); - $this->console_log('Status Code -> ' . $httpcode ); switch ( $httpcode ) { case 200: $body = wp_remote_retrieve_body( $response ); $oid = json_decode($body); - $this->console_log('Body -> ' . $body); $isvalid = $oid->{'authorized'}; break; case 202: $body = wp_remote_retrieve_body($response ); $oid = json_decode($body); - $this->console_log('message -> ' . $oid->{'message'}); break; default: - $this->console_log('Conection error..'); break; } } @@ -221,14 +208,10 @@ function zgopmt_init() { global $wpdb; - $this->console_log('Site URL ->' . $this->siteURL); - $this->console_log('Processing payment for order ' . $order_id); - $order = wc_get_order( $order_id ); // $wc_order = wc_get_product($order_id); $wc_order_key = $order->get_order_key(); - $this->console_log('Order ' . $order_id . ' key = ' . $wc_order_key); $url = 'https://test.zgo.cash/woopayment' . '?ownerid=' . $this->zgoownerid . @@ -242,29 +225,19 @@ function zgopmt_init() { //'&orderkey=' . ; - $this->console_log('ZGoPayment URL -> ' . $url); - $this->console_log('Calling wp_remote_get()'); $response = wp_remote_get($url); $httpcode = wp_remote_retrieve_response_code( $response ); - $this->console_log('Status Code ->' . $httpcode ); - switch ( $httpcode ) { case 200: wc_add_notice( 'Order on hold, please wait for confirmation'); $order->update_status('on_hold',__('Awaiting payment confirmation','woocommerce')); - $this->console_log('Order ' . $order_id . ' status set to ON_HOLD'); - $body = wp_remote_retrieve_body( $response ); - $this->console_log('res. body = ' . $body); - $oid = json_decode($body); $zgoOrderid = $oid->{'order'}; - $this->console_log('ZGo order = ' . $zgoOrderid); // // Save ZGo Order ID and Cart order // - $this->console_log("Preparing SQL insert statement"); $sql = "replace into zgo_payments (" . "pmt_orderid," . "pmt_wc_order," . @@ -282,14 +255,11 @@ function zgopmt_init() { date('Y-m-d H:i:s') . "','',". $order->get_total() . ",0,0,0)"; - $this->console_log($sql); $wpdb->query($sql); // Remove cart. WC()->cart->empty_cart(); - $this->console_log($this->get_return_url( $order )); - return array( 'result' => 'success', 'redirect' => 'https://dev.zgo.cash/invoice/' . $zgoOrderid, @@ -297,11 +267,7 @@ function zgopmt_init() { break; case 202: $body = wp_remote_retrieve_body( $response ); - $this->console_log('res. body = ' . $body); - $msg = json_decode($body); - $this->console_log('Order ' . $order_id . ' -> ZGo Order Generation Error : ' . $msg->{'message'}); - $order->update_status('failed',__('Order ' . $order_id . ' -> ZGo Order Generation Error : ' . $msg->{'message'},'woocommerce')); break; @@ -317,8 +283,6 @@ function zgopmt_init() { global $wpdb; - $this->console_log('zconfirm called '); - $token = $_GET['token']; $zgoOrderid = $_GET['orderid']; $orderid = $_GET['wc_orderid']; @@ -327,28 +291,15 @@ function zgopmt_init() { $order = wc_get_order( $orderid ); $sql = "select * from zgo_payments where pmt_wc_order = '" . $orderid . "';"; - $this->console_log('SQL -> ' . $sql); $result = $wpdb->get_row($sql,OBJECT); if ( ! is_null($result) ) { - $this->console_log('Query successfull...'); - $this->console_log('totalzec -> ', $totalzec); - $this->console_log('rate -> ', $rate); - $this->console_log('pmt_wc_paid=' . $result->pmt_wc_paid); - $this->console_log('local token -> ' . $this->zgotoken); - $this->console_log('received token -> ' . $token); - $this->console_log('zgoOrderid -> ' . $zgoOrderid); - $this->console_log('pmt_orderid -> ' . $result->pmt_orderid); - if ( ( $token == $this->zgotoken ) && ( $result->pmt_orderid == $zgoOrderid ) && ( $result->pmt_wc_paid == '0' ) ) { - $this->console_log('Test successfull...'); - $this->console_log('Order status -> ' . $order->get_status()); switch ( $order->get_status() ) { case 'pending': case 'failed': - $this->console_log('Confirming payment for order ' . $orderid); $order->payment_complete(); $order->reduce_order_stock(); // @@ -360,24 +311,19 @@ function zgopmt_init() { ", pmt_zec=" . $totalzec . ", pmt_wc_paid=1 " . " where pmt_wc_order='" . $orderid . "';"; -/* - $this->zpmtdb->exec($sql); -*/ - $this->console_log($sql); $wpdb->query($sql); - $this->console_log('Order marked as paid in zgo_payments table...'); update_option('webhook_debug', $_GET); break; default: - $this->console_log('Order ' . $orderid . ' already paid or cancelled...'); +// $this->console_log('Order ' . $orderid . ' already paid or cancelled...'); break; } } else { - $this->console_log('Invalid parameters...'); +// $this->console_log('Invalid parameters...'); } } else { - $this->console_log('Database error...'); +// $this->console_log('Database error...'); } } @@ -421,7 +367,7 @@ foreach ( glob( plugin_dir_path( __FILE__ ) . 'assets/php/*.php' ) as $file ) { add_action( 'plugins_loaded', 'zgopmtlist_plugin' ); function zgopmtlist_plugin() { $path = plugin_dir_path( __FILE__ ); - $plugin = new Submenu( new Submenu_Page($path) ); + $plugin = new zpmt_stats( new zpmt_stats_page($path) ); $plugin->init(); } From 3f66edd15d268dd3bbd3f796df5d811a238df32c Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Sun, 1 Jan 2023 09:27:35 -0600 Subject: [PATCH 11/15] Reformat changelog --- CHANGELOG.md | 24 ++++++++++++++++++++++++ changelog.md | 21 --------------------- 2 files changed, 24 insertions(+), 21 deletions(-) create mode 100644 CHANGELOG.md delete mode 100644 changelog.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..973c773 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] +- Integrate ZGo Payments Monitor + +## [0.8.0] - 2022-12-26 +- ZGo's WooCommerce backend API in test mode +- Set licence to GPL v2 or later + +## [0.5.0] - 2022-11-18 +- Integration to ZGo's Authentication End Point in test mode + +## [0.4.0] - 2022-11-18 +- Integration to ZGo's Authentication End Point in test mode + +## [0.2.0] - 2022-11-07 +- Initial alpha release +- Uses test authentication and payment REST API () + + + diff --git a/changelog.md b/changelog.md deleted file mode 100644 index 06c3dc5..0000000 --- a/changelog.md +++ /dev/null @@ -1,21 +0,0 @@ -*** Changelog *** -# ZGo Payment Plugin for WooCommerce - -## Version 0.9 - 2022-12-30 -Integrate ZGo Payments Monitor - -## Version 0.8 - 2022-12-26 -ZGo's WooCommerce backend API in test mode -Set licence to GPL v2 or later - -## Version 0.5 - 2022-11-18 -integration to ZGo's Authentication End Point in test mode - -## Version 0.2 - 2022-11-07 -* Initial alpha release -Uses test authentication and payent REST API () - -## Version 0.4 - 2022-11-18 -integration to ZGo's Authentication End Point in test mode - - From 10680b626f576fd69d5f87ff23bf4ff288542f7a Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Sun, 1 Jan 2023 10:22:40 -0600 Subject: [PATCH 12/15] Add GPL license --- LICENSE.md | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..af3c0c5 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,86 @@ +GNU GENERAL PUBLIC LICENSE + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. From 6c5383352527253289d485cf9dcf3ebf96c496f5 Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Sun, 1 Jan 2023 10:26:07 -0600 Subject: [PATCH 13/15] Update README --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6b14669..791c60c 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,5 @@ # ZGo Payment Gateway plugin for Woocommerce -Contributors: -Tags: WordPres, WooCommerce, payments, ecommerce, e-commerce, store, sales, sell, shop, shopping, cart, checkout -Requires at least : Wordpress 6, WooCommerce 7 -Tested up to: WordPress 6.1.1, WooComerce 7.1,0 -Requires PHP: 7.1 -Stable tag: 1.0 - ZGo's payment processing solution for WooCommerce. This plugin implements a payment gateway to let buyers pay with Zcash @@ -14,6 +7,12 @@ ZGo's payment processing solution for WooCommerce. This plugin implements a paym To Do +## System Requirements + +- PHP 7.1 +- Wordpress 6 +- WooCommerce 7 + ## Installation 1. Get your ZGo's OwnerID and Token for Woocommerce from your ZGo Shop Account @@ -55,4 +54,4 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html ## Project status -Development \ No newline at end of file +Development From 84aa9588dae384db00ccc54856f2989d27e9691e Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Sun, 1 Jan 2023 15:28:42 -0600 Subject: [PATCH 14/15] Updates to README --- README.md | 48 +++++++++--------------------------------------- 1 file changed, 9 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 791c60c..ea3fe88 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ # ZGo Payment Gateway plugin for Woocommerce -ZGo's payment processing solution for WooCommerce. This plugin implements a payment gateway to let buyers pay with Zcash +ZGo's payment processing solution for WooCommerce. This plugin implements a payment gateway that allows WooCommerce sellers to accept Zcash as payment while using their existing shop setup. -## Description - -To Do +Payments are sent directly to the seller's Zcash wallet, using shielded transactions. ## System Requirements @@ -15,43 +13,15 @@ To Do ## Installation -1. Get your ZGo's OwnerID and Token for Woocommerce from your ZGo Shop Account -2. Download the `zgopmtggwy` installation package from Gitlab??? `/wp-content/plugins/` directory. -3. In WooCommerce Settings page go to the Payment Gateways tab, then click on "ZGo Payment", you will be redirected to ZGo Payment Settings page -4. Fill the ZGo OwnerId and ZGo Token fields -5. Click "Save changes" and return to WooCommerce Payments Tab +1. Get your ZGo's OwnerID and Token for WooCommerce from your [ZGo shop settings](https://app.zgo.cash/). +2. Download the latest `zgopmtgwy` installation package from the [Releases](https://git.vergara.tech/Vergara_Tech/ZGoPmtGwy/releases) page, the package signature and verify it. +3. In the WooCommerce Settings page, go to the Plugins tab and click on `Add New`. Click the `Upload Plugin` button and upload the verified ZIP file. You will be redirected to the list of available plugins, now listing the ZGo Payment Gateway. Click on the `Activate` link to enable the plugin. +3. In the WooCommerce Settings page, go to the Payment Gateways tab, then click on "ZGo Payment", you will be redirected to ZGo Payment Settings page. +4. Fill the ZGo OwnerId and ZGo Token fields. +5. Click "Save changes" and return to WooCommerce Payments Tab. 6. Check "Enable" button. The credentials will be verified and the plugin will be activated if they are confirmed. -## Usage - -To Do - ## Support -To Do +- [ZGo User Support Chat](https://matrix.to/#/#zgo-support:vergara.tech) -## Roadmap - - -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment - -To Do - -## License - -License: GPLv2 -License URI: http://www.gnu.org/licenses/gpl-2.0.html - - -## Project status - -Development From 0e4ef77eb93f9ee8c2101b5e1f8be16db83e7de7 Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Sun, 1 Jan 2023 15:34:00 -0600 Subject: [PATCH 15/15] Clean up package --- installation.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 installation.md diff --git a/installation.md b/installation.md deleted file mode 100644 index e69de29..0000000
+ background-color: #ff5722; + color: white;"> ZGo Order Id Shop Order Id Customer