mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
186 lines
6.8 KiB
C#
186 lines
6.8 KiB
C#
using Bit.Billing.Models;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using System;
|
|
using System.Data.SqlClient;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Billing.Controllers
|
|
{
|
|
[Route("bitpay")]
|
|
public class BitPayController : Controller
|
|
{
|
|
private readonly BillingSettings _billingSettings;
|
|
private readonly BitPayClient _bitPayClient;
|
|
private readonly ITransactionRepository _transactionRepository;
|
|
private readonly IOrganizationRepository _organizationRepository;
|
|
private readonly IUserRepository _userRepository;
|
|
private readonly IMailService _mailService;
|
|
private readonly IPaymentService _paymentService;
|
|
private readonly ILogger<BitPayController> _logger;
|
|
|
|
public BitPayController(
|
|
IOptions<BillingSettings> billingSettings,
|
|
BitPayClient bitPayClient,
|
|
ITransactionRepository transactionRepository,
|
|
IOrganizationRepository organizationRepository,
|
|
IUserRepository userRepository,
|
|
IMailService mailService,
|
|
IPaymentService paymentService,
|
|
ILogger<BitPayController> logger)
|
|
{
|
|
_billingSettings = billingSettings?.Value;
|
|
_bitPayClient = bitPayClient;
|
|
_transactionRepository = transactionRepository;
|
|
_organizationRepository = organizationRepository;
|
|
_userRepository = userRepository;
|
|
_mailService = mailService;
|
|
_paymentService = paymentService;
|
|
_logger = logger;
|
|
}
|
|
|
|
[HttpPost("ipn")]
|
|
public async Task<IActionResult> PostIpn([FromBody] BitPayEventModel model, [FromQuery] string key)
|
|
{
|
|
if(key != _billingSettings.BitPayWebhookKey)
|
|
{
|
|
return new BadRequestResult();
|
|
}
|
|
if(model == null || string.IsNullOrWhiteSpace(model.Data?.Id) ||
|
|
string.IsNullOrWhiteSpace(model.Event?.Name))
|
|
{
|
|
return new BadRequestResult();
|
|
}
|
|
|
|
if(model.Event.Name != "invoice_confirmed")
|
|
{
|
|
// Only processing confirmed invoice events for now.
|
|
return new OkResult();
|
|
}
|
|
|
|
var invoice = await _bitPayClient.GetInvoiceAsync(model.Data.Id);
|
|
if(invoice == null || invoice.Status != "confirmed")
|
|
{
|
|
// Request forged...?
|
|
_logger.LogWarning("Forged invoice detected. #" + model.Data.Id);
|
|
return new BadRequestResult();
|
|
}
|
|
|
|
if(invoice.Currency != "USD")
|
|
{
|
|
// Only process USD payments
|
|
_logger.LogWarning("Non USD payment received. #" + invoice.Id);
|
|
return new OkResult();
|
|
}
|
|
|
|
var ids = GetIdsFromPosData(invoice);
|
|
if(!ids.Item1.HasValue && !ids.Item2.HasValue)
|
|
{
|
|
return new OkResult();
|
|
}
|
|
|
|
var isAccountCredit = IsAccountCredit(invoice);
|
|
if(!isAccountCredit)
|
|
{
|
|
// Only processing credits
|
|
_logger.LogWarning("Non-credit payment received. #" + invoice.Id);
|
|
return new OkResult();
|
|
}
|
|
|
|
var transaction = await _transactionRepository.GetByGatewayIdAsync(GatewayType.BitPay, invoice.Id);
|
|
if(transaction != null)
|
|
{
|
|
_logger.LogWarning("Already processed this confirmed invoice. #" + invoice.Id);
|
|
return new OkResult();
|
|
}
|
|
|
|
try
|
|
{
|
|
var tx = new Core.Models.Table.Transaction
|
|
{
|
|
Amount = invoice.Price,
|
|
CreationDate = invoice.CurrentTime.Date,
|
|
OrganizationId = ids.Item1,
|
|
UserId = ids.Item2,
|
|
Type = TransactionType.Charge,
|
|
Gateway = GatewayType.BitPay,
|
|
GatewayId = invoice.Id,
|
|
PaymentMethodType = PaymentMethodType.BitPay,
|
|
Details = invoice.Id
|
|
};
|
|
await _transactionRepository.CreateAsync(tx);
|
|
|
|
if(isAccountCredit)
|
|
{
|
|
if(tx.OrganizationId.HasValue)
|
|
{
|
|
var org = await _organizationRepository.GetByIdAsync(tx.OrganizationId.Value);
|
|
if(org != null)
|
|
{
|
|
if(await _paymentService.CreditAccountAsync(org, tx.Amount))
|
|
{
|
|
await _organizationRepository.ReplaceAsync(org);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
var user = await _userRepository.GetByIdAsync(tx.UserId.Value);
|
|
if(user != null)
|
|
{
|
|
if(await _paymentService.CreditAccountAsync(user, tx.Amount))
|
|
{
|
|
await _userRepository.ReplaceAsync(user);
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Send email about credit added?
|
|
}
|
|
}
|
|
// Catch foreign key violations because user/org could have been deleted.
|
|
catch(SqlException e) when(e.Number == 547) { }
|
|
|
|
return new OkResult();
|
|
}
|
|
|
|
private bool IsAccountCredit(NBitpayClient.Invoice invoice)
|
|
{
|
|
return invoice != null && invoice.PosData != null && invoice.PosData.Contains("accountCredit:1");
|
|
}
|
|
|
|
public Tuple<Guid?, Guid?> GetIdsFromPosData(NBitpayClient.Invoice invoice)
|
|
{
|
|
Guid? orgId = null;
|
|
Guid? userId = null;
|
|
|
|
if(invoice != null && !string.IsNullOrWhiteSpace(invoice.PosData) && invoice.PosData.Contains(":"))
|
|
{
|
|
var mainParts = invoice.PosData.Split(',');
|
|
foreach(var mainPart in mainParts)
|
|
{
|
|
var parts = mainPart.Split(':');
|
|
if(parts.Length > 1 && Guid.TryParse(parts[1], out var id))
|
|
{
|
|
if(parts[0] == "userId")
|
|
{
|
|
userId = id;
|
|
}
|
|
else if(parts[0] == "organizationId")
|
|
{
|
|
orgId = id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return new Tuple<Guid?, Guid?>(orgId, userId);
|
|
}
|
|
}
|
|
}
|