meraproject/vendor/yoomoney/yookassa-sdk-php/lib/Common/AbstractPaymentRequest.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

238 lines
8.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* The MIT License
*
* Copyright (c) 2023 "YooMoney", NBСO LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace YooKassa\Common;
use YooKassa\Common\Exceptions\InvalidPropertyValueTypeException;
use YooKassa\Model\AmountInterface;
use YooKassa\Model\Deal\PaymentDealInfo;
use YooKassa\Model\Receipt;
use YooKassa\Model\ReceiptInterface;
use YooKassa\Model\Transfer;
use YooKassa\Model\TransferInterface;
/**
* Класс объекта запроса к API
*
* @property AmountInterface $amount Сумма
* @property ReceiptInterface $receipt Данные фискального чека 54-ФЗ
* @property TransferInterface[] $transfers Данные о распределении платежа между магазинами
*
* @since 1.0.18
*/
class AbstractPaymentRequest extends AbstractRequest
{
/**
* @var AmountInterface Сумма оплаты
*/
private $_amount;
/**
* @var Receipt Данные фискального чека 54-ФЗ
*/
private $_receipt;
/**
* @var TransferInterface[]
*/
private $_transfers = array();
/**
* Возвращает сумму оплаты
* @return AmountInterface Сумма оплаты
*/
public function getAmount()
{
return $this->_amount;
}
/**
* Проверяет, была ли установлена сумма оплаты
* @return bool True если сумма оплаты была установлена, false если нет
*/
public function hasAmount()
{
return !empty($this->_amount);
}
/**
* Устанавливает сумму оплаты
* @param AmountInterface $value Сумма оплаты
*/
public function setAmount(AmountInterface $value)
{
$this->_amount = $value;
}
/**
* Возвращает чек, если он есть
* @return ReceiptInterface|null Данные фискального чека 54-ФЗ или null, если чека нет
*/
public function getReceipt()
{
return $this->_receipt;
}
/**
* Устанавливает чек
* @param ReceiptInterface|null $value Инстанс чека или null для удаления информации о чеке
* @throws InvalidPropertyValueTypeException Выбрасывается если передан не инстанс класса чека и не null
*/
public function setReceipt($value)
{
if ($value === null || $value instanceof ReceiptInterface) {
$this->_receipt = $value;
} else {
throw new InvalidPropertyValueTypeException('Invalid receipt in Refund', 0, 'Refund.receipt', $value);
}
}
/**
* Проверяет наличие чека
* @return bool True если чек есть, false если нет
*/
public function hasReceipt()
{
return $this->_receipt !== null && $this->_receipt->notEmpty();
}
/**
* Удаляет чек из запроса
*/
public function removeReceipt()
{
$this->_receipt = null;
}
/**
* Проверяет наличие данных о распределении денег
* @return bool
*/
public function hasTransfers()
{
return !empty($this->_transfers);
}
/**
* Возвращает данные о распределении денег — сколько и в какой магазин нужно перевести.
* Присутствует, если вы используете решение ЮKassa для платформ.
* (https://yookassa.ru/developers/special-solutions/checkout-for-platforms/basics)
*
* @return TransferInterface[] Данные о распределении денег
*/
public function getTransfers()
{
return $this->_transfers;
}
/**
* Устанавливает transfers (массив распределения денег между магазинами)
* @param TransferInterface[]|array|null $value
*/
public function setTransfers($value)
{
if ($value === null || is_array($value)) {
if (is_array($value)) {
$transfers = array();
foreach ($value as $item) {
if (is_array($item)) {
$item = new Transfer($item);
}
if (!($item instanceof TransferInterface)) {
$message = 'Transfers must be an array of TransferInterface';
throw new InvalidPropertyValueTypeException($message, 0, 'Payment.transfers', $value);
}
$transfers[] = $item;
}
$this->_transfers = $transfers;
} else {
$this->_transfers = $value;
}
} else {
$message = 'Transfers must be an array of TransferInterface';
throw new InvalidPropertyValueTypeException($message, 0, 'Payment.transfers', $value);
}
}
/**
* Валидирует объект запроса
* @return bool True если запрос валиден и его можно отправить в API, false если нет
*/
public function validate()
{
if ($this->_amount === null) {
$this->setValidationError('Payment amount not specified');
return false;
}
$value = $this->_amount->getValue();
if (empty($value) || $value <= 0.0) {
$this->setValidationError('Invalid payment amount value: ' . $value);
return false;
}
if (!empty($this->_transfers)) {
$sum = 0;
foreach ($this->_transfers as $transfer) {
if ($transfer->getAmount() === null) {
$this->setValidationError('Payment amount not specified');
return false;
}
$value = $transfer->getAmount()->getValue();
if (empty($value) || $value <= 0.0) {
$this->setValidationError('Invalid transfer amount value: ' . $value);
return false;
}
$sum += (float) $value;
$accountId = $transfer->getAccountId();
if (empty($accountId)) {
$this->setValidationError('Transfer account id not specified');
return false;
}
}
if ($sum !== (float) $this->getAmount()->getValue()) {
$this->setValidationError('Transfer amount sum does not match top-level amount');
}
}
if ($this->getReceipt() && $this->getReceipt()->notEmpty()) {
$email = $this->getReceipt()->getCustomer()->getEmail();
$phone = $this->getReceipt()->getCustomer()->getPhone();
if (empty($email) && empty($phone)) {
$this->setValidationError('Both email and phone values are empty in receipt');
return false;
}
}
return true;
}
}