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,135 @@
<?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)
*/
declare(strict_types=1);
namespace OxidEsales\PayPalModule\GraphQL\Controller;
use OxidEsales\GraphQL\Storefront\Basket\Service\Basket as StorefrontBasketService;
use OxidEsales\PayPalModule\GraphQL\DataType\PayPalCommunicationInformation;
use OxidEsales\PayPalModule\GraphQL\DataType\PayPalTokenStatus;
use OxidEsales\PayPalModule\GraphQL\Exception\GraphQLServiceNotFound;
use OxidEsales\PayPalModule\GraphQL\Service\Basket as BasketService;
use OxidEsales\PayPalModule\GraphQL\Service\Payment as PaymentService;
use TheCodingMachine\GraphQLite\Annotations\Logged;
use TheCodingMachine\GraphQLite\Annotations\Query;
use TheCodingMachine\GraphQLite\Annotations\Right;
use TheCodingMachine\GraphQLite\Types\ID;
final class Payment
{
/** @var PaymentService */
private $paymentService;
/** @var BasketService */
private $basketService;
/** @var StorefrontBasketService */
private $storefrontBasketService;
public function __construct(
PaymentService $paymentService,
BasketService $basketService,
StorefrontBasketService $storefrontBasketService = null
) {
$this->paymentService = $paymentService;
$this->basketService = $basketService;
$this->storefrontBasketService = $storefrontBasketService;
}
/**
* @Query
* @Logged()
*/
public function paypalApprovalProcess(
ID $basketId,
string $returnUrl,
string $cancelUrl,
bool $displayBasketInPayPal
): PayPalCommunicationInformation {
$this->validateState();
$basket = $this->storefrontBasketService->getAuthenticatedCustomerBasket($basketId);
// validate if basket payment method is correct
$this->basketService->validateBasketPaymentMethod($basket);
$communicationInformation = $this->paymentService->getPayPalCommunicationInformation(
$basket,
$returnUrl,
$cancelUrl,
$displayBasketInPayPal
);
$this->basketService->updateBasketToken($basket, $communicationInformation->getToken());
return $communicationInformation;
}
/**
* @Query
* @Right("PAYPAL_EXPRESS_APPROVAL")
*/
public function paypalExpressApprovalProcess(
ID $basketId,
string $returnUrl,
string $cancelUrl,
bool $displayBasketInPayPal
): PayPalCommunicationInformation
{
$this->validateState();
$basket = $this->storefrontBasketService->getAuthenticatedCustomerBasket($basketId);
// validate if pp express payment is available
$this->basketService->validateBasketExpressPaymentMethod();
$communicationInformation = $this->paymentService->getPayPalExpressCommunicationInformation(
$basket,
$returnUrl,
$cancelUrl,
$displayBasketInPayPal
);
$this->basketService->updateExpressBasketInformation(
$basket,
$communicationInformation->getToken()
);
return $communicationInformation;
}
/**
* @Query()
* @Right("PAYPAL_TOKEN_STATUS")
*/
public function paypalTokenStatus(string $paypalToken): PayPalTokenStatus
{
return $this->paymentService->getPayPalTokenStatus($paypalToken);
}
protected function validateState(): void
{
if (is_null($this->storefrontBasketService)) {
throw GraphQLServiceNotFound::byServiceName(StorefrontBasketService::class);
}
}
}