1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

log warnings for bad requests or unsupported cases

This commit is contained in:
Kyle Spearrin 2019-02-22 09:00:51 -05:00
parent 4c84eeca5b
commit 09592fd4d3
2 changed files with 21 additions and 2 deletions

View File

@ -4,6 +4,7 @@ using Bit.Core.Repositories;
using Bit.Core.Services; using Bit.Core.Services;
using Bit.Core.Utilities; using Bit.Core.Utilities;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
using System; using System;
using System.Data.SqlClient; using System.Data.SqlClient;
@ -24,6 +25,7 @@ namespace Bit.Billing.Controllers
private readonly IUserRepository _userRepository; private readonly IUserRepository _userRepository;
private readonly IMailService _mailService; private readonly IMailService _mailService;
private readonly IPaymentService _paymentService; private readonly IPaymentService _paymentService;
private readonly ILogger<BitPayController> _logger;
public BitPayController( public BitPayController(
IOptions<BillingSettings> billingSettings, IOptions<BillingSettings> billingSettings,
@ -32,7 +34,8 @@ namespace Bit.Billing.Controllers
IOrganizationRepository organizationRepository, IOrganizationRepository organizationRepository,
IUserRepository userRepository, IUserRepository userRepository,
IMailService mailService, IMailService mailService,
IPaymentService paymentService) IPaymentService paymentService,
ILogger<BitPayController> logger)
{ {
_billingSettings = billingSettings?.Value; _billingSettings = billingSettings?.Value;
_bitPayClient = bitPayClient; _bitPayClient = bitPayClient;
@ -41,6 +44,7 @@ namespace Bit.Billing.Controllers
_userRepository = userRepository; _userRepository = userRepository;
_mailService = mailService; _mailService = mailService;
_paymentService = paymentService; _paymentService = paymentService;
_logger = logger;
} }
[HttpPost("ipn")] [HttpPost("ipn")]
@ -66,12 +70,14 @@ namespace Bit.Billing.Controllers
if(invoice == null || invoice.Status != "confirmed") if(invoice == null || invoice.Status != "confirmed")
{ {
// Request forged...? // Request forged...?
_logger.LogWarning("Forged invoice detected. #" + model.Data.Id);
return new BadRequestResult(); return new BadRequestResult();
} }
if(invoice.Currency != "USD") if(invoice.Currency != "USD")
{ {
// Only process USD payments // Only process USD payments
_logger.LogWarning("Non USD payment received. #" + invoice.Id);
return new OkResult(); return new OkResult();
} }
@ -85,12 +91,14 @@ namespace Bit.Billing.Controllers
if(!isAccountCredit) if(!isAccountCredit)
{ {
// Only processing credits // Only processing credits
_logger.LogWarning("Non-credit payment received. #" + invoice.Id);
return new OkResult(); return new OkResult();
} }
var transaction = await _transactionRepository.GetByGatewayIdAsync(GatewayType.BitPay, invoice.Id); var transaction = await _transactionRepository.GetByGatewayIdAsync(GatewayType.BitPay, invoice.Id);
if(transaction != null) if(transaction != null)
{ {
_logger.LogWarning("Already processed this confirmed invoice. #" + invoice.Id);
return new OkResult(); return new OkResult();
} }

View File

@ -4,6 +4,7 @@ using Bit.Core.Models.Table;
using Bit.Core.Repositories; using Bit.Core.Repositories;
using Bit.Core.Services; using Bit.Core.Services;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Data.SqlClient; using System.Data.SqlClient;
@ -24,6 +25,7 @@ namespace Bit.Billing.Controllers
private readonly IUserRepository _userRepository; private readonly IUserRepository _userRepository;
private readonly IMailService _mailService; private readonly IMailService _mailService;
private readonly IPaymentService _paymentService; private readonly IPaymentService _paymentService;
private readonly ILogger<PayPalController> _logger;
public PayPalController( public PayPalController(
IOptions<BillingSettings> billingSettings, IOptions<BillingSettings> billingSettings,
@ -33,7 +35,8 @@ namespace Bit.Billing.Controllers
IOrganizationRepository organizationRepository, IOrganizationRepository organizationRepository,
IUserRepository userRepository, IUserRepository userRepository,
IMailService mailService, IMailService mailService,
IPaymentService paymentService) IPaymentService paymentService,
ILogger<PayPalController> logger)
{ {
_billingSettings = billingSettings?.Value; _billingSettings = billingSettings?.Value;
_paypalClient = paypalClient; _paypalClient = paypalClient;
@ -43,6 +46,7 @@ namespace Bit.Billing.Controllers
_userRepository = userRepository; _userRepository = userRepository;
_mailService = mailService; _mailService = mailService;
_paymentService = paymentService; _paymentService = paymentService;
_logger = logger;
} }
[HttpPost("webhook")] [HttpPost("webhook")]
@ -182,12 +186,14 @@ namespace Bit.Billing.Controllers
var verified = await _paypalIpnClient.VerifyIpnAsync(body); var verified = await _paypalIpnClient.VerifyIpnAsync(body);
if(!verified) if(!verified)
{ {
_logger.LogWarning("Unverified IPN received.");
return new BadRequestResult(); return new BadRequestResult();
} }
var ipnTransaction = new PayPalIpnClient.IpnTransaction(body); var ipnTransaction = new PayPalIpnClient.IpnTransaction(body);
if(ipnTransaction.ReceiverId != _billingSettings.PayPal.BusinessId) if(ipnTransaction.ReceiverId != _billingSettings.PayPal.BusinessId)
{ {
_logger.LogWarning("Receiver was not proper business id. " + ipnTransaction.ReceiverId);
return new BadRequestResult(); return new BadRequestResult();
} }
@ -201,12 +207,14 @@ namespace Bit.Billing.Controllers
if(ipnTransaction.PaymentType == "echeck") if(ipnTransaction.PaymentType == "echeck")
{ {
// Not accepting eChecks // Not accepting eChecks
_logger.LogWarning("Got an eCheck payment. " + ipnTransaction.TxnId);
return new OkResult(); return new OkResult();
} }
if(ipnTransaction.McCurrency != "USD") if(ipnTransaction.McCurrency != "USD")
{ {
// Only process USD payments // Only process USD payments
_logger.LogWarning("Received a payment not in USD. " + ipnTransaction.TxnId);
return new OkResult(); return new OkResult();
} }
@ -228,6 +236,7 @@ namespace Bit.Billing.Controllers
GatewayType.PayPal, ipnTransaction.TxnId); GatewayType.PayPal, ipnTransaction.TxnId);
if(transaction != null) if(transaction != null)
{ {
_logger.LogWarning("Already processed this completed transaction. #" + ipnTransaction.TxnId);
return new OkResult(); return new OkResult();
} }
@ -284,6 +293,7 @@ namespace Bit.Billing.Controllers
GatewayType.PayPal, ipnTransaction.TxnId); GatewayType.PayPal, ipnTransaction.TxnId);
if(refundTransaction != null) if(refundTransaction != null)
{ {
_logger.LogWarning("Already processed this refunded transaction. #" + ipnTransaction.TxnId);
return new OkResult(); return new OkResult();
} }
@ -291,6 +301,7 @@ namespace Bit.Billing.Controllers
GatewayType.PayPal, ipnTransaction.ParentTxnId); GatewayType.PayPal, ipnTransaction.ParentTxnId);
if(parentTransaction == null) if(parentTransaction == null)
{ {
_logger.LogWarning("Parent transaction was not found. " + ipnTransaction.TxnId);
return new BadRequestResult(); return new BadRequestResult();
} }