107 lines
4.1 KiB
C#
107 lines
4.1 KiB
C#
using System;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Sledgemapper.Api.Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using MediatR;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using Sledgemapper.Helpers;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using System.Text;
|
|
using Sledgemapper.Api.Hubs;
|
|
|
|
namespace Sledgemapper.Api
|
|
{
|
|
public class Startup
|
|
{
|
|
private readonly IWebHostEnvironment _env;
|
|
public IConfiguration Configuration { get; }
|
|
public Startup(IWebHostEnvironment env, IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
_env = env;
|
|
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddCors();
|
|
services.AddControllers();
|
|
services.AddSignalR();
|
|
services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());
|
|
services.AddMediatR(typeof(Startup));
|
|
services.AddDbContext<SledgemapperDbContext>(options => { options.UseSqlite("Data Source=db/sledgemapper.db"); options.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking); });
|
|
|
|
services.Configure<JwtConfig>(Configuration.GetSection("JwtConfig"));
|
|
|
|
// configure DI for application services
|
|
|
|
// within this section we are configuring the authentication and setting the default scheme
|
|
services.AddAuthentication(options =>
|
|
{
|
|
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
options.DefaultScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
})
|
|
.AddJwtBearer(jwt =>
|
|
{
|
|
var key = Encoding.ASCII.GetBytes(Configuration["JwtConfig:Secret"]);
|
|
|
|
jwt.SaveToken = true;
|
|
jwt.TokenValidationParameters = new TokenValidationParameters
|
|
{
|
|
ValidateIssuerSigningKey = true, // this will validate the 3rd part of the jwt token using the secret that we added in the appsettings and verify we have generated the jwt token
|
|
IssuerSigningKey = new SymmetricSecurityKey(key), // Add the secret key to our Jwt encryption
|
|
ValidateIssuer = false,
|
|
ValidateAudience = false,
|
|
RequireExpirationTime = false,
|
|
ValidateLifetime = true
|
|
};
|
|
});
|
|
|
|
services.AddDefaultIdentity<Entities.User>(options => options.SignIn.RequireConfirmedAccount = false)
|
|
.AddEntityFrameworkStores<SledgemapperDbContext>();
|
|
|
|
services.AddSwaggerGen();
|
|
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, SledgemapperDbContext dataContext)
|
|
{
|
|
// Enable middleware to serve generated Swagger as a JSON endpoint.
|
|
app.UseSwagger();
|
|
|
|
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
|
|
// specifying the Swagger JSON endpoint.
|
|
app.UseSwaggerUI(c =>
|
|
{
|
|
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
|
|
});
|
|
|
|
dataContext.Database.Migrate();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseCors(x => x
|
|
.AllowAnyOrigin()
|
|
.AllowAnyMethod()
|
|
.AllowAnyHeader());
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapHub<SledgemapperHub>("/sledgemapperhub");
|
|
});
|
|
}
|
|
}
|
|
}
|