First upload

This commit is contained in:
Nikolai Fesenko
2025-02-02 13:37:56 +01:00
commit 8d227c9191
3281 changed files with 362319 additions and 0 deletions

View File

@@ -0,0 +1,112 @@
<?php
/**
* This file is part of O3-Shop Paypal module.
*
* O3-Shop is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* O3-Shop is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
*
* @copyright Copyright (c) 2022 OXID eSales AG (https://www.oxid-esales.com)
* @copyright Copyright (c) 2022 O3-Shop (https://www.o3-shop.com)
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
*/
namespace OxidEsales\PayPalModule\Model\DbGateways;
/**
* Order payment comment db gateway class.
*/
class OrderPaymentCommentDbGateway extends \OxidEsales\PayPalModule\Core\ModelDbGateway
{
/**
* Save PayPal order payment comment data to database.
*
* @param array $data
*
* @return bool
*/
public function save($data)
{
$db = $this->getDb();
foreach ($data as $field => $value) {
$fields[] = '`' . $field . '` = ' . $db->quote($value);
}
$query = 'INSERT INTO `oepaypal_orderpaymentcomments` SET ';
$query .= implode(', ', $fields);
$query .= ' ON DUPLICATE KEY UPDATE ';
$query .= ' `oepaypal_commentid`=LAST_INSERT_ID(`oepaypal_commentid`), ';
$query .= implode(', ', $fields);
$db->execute($query);
$commentId = $data['oepaypal_commentid'];
if (empty($commentId)) {
$commentId = $db->getOne('SELECT LAST_INSERT_ID()');
}
return $commentId;
}
/**
* Load PayPal order payment comment data from Db.
*
* @param string $paymentId order id
*
* @return array
*/
public function getList($paymentId)
{
$db = $this->getDb();
$data = $db->getAll('SELECT * FROM `oepaypal_orderpaymentcomments` WHERE `oepaypal_paymentid` = ' . $db->quote($paymentId) . ' ORDER BY `oepaypal_date` DESC');
return $data;
}
/**
* Load PayPal order payment comment data from Db.
*
* @param string $commentId Order id.
*
* @return array
*/
public function load($commentId)
{
$db = $this->getDb();
$data = $db->getRow('SELECT * FROM `oepaypal_orderpaymentcomments` WHERE `oepaypal_commentid` = ' . $db->quote($commentId));
return $data;
}
/**
* Delete PayPal order payment comment data from database.
*
* @param string $commentId Order id.
*
* @return bool
*/
public function delete($commentId)
{
$db = $this->getDb();
$db->startTransaction();
$deleteResult = $db->execute('DELETE FROM `oepaypal_orderpaymentcomments` WHERE `oepaypal_commentid` = ' . $db->quote($commentId));
$result = ($deleteResult !== false);
if ($result) {
$db->commitTransaction();
} else {
$db->rollbackTransaction();
}
return $result;
}
}

View File

@@ -0,0 +1,129 @@
<?php
/**
* This file is part of O3-Shop Paypal module.
*
* O3-Shop is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* O3-Shop is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
*
* @copyright Copyright (c) 2022 OXID eSales AG (https://www.oxid-esales.com)
* @copyright Copyright (c) 2022 O3-Shop (https://www.o3-shop.com)
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
*/
namespace OxidEsales\PayPalModule\Model\DbGateways;
/**
* Order payment db gateway class
*/
class OrderPaymentDbGateway extends \OxidEsales\PayPalModule\Core\ModelDbGateway
{
/**
* Save PayPal order payment data to database.
*
* @param array $data
*
* @return int
*/
public function save($data)
{
$db = $this->getDb();
foreach ($data as $field => $value) {
$fields[] = '`' . $field . '` = ' . $db->quote($value);
}
$query = 'INSERT INTO `oepaypal_orderpayments` SET ';
$query .= implode(', ', $fields);
$query .= ' ON DUPLICATE KEY UPDATE ';
$query .= ' `oepaypal_paymentid`=LAST_INSERT_ID(`oepaypal_paymentid`), ';
$query .= implode(', ', $fields);
$db->execute($query);
$id = $data['oepaypal_paymentid'];
if (empty($id)) {
$id = $db->getOne('SELECT LAST_INSERT_ID()');
}
return $id;
}
/**
* Load PayPal order payment data from Db.
*
* @param string $paymentId Order id.
*
* @return array
*/
public function load($paymentId)
{
$db = $this->getDb();
$data = $db->getRow('SELECT * FROM `oepaypal_orderpayments` WHERE `oepaypal_paymentid` = ' . $db->quote($paymentId));
return $data;
}
/**
* Load PayPal order payment data from Db.
*
* @param string $transactionId Order id.
*
* @return array
*/
public function loadByTransactionId($transactionId)
{
$db = $this->getDb();
$data = $db->getRow('SELECT * FROM `oepaypal_orderpayments` WHERE `oepaypal_transactionid` = ' . $db->quote($transactionId));
return $data;
}
/**
* Delete PayPal order payment data from database.
*
* @param string $paymentId Order id.
*
* @return bool
*/
public function delete($paymentId)
{
$db = $this->getDb();
$db->startTransaction();
$deleteResult = $db->execute('DELETE FROM `oepaypal_orderpayments` WHERE `oepaypal_paymentid` = ' . $db->quote($paymentId));
$deleteCommentResult = $db->execute('DELETE FROM `oepaypal_orderpaymentcomments` WHERE `oepaypal_paymentid` = ' . $db->quote($paymentId));
$result = ($deleteResult !== false) || ($deleteCommentResult !== false);
if ($result) {
$db->commitTransaction();
} else {
$db->rollbackTransaction();
}
return $result;
}
/**
* Load PayPal order payment data from Db.
*
* @param string $orderId Order id.
*
* @return array
*/
public function getList($orderId)
{
$db = $this->getDb();
$data = $db->getAll('SELECT * FROM `oepaypal_orderpayments` WHERE `oepaypal_orderid` = ' . $db->quote($orderId) . ' ORDER BY `oepaypal_date` DESC');
return $data;
}
}

