using AutoMapper; using Chatbot.Api.Authentication; using Chatbot.Api.Domain.Data; using Chatbot.Api.Swagger; using Chatbot.Application; using MediatR; using MediatR.Pipeline; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Newtonsoft.Json; using System.Reflection; namespace Chatbot.Api { 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. public void ConfigureServices(IServiceCollection services) { services.AddControllers() .AddNewtonsoftJson(o => o.SerializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Utc); // configure basic authentication services.AddAuthentication("BasicAuthentication") .AddScheme("BasicAuthentication", null); // 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(); // Application services.AddApplicationServices(); // DataAccess services.AddDataAccess(); } // 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(); } private Assembly[] GetMediatRAssemblies() { var assembly = typeof(Application.Queries.GetBots).Assembly; return new Assembly[] { assembly }; } } }