54 lines
1.9 KiB
C#
54 lines
1.9 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Mvc.Razor;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Nop.Core.Infrastructure;
|
|
using Nop.Plugin.Misc.AuctionPlugin.Hubs;
|
|
using Nop.Plugin.Misc.AuctionPlugin.Services;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Infrastructure
|
|
{
|
|
public class PluginNopStartup : INopStartup
|
|
{
|
|
|
|
public int Order => 999;
|
|
/// <summary>
|
|
/// Add and configure any of the middleware
|
|
/// </summary>
|
|
/// <param name="services">Collection of service descriptors</param>
|
|
/// <param name="configuration">Configuration of the application</param>
|
|
public void ConfigureServices(IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.Configure<RazorViewEngineOptions>(options =>
|
|
{
|
|
options.ViewLocationExpanders.Add(new ViewLocationExpander());
|
|
});
|
|
|
|
services.AddSignalR(hubOptions =>
|
|
{
|
|
hubOptions.KeepAliveInterval = TimeSpan.FromMinutes(1);
|
|
});
|
|
|
|
//register services and interfaces
|
|
services.AddScoped<IAnnouncementService, AnnouncementService>();
|
|
services.AddScoped<IBidService, BidService>();
|
|
services.AddScoped<EventConsumer>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configure the using of added middleware
|
|
/// </summary>
|
|
/// <param name="application">Builder for configuring an application's request pipeline</param>
|
|
public void Configure(IApplicationBuilder application)
|
|
{
|
|
|
|
application.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapHub<AuctionHub>("/auctionhub");
|
|
});
|
|
application.UseCors(options => {
|
|
options.AllowAnyMethod().AllowAnyHeader().AllowCredentials().SetIsOriginAllowed((hosts) => true);
|
|
});
|
|
}
|
|
}
|
|
} |