mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[PM-16482]NullReferenceException in CustomerUpdatedHandler due to uninitialized dependency (#5349)
* Changes to throw exact errors * Add some logging to each error state Signed-off-by: Cy Okeke <cokeke@bitwarden.com> --------- Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
This commit is contained in:
parent
daf2696a81
commit
1c3ea1151c
@ -14,19 +14,22 @@ public class CustomerUpdatedHandler : ICustomerUpdatedHandler
|
|||||||
private readonly ICurrentContext _currentContext;
|
private readonly ICurrentContext _currentContext;
|
||||||
private readonly IStripeEventService _stripeEventService;
|
private readonly IStripeEventService _stripeEventService;
|
||||||
private readonly IStripeEventUtilityService _stripeEventUtilityService;
|
private readonly IStripeEventUtilityService _stripeEventUtilityService;
|
||||||
|
private readonly ILogger<CustomerUpdatedHandler> _logger;
|
||||||
|
|
||||||
public CustomerUpdatedHandler(
|
public CustomerUpdatedHandler(
|
||||||
IOrganizationRepository organizationRepository,
|
IOrganizationRepository organizationRepository,
|
||||||
IReferenceEventService referenceEventService,
|
IReferenceEventService referenceEventService,
|
||||||
ICurrentContext currentContext,
|
ICurrentContext currentContext,
|
||||||
IStripeEventService stripeEventService,
|
IStripeEventService stripeEventService,
|
||||||
IStripeEventUtilityService stripeEventUtilityService)
|
IStripeEventUtilityService stripeEventUtilityService,
|
||||||
|
ILogger<CustomerUpdatedHandler> logger)
|
||||||
{
|
{
|
||||||
_organizationRepository = organizationRepository;
|
_organizationRepository = organizationRepository ?? throw new ArgumentNullException(nameof(organizationRepository));
|
||||||
_referenceEventService = referenceEventService;
|
_referenceEventService = referenceEventService;
|
||||||
_currentContext = currentContext;
|
_currentContext = currentContext;
|
||||||
_stripeEventService = stripeEventService;
|
_stripeEventService = stripeEventService;
|
||||||
_stripeEventUtilityService = stripeEventUtilityService;
|
_stripeEventUtilityService = stripeEventUtilityService;
|
||||||
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -35,25 +38,76 @@ public class CustomerUpdatedHandler : ICustomerUpdatedHandler
|
|||||||
/// <param name="parsedEvent"></param>
|
/// <param name="parsedEvent"></param>
|
||||||
public async Task HandleAsync(Event parsedEvent)
|
public async Task HandleAsync(Event parsedEvent)
|
||||||
{
|
{
|
||||||
var customer = await _stripeEventService.GetCustomer(parsedEvent, true, ["subscriptions"]);
|
if (parsedEvent == null)
|
||||||
if (customer.Subscriptions == null || !customer.Subscriptions.Any())
|
|
||||||
{
|
{
|
||||||
|
_logger.LogError("Parsed event was null in CustomerUpdatedHandler");
|
||||||
|
throw new ArgumentNullException(nameof(parsedEvent));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_stripeEventService == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("StripeEventService was not initialized in CustomerUpdatedHandler");
|
||||||
|
throw new InvalidOperationException($"{nameof(_stripeEventService)} is not initialized");
|
||||||
|
}
|
||||||
|
|
||||||
|
var customer = await _stripeEventService.GetCustomer(parsedEvent, true, ["subscriptions"]);
|
||||||
|
if (customer?.Subscriptions == null || !customer.Subscriptions.Any())
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Customer or subscriptions were null or empty in CustomerUpdatedHandler. Customer ID: {CustomerId}", customer?.Id);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var subscription = customer.Subscriptions.First();
|
var subscription = customer.Subscriptions.First();
|
||||||
|
|
||||||
|
if (subscription.Metadata == null)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Subscription metadata was null in CustomerUpdatedHandler. Subscription ID: {SubscriptionId}", subscription.Id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_stripeEventUtilityService == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("StripeEventUtilityService was not initialized in CustomerUpdatedHandler");
|
||||||
|
throw new InvalidOperationException($"{nameof(_stripeEventUtilityService)} is not initialized");
|
||||||
|
}
|
||||||
|
|
||||||
var (organizationId, _, providerId) = _stripeEventUtilityService.GetIdsFromMetadata(subscription.Metadata);
|
var (organizationId, _, providerId) = _stripeEventUtilityService.GetIdsFromMetadata(subscription.Metadata);
|
||||||
|
|
||||||
if (!organizationId.HasValue)
|
if (!organizationId.HasValue)
|
||||||
{
|
{
|
||||||
|
_logger.LogWarning("Organization ID was not found in subscription metadata. Subscription ID: {SubscriptionId}", subscription.Id);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_organizationRepository == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("OrganizationRepository was not initialized in CustomerUpdatedHandler");
|
||||||
|
throw new InvalidOperationException($"{nameof(_organizationRepository)} is not initialized");
|
||||||
|
}
|
||||||
|
|
||||||
var organization = await _organizationRepository.GetByIdAsync(organizationId.Value);
|
var organization = await _organizationRepository.GetByIdAsync(organizationId.Value);
|
||||||
|
|
||||||
|
if (organization == null)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Organization not found. Organization ID: {OrganizationId}", organizationId.Value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
organization.BillingEmail = customer.Email;
|
organization.BillingEmail = customer.Email;
|
||||||
await _organizationRepository.ReplaceAsync(organization);
|
await _organizationRepository.ReplaceAsync(organization);
|
||||||
|
|
||||||
|
if (_referenceEventService == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("ReferenceEventService was not initialized in CustomerUpdatedHandler");
|
||||||
|
throw new InvalidOperationException($"{nameof(_referenceEventService)} is not initialized");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_currentContext == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("CurrentContext was not initialized in CustomerUpdatedHandler");
|
||||||
|
throw new InvalidOperationException($"{nameof(_currentContext)} is not initialized");
|
||||||
|
}
|
||||||
|
|
||||||
await _referenceEventService.RaiseEventAsync(
|
await _referenceEventService.RaiseEventAsync(
|
||||||
new ReferenceEvent(ReferenceEventType.OrganizationEditedInStripe, organization, _currentContext));
|
new ReferenceEvent(ReferenceEventType.OrganizationEditedInStripe, organization, _currentContext));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user