159 lines
5.6 KiB
Dart
159 lines
5.6 KiB
Dart
import 'package:pshared/controllers/balance_mask/wallets.dart';
|
|
import 'package:pshared/models/payment/asset.dart';
|
|
import 'package:pshared/models/payment/chain_network.dart';
|
|
import 'package:pshared/models/payment/currency_pair.dart';
|
|
import 'package:pshared/models/payment/customer.dart';
|
|
import 'package:pshared/models/payment/fx/intent.dart';
|
|
import 'package:pshared/models/payment/fx/side.dart';
|
|
import 'package:pshared/models/payment/kind.dart';
|
|
import 'package:pshared/models/payment/methods/card.dart';
|
|
import 'package:pshared/models/payment/methods/data.dart';
|
|
import 'package:pshared/models/payment/methods/iban.dart';
|
|
import 'package:pshared/models/payment/methods/managed_wallet.dart';
|
|
import 'package:pshared/models/payment/methods/russian_bank.dart';
|
|
import 'package:pshared/models/payment/methods/type.dart';
|
|
import 'package:pshared/models/money.dart';
|
|
import 'package:pshared/models/payment/settlement_mode.dart';
|
|
import 'package:pshared/models/payment/intent.dart';
|
|
import 'package:pshared/models/recipient/recipient.dart';
|
|
import 'package:pshared/provider/payment/amount.dart';
|
|
import 'package:pshared/provider/payment/flow.dart';
|
|
import 'package:pshared/provider/recipient/provider.dart';
|
|
import 'package:pshared/utils/currency.dart';
|
|
|
|
|
|
class QuotationIntentBuilder {
|
|
PaymentIntent? build({
|
|
required PaymentAmountProvider payment,
|
|
required WalletsController wallets,
|
|
required PaymentFlowProvider flow,
|
|
required RecipientsProvider recipients,
|
|
}) {
|
|
final selectedWallet = wallets.selectedWallet;
|
|
final paymentData = flow.selectedPaymentData;
|
|
final selectedMethod = flow.selectedMethod;
|
|
if (selectedWallet == null || paymentData == null) return null;
|
|
|
|
final customer = _buildCustomer(
|
|
recipient: recipients.currentObject,
|
|
method: selectedMethod,
|
|
data: paymentData,
|
|
);
|
|
final amount = Money(
|
|
amount: payment.amount.toString(),
|
|
// TODO: adapt to possible other sources
|
|
currency: currencyCodeToString(selectedWallet.currency),
|
|
);
|
|
final fxIntent = FxIntent(
|
|
pair: CurrencyPair(
|
|
base: currencyCodeToString(selectedWallet.currency),
|
|
quote: 'RUB', // TODO: exentd target currencies
|
|
),
|
|
side: FxSide.sellBaseBuyQuote,
|
|
);
|
|
return PaymentIntent(
|
|
kind: PaymentKind.payout,
|
|
amount: amount,
|
|
destination: paymentData,
|
|
source: ManagedWalletPaymentMethod(
|
|
managedWalletRef: selectedWallet.id,
|
|
asset: PaymentAsset(
|
|
tokenSymbol: selectedWallet.tokenSymbol ?? '',
|
|
chain: selectedWallet.network ?? ChainNetwork.unspecified,
|
|
)
|
|
),
|
|
fx: fxIntent,
|
|
settlementMode: payment.payerCoversFee ? SettlementMode.fixReceived : SettlementMode.fixSource,
|
|
settlementCurrency: _resolveSettlementCurrency(amount: amount, fx: fxIntent),
|
|
customer: customer,
|
|
);
|
|
}
|
|
|
|
String _resolveSettlementCurrency({
|
|
required Money amount,
|
|
required FxIntent? fx,
|
|
}) {
|
|
final pair = fx?.pair;
|
|
if (pair != null) {
|
|
switch (fx?.side ?? FxSide.unspecified) {
|
|
case FxSide.buyBaseSellQuote:
|
|
if (pair.base.isNotEmpty) return pair.base;
|
|
break;
|
|
case FxSide.sellBaseBuyQuote:
|
|
if (pair.quote.isNotEmpty) return pair.quote;
|
|
break;
|
|
case FxSide.unspecified:
|
|
break;
|
|
}
|
|
if (amount.currency == pair.base && pair.quote.isNotEmpty) return pair.quote;
|
|
if (amount.currency == pair.quote && pair.base.isNotEmpty) return pair.base;
|
|
if (pair.quote.isNotEmpty) return pair.quote;
|
|
if (pair.base.isNotEmpty) return pair.base;
|
|
}
|
|
return amount.currency;
|
|
}
|
|
|
|
Customer? _buildCustomer({
|
|
required Recipient? recipient,
|
|
required PaymentMethod? method,
|
|
required PaymentMethodData? data,
|
|
}) {
|
|
final id = recipient?.id ?? method?.recipientRef;
|
|
if (id == null || id.isEmpty) return null;
|
|
|
|
final name = _resolveCustomerName(
|
|
method: method,
|
|
data: data,
|
|
recipient: recipient,
|
|
);
|
|
final parts = name == null || name.trim().isEmpty
|
|
? const <String>[]
|
|
: name.trim().split(RegExp(r'\s+'));
|
|
final firstName = parts.isNotEmpty ? parts.first : null;
|
|
final lastName = parts.length >= 2 ? parts.last : null;
|
|
final middleName =
|
|
parts.length > 2 ? parts.sublist(1, parts.length - 1).join(' ') : null;
|
|
|
|
return Customer(
|
|
id: id,
|
|
firstName: firstName,
|
|
middleName: middleName,
|
|
lastName: lastName,
|
|
country: _resolveCustomerCountry(method: method, data: data),
|
|
);
|
|
}
|
|
|
|
String? _resolveCustomerName({
|
|
required PaymentMethod? method,
|
|
required PaymentMethodData? data,
|
|
required Recipient? recipient,
|
|
}) {
|
|
final card = method?.cardData ?? (data is CardPaymentMethod ? data : null);
|
|
if (card != null) {
|
|
final fullName = '${card.firstName} ${card.lastName}'.trim();
|
|
if (fullName.isNotEmpty) return fullName;
|
|
}
|
|
|
|
final iban = method?.ibanData ?? (data is IbanPaymentMethod ? data : null);
|
|
if (iban != null && iban.accountHolder.trim().isNotEmpty) {
|
|
return iban.accountHolder.trim();
|
|
}
|
|
|
|
final bank = method?.bankAccountData ?? (data is RussianBankAccountPaymentMethod ? data : null);
|
|
if (bank != null && bank.recipientName.trim().isNotEmpty) {
|
|
return bank.recipientName.trim();
|
|
}
|
|
|
|
final recipientName = recipient?.name.trim();
|
|
return recipientName?.isNotEmpty == true ? recipientName : null;
|
|
}
|
|
|
|
String? _resolveCustomerCountry({
|
|
required PaymentMethod? method,
|
|
required PaymentMethodData? data,
|
|
}) {
|
|
final card = method?.cardData ?? (data is CardPaymentMethod ? data : null);
|
|
return card?.country;
|
|
}
|
|
}
|