using System; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using MongoIdentitySample.Mvc.Models; using MongoIdentitySample.Mvc.Services; using AspNetCore.Identity.MongoDbCore.Models; using Microsoft.AspNetCore.Identity; using AspNetCore.Identity.MongoDbCore.Infrastructure; using Microsoft.Extensions.Hosting; namespace MongoIdentitySample.Mvc { public class Startup { public Startup(IWebHostEnvironment env) { var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) //per user config that is not committed to repo, use this to override settings (e.g. connection string) based on your local environment. .AddJsonFile($"appsettings.local.json", optional: true); if (env.IsDevelopment()) { // For more details on using the user secret store see https://go.microsoft.com/fwlink/?LinkID=532709 builder.AddUserSecrets(); } builder.AddEnvironmentVariables(); Configuration = builder.Build(); } public IConfigurationRoot Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { // Add framework services. var mongoSettings = Configuration.GetSection(nameof(MongoDbSettings)); var settings = Configuration.GetSection(nameof(MongoDbSettings)).Get(); services.AddSingleton(settings); services.AddIdentity() .AddMongoDbStores(settings.ConnectionString, settings.DatabaseName) .AddDefaultTokenProviders(); services.AddMvc(); services.AddApplicationInsightsTelemetry(); // Add application services. services.AddTransient(); services.AddTransient(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) //, ILoggerFactory loggerFactory) { //loggerFactory.AddConsole(Configuration.GetSection("Logging")); //loggerFactory.AddDebug(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseBrowserLink(); } else { app.UseExceptionHandler("/Home/Error"); } app.UseRouting(); app.UseStaticFiles(); app.UseAuthentication(); app.UseAuthorization(); // Add external authentication middleware below. To configure them please see https://go.microsoft.com/fwlink/?LinkID=532715 app.UseEndpoints(endpoints => { endpoints.MapDefaultControllerRoute(); }); } } }