View File

@@ -0,0 +1,107 @@
<?php
/**
* This file is part of O3-Shop Paypal module.
*
* O3-Shop is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* O3-Shop is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
*
* @copyright Copyright (c) 2022 OXID eSales AG (https://www.oxid-esales.com)
* @copyright Copyright (c) 2022 O3-Shop (https://www.o3-shop.com)
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
*/
namespace OxidEsales\PayPalModule\Model\DbGateways;
/**
* Order db gateway class
*/
class PayPalOrderDbGateway extends \OxidEsales\PayPalModule\Core\ModelDbGateway
{
/**
* Save PayPal order data to database.
*
* @param array $data
*
* @return bool
*/
public function save($data)
{
$db = $this->getDb();
$fields = [];
foreach ($data as $field => $value) {
$fields[] = '`' . $field . '` = ' . $db->quote($value);
}
$query = 'INSERT INTO `oepaypal_order` SET ';
$query .= implode(', ', $fields);
$query .= ' ON DUPLICATE KEY UPDATE ';
$query .= ' `oepaypal_orderid`=LAST_INSERT_ID(`oepaypal_orderid`), ';
$query .= implode(', ', $fields);
$db->execute($query);
$id = $data['oepaypal_orderid'];
if (empty($id)) {
$id = $db->getOne('SELECT LAST_INSERT_ID()');
}
return $id;
}
/**
* Load PayPal order data from Db.
*
* @param string $orderId Order id.
*
* @return array
*/
public function load($orderId)
{
$db = $this->getDb();
$data = $db->getRow('SELECT * FROM `oepaypal_order` WHERE `oepaypal_orderid` = ' . $db->quote($orderId));
return $data;
}
/**
* Delete PayPal order data from database.
*
* @param string $orderId Order id.
*
* @return bool
*/
public function delete($orderId)
{
$db = $this->getDb();
$db->startTransaction();
$deleteCommentsResult = $db->execute(
'DELETE
`oepaypal_orderpaymentcomments`
FROM `oepaypal_orderpaymentcomments`
INNER JOIN `oepaypal_orderpayments` ON `oepaypal_orderpayments`.`oepaypal_paymentid` = `oepaypal_orderpaymentcomments`.`oepaypal_paymentid`
WHERE `oepaypal_orderpayments`.`oepaypal_orderid` = ' . $db->quote($orderId)
);
$deleteOrderPaymentResult = $db->execute('DELETE FROM `oepaypal_orderpayments` WHERE `oepaypal_orderid` = ' . $db->quote($orderId));
$deleteOrderResult = $db->execute('DELETE FROM `oepaypal_order` WHERE `oepaypal_orderid` = ' . $db->quote($orderId));
$result = ($deleteOrderResult !== false) || ($deleteOrderPaymentResult !== false) || ($deleteCommentsResult !== false);
if ($result) {
$db->commitTransaction();
} else {
$db->rollbackTransaction();
}
return $result;
}
}