109 lines
3.4 KiB
C#
109 lines
3.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
#if (OrganizationalAuth || IndividualB2CAuth)
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
|
|
#endif
|
|
using Microsoft.AspNetCore.Builder;
|
|
#if (IndividualLocalAuth)
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
#endif
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
#if (OrganizationalAuth && OrgReadAccess)
|
|
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
|
|
#endif
|
|
#if (MultiOrgAuth)
|
|
using Microsoft.IdentityModel.Tokens;
|
|
#endif
|
|
#if (IndividualLocalAuth)
|
|
using Company.WebApplication1.Data;
|
|
using Company.WebApplication1.Models;
|
|
using Company.WebApplication1.Services;
|
|
#endif
|
|
|
|
namespace Company.WebApplication1
|
|
{
|
|
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)
|
|
{
|
|
#if (IndividualLocalAuth)
|
|
services.AddDbContext<ApplicationDbContext>(options =>
|
|
#if (UseLocalDB)
|
|
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
|
|
#else
|
|
options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")));
|
|
#endif
|
|
|
|
services.AddIdentity<ApplicationUser, IdentityRole>()
|
|
.AddEntityFrameworkStores<ApplicationDbContext>()
|
|
.AddDefaultTokenProviders();
|
|
|
|
// Add application services.
|
|
services.AddTransient<IEmailSender, EmailSender>();
|
|
|
|
#elseif (OrganizationalAuth || IndividualB2CAuth)
|
|
services.AddAuthentication(sharedOptions =>
|
|
{
|
|
sharedOptions.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
|
|
sharedOptions.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
|
|
})
|
|
#if (OrganizationalAuth)
|
|
.AddAzureAd(options => Configuration.Bind("AzureAd", options))
|
|
#elseif (IndividualB2CAuth)
|
|
.AddAzureAdB2C(options => Configuration.Bind("AzureAdB2C", options))
|
|
#endif
|
|
.AddCookie();
|
|
|
|
#endif
|
|
services.AddMvc();
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
#if (UseBrowserLink)
|
|
app.UseBrowserLink();
|
|
#endif
|
|
#if (IndividualLocalAuth)
|
|
app.UseDatabaseErrorPage();
|
|
#endif
|
|
}
|
|
else
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
}
|
|
|
|
app.UseStaticFiles();
|
|
|
|
#if (OrganizationalAuth || IndividualAuth)
|
|
app.UseAuthentication();
|
|
|
|
#endif
|
|
app.UseMvc(routes =>
|
|
{
|
|
routes.MapRoute(
|
|
name: "default",
|
|
template: "{controller=Home}/{action=Index}/{id?}");
|
|
});
|
|
}
|
|
}
|
|
}
|