261 lines
11 KiB
C#
261 lines
11 KiB
C#
using Autofac;
|
|
using Autofac.Extensions.DependencyInjection;
|
|
using HealthChecks.UI.Client;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
|
using Microsoft.Azure.ServiceBus;
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus;
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions;
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ;
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBusServiceBus;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Diagnostics.HealthChecks;
|
|
using Microsoft.Extensions.Logging;
|
|
using Ordering.SignalrHub.AutofacModules;
|
|
using Ordering.SignalrHub.IntegrationEvents;
|
|
using Ordering.SignalrHub.IntegrationEvents.EventHandling;
|
|
using Ordering.SignalrHub.IntegrationEvents.Events;
|
|
using RabbitMQ.Client;
|
|
using System;
|
|
using System.IdentityModel.Tokens.Jwt;
|
|
|
|
namespace Ordering.SignalrHub
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
|
public IServiceProvider ConfigureServices(IServiceCollection services)
|
|
{
|
|
services
|
|
.AddCustomHealthCheck(Configuration)
|
|
.AddCors(options =>
|
|
{
|
|
options.AddPolicy("CorsPolicy",
|
|
builder => builder
|
|
.AllowAnyMethod()
|
|
.AllowAnyHeader()
|
|
.SetIsOriginAllowed((host) => true)
|
|
.AllowCredentials());
|
|
});
|
|
|
|
if (Configuration.GetValue<string>("IsClusterEnv") == bool.TrueString)
|
|
{
|
|
services
|
|
.AddSignalR()
|
|
.AddRedis(Configuration["SignalrStoreConnectionString"]);
|
|
}
|
|
else
|
|
{
|
|
services.AddSignalR();
|
|
}
|
|
|
|
if (Configuration.GetValue<bool>("AzureServiceBusEnabled"))
|
|
{
|
|
services.AddSingleton<IServiceBusPersisterConnection>(sp =>
|
|
{
|
|
var logger = sp.GetRequiredService<ILogger<DefaultServiceBusPersisterConnection>>();
|
|
|
|
var serviceBusConnectionString = Configuration["EventBusConnection"];
|
|
var serviceBusConnection = new ServiceBusConnectionStringBuilder(serviceBusConnectionString);
|
|
|
|
return new DefaultServiceBusPersisterConnection(serviceBusConnection, logger);
|
|
});
|
|
}
|
|
else
|
|
{
|
|
services.AddSingleton<IRabbitMQPersistentConnection>(sp =>
|
|
{
|
|
var logger = sp.GetRequiredService<ILogger<DefaultRabbitMQPersistentConnection>>();
|
|
|
|
|
|
var factory = new ConnectionFactory()
|
|
{
|
|
HostName = Configuration["EventBusConnection"],
|
|
DispatchConsumersAsync = true
|
|
};
|
|
|
|
if (!string.IsNullOrEmpty(Configuration["EventBusUserName"]))
|
|
{
|
|
factory.UserName = Configuration["EventBusUserName"];
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(Configuration["EventBusPassword"]))
|
|
{
|
|
factory.Password = Configuration["EventBusPassword"];
|
|
}
|
|
|
|
var retryCount = 5;
|
|
if (!string.IsNullOrEmpty(Configuration["EventBusRetryCount"]))
|
|
{
|
|
retryCount = int.Parse(Configuration["EventBusRetryCount"]);
|
|
}
|
|
|
|
return new DefaultRabbitMQPersistentConnection(factory, logger, retryCount);
|
|
});
|
|
}
|
|
|
|
ConfigureAuthService(services);
|
|
|
|
RegisterEventBus(services);
|
|
|
|
services.AddOptions();
|
|
|
|
//configure autofac
|
|
var container = new ContainerBuilder();
|
|
container.RegisterModule(new ApplicationModule());
|
|
container.Populate(services);
|
|
|
|
return new AutofacServiceProvider(container.Build());
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
|
|
{
|
|
//loggerFactory.AddConsole(Configuration.GetSection("Logging"));
|
|
//loggerFactory.AddDebug();
|
|
//loggerFactory.AddAzureWebAppDiagnostics();
|
|
//loggerFactory.AddApplicationInsights(app.ApplicationServices, LogLevel.Trace);
|
|
|
|
var pathBase = Configuration["PATH_BASE"];
|
|
if (!string.IsNullOrEmpty(pathBase))
|
|
{
|
|
loggerFactory.CreateLogger<Startup>().LogDebug("Using PATH BASE '{pathBase}'", pathBase);
|
|
app.UsePathBase(pathBase);
|
|
}
|
|
|
|
app.UseHealthChecks("/hc", new HealthCheckOptions()
|
|
{
|
|
Predicate = _ => true,
|
|
ResponseWriter = UIResponseWriter.WriteHealthCheckUIResponse
|
|
});
|
|
|
|
app.UseHealthChecks("/liveness", new HealthCheckOptions
|
|
{
|
|
Predicate = r => r.Name.Contains("self")
|
|
});
|
|
|
|
app.UseCors("CorsPolicy");
|
|
|
|
app.UseAuthentication();
|
|
|
|
app.UseSignalR(routes =>
|
|
{
|
|
routes.MapHub<NotificationsHub>("/notificationhub", options =>
|
|
options.Transports = Microsoft.AspNetCore.Http.Connections.HttpTransports.All);
|
|
});
|
|
|
|
ConfigureEventBus(app);
|
|
}
|
|
|
|
private void ConfigureEventBus(IApplicationBuilder app)
|
|
{
|
|
var eventBus = app.ApplicationServices.GetRequiredService<IEventBus>();
|
|
|
|
eventBus.Subscribe<OrderStatusChangedToAwaitingValidationIntegrationEvent, OrderStatusChangedToAwaitingValidationIntegrationEventHandler>();
|
|
eventBus.Subscribe<OrderStatusChangedToPaidIntegrationEvent, OrderStatusChangedToPaidIntegrationEventHandler>();
|
|
eventBus.Subscribe<OrderStatusChangedToStockConfirmedIntegrationEvent, OrderStatusChangedToStockConfirmedIntegrationEventHandler>();
|
|
eventBus.Subscribe<OrderStatusChangedToShippedIntegrationEvent, OrderStatusChangedToShippedIntegrationEventHandler>();
|
|
eventBus.Subscribe<OrderStatusChangedToCancelledIntegrationEvent, OrderStatusChangedToCancelledIntegrationEventHandler>();
|
|
eventBus.Subscribe<OrderStatusChangedToSubmittedIntegrationEvent, OrderStatusChangedToSubmittedIntegrationEventHandler>();
|
|
}
|
|
|
|
private void ConfigureAuthService(IServiceCollection services)
|
|
{
|
|
// prevent from mapping "sub" claim to nameidentifier.
|
|
JwtSecurityTokenHandler.DefaultInboundClaimTypeMap.Remove("sub");
|
|
|
|
var identityUrl = Configuration.GetValue<string>("IdentityUrl");
|
|
|
|
services.AddAuthentication(options =>
|
|
{
|
|
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
|
|
}).AddJwtBearer(options =>
|
|
{
|
|
options.Authority = identityUrl;
|
|
options.RequireHttpsMetadata = false;
|
|
options.Audience = "orders.signalrhub";
|
|
});
|
|
}
|
|
|
|
private void RegisterEventBus(IServiceCollection services)
|
|
{
|
|
var subscriptionClientName = Configuration["SubscriptionClientName"];
|
|
|
|
if (Configuration.GetValue<bool>("AzureServiceBusEnabled"))
|
|
{
|
|
services.AddSingleton<IEventBus, EventBusServiceBus>(sp =>
|
|
{
|
|
var serviceBusPersisterConnection = sp.GetRequiredService<IServiceBusPersisterConnection>();
|
|
var iLifetimeScope = sp.GetRequiredService<ILifetimeScope>();
|
|
var logger = sp.GetRequiredService<ILogger<EventBusServiceBus>>();
|
|
var eventBusSubcriptionsManager = sp.GetRequiredService<IEventBusSubscriptionsManager>();
|
|
|
|
return new EventBusServiceBus(serviceBusPersisterConnection, logger,
|
|
eventBusSubcriptionsManager, subscriptionClientName, iLifetimeScope);
|
|
});
|
|
}
|
|
else
|
|
{
|
|
services.AddSingleton<IEventBus, EventBusRabbitMQ>(sp =>
|
|
{
|
|
var rabbitMQPersistentConnection = sp.GetRequiredService<IRabbitMQPersistentConnection>();
|
|
var iLifetimeScope = sp.GetRequiredService<ILifetimeScope>();
|
|
var logger = sp.GetRequiredService<ILogger<EventBusRabbitMQ>>();
|
|
var eventBusSubcriptionsManager = sp.GetRequiredService<IEventBusSubscriptionsManager>();
|
|
|
|
var retryCount = 5;
|
|
if (!string.IsNullOrEmpty(Configuration["EventBusRetryCount"]))
|
|
{
|
|
retryCount = int.Parse(Configuration["EventBusRetryCount"]);
|
|
}
|
|
|
|
return new EventBusRabbitMQ(rabbitMQPersistentConnection, logger, iLifetimeScope, eventBusSubcriptionsManager, subscriptionClientName, retryCount);
|
|
});
|
|
}
|
|
|
|
services.AddSingleton<IEventBusSubscriptionsManager, InMemoryEventBusSubscriptionsManager>();
|
|
}
|
|
}
|
|
|
|
public static class CustomExtensionMethods
|
|
{
|
|
public static IServiceCollection AddCustomHealthCheck(this IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
var hcBuilder = services.AddHealthChecks();
|
|
|
|
hcBuilder.AddCheck("self", () => HealthCheckResult.Healthy());
|
|
|
|
if (configuration.GetValue<bool>("AzureServiceBusEnabled"))
|
|
{
|
|
hcBuilder
|
|
.AddAzureServiceBusTopic(
|
|
configuration["EventBusConnection"],
|
|
topicName: "eshop_event_bus",
|
|
name: "signalr-servicebus-check",
|
|
tags: new string[] { "servicebus" });
|
|
}
|
|
else
|
|
{
|
|
hcBuilder
|
|
.AddRabbitMQ(
|
|
$"amqp://{configuration["EventBusConnection"]}",
|
|
name: "signalr-rabbitmqbus-check",
|
|
tags: new string[] { "rabbitmqbus" });
|
|
}
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|