134 lines
4.5 KiB
C#
134 lines
4.5 KiB
C#
using Microsoft.AspNetCore.Builder;
|
||
using Microsoft.AspNetCore.Hosting;
|
||
using Microsoft.AspNetCore.Http.Connections;
|
||
using Microsoft.AspNetCore.HttpsPolicy;
|
||
using Microsoft.AspNetCore.SpaServices.AngularCli;
|
||
using Microsoft.EntityFrameworkCore;
|
||
using Microsoft.Extensions.Configuration;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using Microsoft.Extensions.Hosting;
|
||
using AutoMapper;
|
||
using SessionCompanion.Configurations;
|
||
using SessionCompanion.Database;
|
||
using SessionCompanion.Hubs;
|
||
|
||
namespace SessionCompanion
|
||
{
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.IO;
|
||
using System.Linq;
|
||
|
||
using Microsoft.OpenApi.Models;
|
||
|
||
using SessionCompanion.Extensions.ApiErrors;
|
||
|
||
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.AddControllersWithViews();
|
||
services.AddDbContext<ApplicationDbContext>(options =>
|
||
options.UseSqlServer(
|
||
Configuration.GetConnectionString("DefaultConnection")));
|
||
services.AddRepositories();
|
||
services.AddServices();
|
||
|
||
services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());
|
||
|
||
services.AddSignalR();
|
||
|
||
services.AddSwaggerGen(s =>
|
||
{
|
||
s.SwaggerDoc("v1", new OpenApiInfo { Title = "Dost<73>pne API", Version = "v1" });
|
||
var basePath = AppContext.BaseDirectory;
|
||
var xmlPath = Path.Combine(basePath, "SessionCompanion.xml");
|
||
s.IncludeXmlComments(xmlPath);
|
||
xmlPath = Path.Combine(basePath, "SessionCompanion.ViewModels.xml");
|
||
s.IncludeXmlComments(xmlPath);
|
||
|
||
});
|
||
|
||
// In production, the Angular files will be served from this directory
|
||
services.AddSpaStaticFiles(configuration =>
|
||
{
|
||
configuration.RootPath = "ClientApp/dist";
|
||
});
|
||
|
||
}
|
||
|
||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||
{
|
||
using (var serviceScope = app.ApplicationServices.GetRequiredService<IServiceScopeFactory>().CreateScope())
|
||
{
|
||
serviceScope.ServiceProvider.GetService<ApplicationDbContext>().Database.Migrate();
|
||
}
|
||
|
||
if (env.IsDevelopment())
|
||
{
|
||
app.UseDeveloperExceptionPage();
|
||
}
|
||
else
|
||
{
|
||
app.UseExceptionHandler("/Error");
|
||
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||
app.UseHsts();
|
||
}
|
||
|
||
app.ConfigureCustomExceptionMiddleware();
|
||
|
||
app.UseHttpsRedirection();
|
||
app.UseStaticFiles();
|
||
if (!env.IsDevelopment())
|
||
{
|
||
app.UseSpaStaticFiles();
|
||
}
|
||
|
||
app.UseRouting();
|
||
|
||
app.UseEndpoints(endpoints =>
|
||
{
|
||
endpoints.MapControllerRoute(
|
||
name: "default",
|
||
pattern: "{controller}/{action=Index}/{id?}");
|
||
|
||
endpoints.MapHub<SessionHub>("/sessionhub", options =>
|
||
{
|
||
options.Transports =
|
||
HttpTransportType.WebSockets |
|
||
HttpTransportType.LongPolling;
|
||
});
|
||
});
|
||
|
||
app.UseSwagger();
|
||
app.UseSwaggerUI(c =>
|
||
{
|
||
c.SwaggerEndpoint("/swagger/v1/swagger.json", "SessionCompanion API V1");
|
||
});
|
||
|
||
app.UseSpa(spa =>
|
||
{
|
||
// To learn more about options for serving an Angular SPA from ASP.NET Core,
|
||
// see https://go.microsoft.com/fwlink/?linkid=864501
|
||
|
||
spa.Options.SourcePath = "ClientApp";
|
||
|
||
if (env.IsDevelopment())
|
||
{
|
||
spa.UseAngularCliServer(npmScript: "start");
|
||
}
|
||
});
|
||
}
|
||
}
|
||
}
|