mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Added some defensive logging around making braintree payments (#5317)
This commit is contained in:
parent
e8cd86e5f6
commit
31e95d529f
@ -318,8 +318,7 @@ public class StripeEventUtilityService : IStripeEventUtilityService
|
|||||||
Result<Braintree.Transaction> transactionResult;
|
Result<Braintree.Transaction> transactionResult;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
transactionResult = await _btGateway.Transaction.SaleAsync(
|
var transactionRequest = new Braintree.TransactionRequest
|
||||||
new Braintree.TransactionRequest
|
|
||||||
{
|
{
|
||||||
Amount = btInvoiceAmount,
|
Amount = btInvoiceAmount,
|
||||||
CustomerId = customer.Metadata["btCustomerId"],
|
CustomerId = customer.Metadata["btCustomerId"],
|
||||||
@ -337,7 +336,16 @@ public class StripeEventUtilityService : IStripeEventUtilityService
|
|||||||
[btObjIdField] = btObjId.ToString(),
|
[btObjIdField] = btObjId.ToString(),
|
||||||
["region"] = _globalSettings.BaseServiceUri.CloudRegion
|
["region"] = _globalSettings.BaseServiceUri.CloudRegion
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
|
||||||
|
_logger.LogInformation("Creating Braintree transaction with Amount: {Amount}, CustomerId: {CustomerId}, " +
|
||||||
|
"CustomField: {CustomField}, CustomFields: {@CustomFields}",
|
||||||
|
transactionRequest.Amount,
|
||||||
|
transactionRequest.CustomerId,
|
||||||
|
transactionRequest.Options.PayPal.CustomField,
|
||||||
|
transactionRequest.CustomFields);
|
||||||
|
|
||||||
|
transactionResult = await _btGateway.Transaction.SaleAsync(transactionRequest);
|
||||||
}
|
}
|
||||||
catch (NotFoundException e)
|
catch (NotFoundException e)
|
||||||
{
|
{
|
||||||
@ -345,9 +353,19 @@ public class StripeEventUtilityService : IStripeEventUtilityService
|
|||||||
"Attempted to make a payment with Braintree, but customer did not exist for the given btCustomerId present on the Stripe metadata");
|
"Attempted to make a payment with Braintree, but customer did not exist for the given btCustomerId present on the Stripe metadata");
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
_logger.LogError(e, "Exception occurred while trying to pay invoice with Braintree");
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
if (!transactionResult.IsSuccess())
|
if (!transactionResult.IsSuccess())
|
||||||
{
|
{
|
||||||
|
_logger.LogWarning("Braintree transaction failed. Error: {ErrorMessage}, Transaction Status: {Status}, Validation Errors: {ValidationErrors}",
|
||||||
|
transactionResult.Message,
|
||||||
|
transactionResult.Target?.Status,
|
||||||
|
string.Join(", ", transactionResult.Errors.DeepAll().Select(e => $"Code: {e.Code}, Message: {e.Message}, Attribute: {e.Attribute}")));
|
||||||
|
|
||||||
if (invoice.AttemptCount < 4)
|
if (invoice.AttemptCount < 4)
|
||||||
{
|
{
|
||||||
await _mailService.SendPaymentFailedAsync(customer.Email, btInvoiceAmount, true);
|
await _mailService.SendPaymentFailedAsync(customer.Email, btInvoiceAmount, true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user