2020-06-28 21:44:35 -05:00
|
|
|
using System;
|
2019-01-14 22:43:29 +01:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
2020-07-24 09:40:37 +02:00
|
|
|
using BTCPayServer.Client.Models;
|
2019-08-30 00:24:42 +09:00
|
|
|
using BTCPayServer.Data;
|
2019-01-14 22:43:29 +01:00
|
|
|
using BTCPayServer.Models.PaymentRequestViewModels;
|
2019-05-29 14:33:31 +00:00
|
|
|
using BTCPayServer.Payments;
|
2019-01-14 22:43:29 +01:00
|
|
|
using BTCPayServer.Services.Apps;
|
|
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
using BTCPayServer.Services.PaymentRequests;
|
|
|
|
using BTCPayServer.Services.Rates;
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2020-07-24 09:40:37 +02:00
|
|
|
using PaymentRequestData = BTCPayServer.Data.PaymentRequestData;
|
2019-01-14 22:43:29 +01:00
|
|
|
|
|
|
|
namespace BTCPayServer.PaymentRequest
|
|
|
|
{
|
|
|
|
public class PaymentRequestService
|
|
|
|
{
|
|
|
|
private readonly PaymentRequestRepository _PaymentRequestRepository;
|
|
|
|
private readonly BTCPayNetworkProvider _BtcPayNetworkProvider;
|
|
|
|
private readonly AppService _AppService;
|
|
|
|
private readonly CurrencyNameTable _currencies;
|
|
|
|
|
2019-02-22 11:37:45 +01:00
|
|
|
public PaymentRequestService(
|
2019-01-14 22:43:29 +01:00
|
|
|
PaymentRequestRepository paymentRequestRepository,
|
|
|
|
BTCPayNetworkProvider btcPayNetworkProvider,
|
|
|
|
AppService appService,
|
|
|
|
CurrencyNameTable currencies)
|
|
|
|
{
|
|
|
|
_PaymentRequestRepository = paymentRequestRepository;
|
|
|
|
_BtcPayNetworkProvider = btcPayNetworkProvider;
|
|
|
|
_AppService = appService;
|
|
|
|
_currencies = currencies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task UpdatePaymentRequestStateIfNeeded(string id)
|
|
|
|
{
|
|
|
|
var pr = await _PaymentRequestRepository.FindPaymentRequest(id, null);
|
|
|
|
await UpdatePaymentRequestStateIfNeeded(pr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task UpdatePaymentRequestStateIfNeeded(PaymentRequestData pr)
|
|
|
|
{
|
|
|
|
var blob = pr.GetBlob();
|
|
|
|
var currentStatus = pr.Status;
|
|
|
|
if (blob.ExpiryDate.HasValue)
|
|
|
|
{
|
|
|
|
if (blob.ExpiryDate.Value <= DateTimeOffset.UtcNow)
|
2020-05-19 19:59:23 +02:00
|
|
|
currentStatus = Client.Models.PaymentRequestData.PaymentRequestStatus.Expired;
|
2019-01-14 22:43:29 +01:00
|
|
|
}
|
2021-08-31 08:07:54 +02:00
|
|
|
else if (currentStatus != Client.Models.PaymentRequestData.PaymentRequestStatus.Completed)
|
|
|
|
{
|
|
|
|
currentStatus = Client.Models.PaymentRequestData.PaymentRequestStatus.Pending;
|
|
|
|
}
|
2020-06-28 17:55:27 +09:00
|
|
|
|
2021-07-28 15:38:26 +02:00
|
|
|
if (currentStatus != Client.Models.PaymentRequestData.PaymentRequestStatus.Expired)
|
2019-01-14 22:43:29 +01:00
|
|
|
{
|
|
|
|
var invoices = await _PaymentRequestRepository.GetInvoicesForPaymentRequest(pr.Id);
|
2019-03-05 14:26:27 +09:00
|
|
|
var contributions = _AppService.GetContributionsByPaymentMethodId(blob.Currency, invoices, true);
|
2021-07-28 15:38:26 +02:00
|
|
|
|
|
|
|
currentStatus = contributions.TotalCurrency >= blob.Amount
|
|
|
|
? Client.Models.PaymentRequestData.PaymentRequestStatus.Completed
|
|
|
|
: Client.Models.PaymentRequestData.PaymentRequestStatus.Pending;
|
2019-01-14 22:43:29 +01:00
|
|
|
}
|
2019-02-22 11:37:45 +01:00
|
|
|
|
2019-02-24 09:26:37 +01:00
|
|
|
if (currentStatus != pr.Status)
|
2019-01-14 22:43:29 +01:00
|
|
|
{
|
|
|
|
pr.Status = currentStatus;
|
|
|
|
await _PaymentRequestRepository.UpdatePaymentRequestStatus(pr.Id, currentStatus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<ViewPaymentRequestViewModel> GetPaymentRequest(string id, string userId = null)
|
|
|
|
{
|
|
|
|
var pr = await _PaymentRequestRepository.FindPaymentRequest(id, null);
|
|
|
|
if (pr == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var blob = pr.GetBlob();
|
|
|
|
|
|
|
|
var invoices = await _PaymentRequestRepository.GetInvoicesForPaymentRequest(id);
|
|
|
|
|
2019-03-05 14:26:27 +09:00
|
|
|
var paymentStats = _AppService.GetContributionsByPaymentMethodId(blob.Currency, invoices, true);
|
2019-03-05 13:54:34 +09:00
|
|
|
var amountDue = blob.Amount - paymentStats.TotalCurrency;
|
2020-08-04 07:55:13 +02:00
|
|
|
var pendingInvoice = invoices.OrderByDescending(entity => entity.InvoiceTime)
|
2020-11-23 15:57:05 +09:00
|
|
|
.FirstOrDefault(entity => entity.Status == InvoiceStatusLegacy.New);
|
2019-01-14 22:43:29 +01:00
|
|
|
|
|
|
|
return new ViewPaymentRequestViewModel(pr)
|
|
|
|
{
|
2020-05-08 12:33:47 +02:00
|
|
|
Archived = pr.Archived,
|
2019-01-14 22:43:29 +01:00
|
|
|
AmountFormatted = _currencies.FormatCurrency(blob.Amount, blob.Currency),
|
2019-03-05 13:54:34 +09:00
|
|
|
AmountCollected = paymentStats.TotalCurrency,
|
|
|
|
AmountCollectedFormatted = _currencies.FormatCurrency(paymentStats.TotalCurrency, blob.Currency),
|
2019-01-14 22:43:29 +01:00
|
|
|
AmountDue = amountDue,
|
|
|
|
AmountDueFormatted = _currencies.FormatCurrency(amountDue, blob.Currency),
|
|
|
|
CurrencyData = _currencies.GetCurrencyData(blob.Currency, true),
|
2021-12-17 15:31:06 +09:00
|
|
|
LastUpdated = DateTime.UtcNow,
|
2019-05-07 08:26:40 +00:00
|
|
|
AnyPendingInvoice = pendingInvoice != null,
|
2020-06-28 17:55:27 +09:00
|
|
|
PendingInvoiceHasPayments = pendingInvoice != null &&
|
2019-05-07 08:26:40 +00:00
|
|
|
pendingInvoice.ExceptionStatus != InvoiceExceptionStatus.None,
|
2020-10-23 10:37:28 +02:00
|
|
|
Invoices = invoices.Select(entity =>
|
2019-01-14 22:43:29 +01:00
|
|
|
{
|
2020-10-23 10:37:28 +02:00
|
|
|
var state = entity.GetInvoiceState();
|
2021-08-04 09:13:33 +02:00
|
|
|
var payments = entity
|
|
|
|
.GetPayments(true)
|
|
|
|
.Select(paymentEntity =>
|
|
|
|
{
|
|
|
|
var paymentData = paymentEntity.GetCryptoPaymentData();
|
|
|
|
var paymentMethodId = paymentEntity.GetPaymentMethodId();
|
|
|
|
if (paymentData is null || paymentMethodId is null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
string txId = paymentData.GetPaymentId();
|
|
|
|
string link = GetTransactionLink(paymentMethodId, txId);
|
|
|
|
var paymentMethod = entity.GetPaymentMethod(paymentMethodId);
|
|
|
|
var amount = paymentData.GetValue();
|
|
|
|
var rate = paymentMethod.Rate;
|
|
|
|
var paid = (amount - paymentEntity.NetworkFee) * rate;
|
|
|
|
|
|
|
|
return new ViewPaymentRequestViewModel.PaymentRequestInvoicePayment
|
|
|
|
{
|
|
|
|
Amount = amount,
|
|
|
|
Paid = paid,
|
|
|
|
ReceivedDate = paymentEntity.ReceivedTime.DateTime,
|
|
|
|
PaidFormatted = _currencies.FormatCurrency(paid, blob.Currency),
|
|
|
|
RateFormatted = _currencies.FormatCurrency(rate, blob.Currency),
|
|
|
|
PaymentMethod = paymentMethodId.ToPrettyString(),
|
|
|
|
Link = link,
|
|
|
|
Id = txId,
|
|
|
|
Destination = paymentData.GetDestination()
|
|
|
|
};
|
|
|
|
})
|
|
|
|
.Where(payment => payment != null)
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
if (state.Status == InvoiceStatusLegacy.Invalid ||
|
|
|
|
state.Status == InvoiceStatusLegacy.Expired && !payments.Any())
|
|
|
|
return null;
|
2021-12-31 16:59:02 +09:00
|
|
|
|
2020-10-23 10:37:28 +02:00
|
|
|
return new ViewPaymentRequestViewModel.PaymentRequestInvoice
|
2019-01-14 22:43:29 +01:00
|
|
|
{
|
2020-10-23 10:37:28 +02:00
|
|
|
Id = entity.Id,
|
|
|
|
Amount = entity.Price,
|
|
|
|
AmountFormatted = _currencies.FormatCurrency(entity.Price, blob.Currency),
|
|
|
|
Currency = entity.Currency,
|
|
|
|
ExpiryDate = entity.ExpirationTime.DateTime,
|
|
|
|
State = state,
|
2020-10-23 21:00:23 +09:00
|
|
|
StateFormatted = state.ToString(),
|
2021-08-04 09:13:33 +02:00
|
|
|
Payments = payments
|
2020-10-23 10:37:28 +02:00
|
|
|
};
|
2021-08-04 09:13:33 +02:00
|
|
|
})
|
|
|
|
.Where(invoice => invoice != null)
|
|
|
|
.ToList()
|
2019-01-14 22:43:29 +01:00
|
|
|
};
|
|
|
|
}
|
2019-06-04 09:52:06 +09:00
|
|
|
|
|
|
|
private string GetTransactionLink(PaymentMethodId paymentMethodId, string txId)
|
|
|
|
{
|
|
|
|
var network = _BtcPayNetworkProvider.GetNetwork(paymentMethodId.CryptoCode);
|
2019-06-04 09:55:45 +09:00
|
|
|
if (network == null)
|
|
|
|
return null;
|
|
|
|
return paymentMethodId.PaymentType.GetTransactionLink(network, txId);
|
2019-06-04 09:52:06 +09:00
|
|
|
}
|
2019-01-14 22:43:29 +01:00
|
|
|
}
|
|
|
|
}
|