88 lines
2.8 KiB
C#
88 lines
2.8 KiB
C#
using AutoMapper;
|
|
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 NetworkResurrector.Api.Authentication;
|
|
using NetworkResurrector.Api.Extensions;
|
|
using NetworkResurrector.Api.Swagger;
|
|
using NetworkResurrector.Application;
|
|
using Newtonsoft.Json;
|
|
using System.Reflection;
|
|
|
|
namespace NetworkResurrector.Api
|
|
{
|
|
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);
|
|
|
|
// configure basic authentication
|
|
services.AddAuthentication("BasicAuthentication")
|
|
.AddScheme<AuthenticationSchemeOptions, BasicAuthenticationHandler>("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();
|
|
|
|
// WakeOnLan
|
|
services.AddWakeOnLan(_configuration);
|
|
}
|
|
|
|
// 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.GetToken).Assembly;
|
|
return new Assembly[] { assembly };
|
|
}
|
|
}
|
|
}
|