using AutoMapper; using MediatR; using MediatR.Pipeline; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using NDB.Extensions.Swagger; using NDB.Security.Authentication.Identity; using NetworkResurrector.Agent.Application; using NetworkResurrector.Agent.Domain.Data; using Newtonsoft.Json; using System.Reflection; namespace NetworkResurrector.Agent { public class Startup { private readonly IConfiguration _configuration; public Startup(IConfiguration configuration) { _configuration = configuration; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddControllers() .AddNewtonsoftJson(o => o.SerializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Utc); // Add basic authentication services.AddBasicAuthentication(_configuration.GetSection("IdentityServer")["BaseAddress"]); // MediatR services.AddMediatR(GetMediatRAssemblies()); services.AddScoped(typeof(IPipelineBehavior<,>), typeof(RequestPreProcessorBehavior<,>)); services.AddScoped(typeof(IPipelineBehavior<,>), typeof(RequestPostProcessorBehavior<,>)); // AutoMapper services.AddAutoMapper( typeof(Application.Mappings.MappingProfile).Assembly); // Swagger services.AddSwagger("NetworkResurrectorAgent API"); // Data access services.AddDataAccess(); // Application services.AddApplicationServices(); } private Assembly[] GetMediatRAssemblies() { var assembly = typeof(Application.Queries.GetMachines).Assembly; return new Assembly[] { assembly }; } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { // global cors policy app.UseCors(x => x .AllowAnyOrigin() .AllowAnyMethod() .AllowAnyHeader()); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); app.ConfigureSwagger("NetworkResurrectorAgent API"); } } }