80 lines
2.4 KiB
C#
80 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
#if (RequiresHttps)
|
|
using Microsoft.AspNetCore.HttpsPolicy;
|
|
#endif
|
|
using Microsoft.AspNetCore.Mvc;
|
|
#if (OrganizationalAuth || IndividualB2CAuth)
|
|
using Microsoft.AspNetCore.Authentication;
|
|
#endif
|
|
#if (OrganizationalAuth)
|
|
using Microsoft.AspNetCore.Authentication.AzureAD.UI;
|
|
#endif
|
|
#if (IndividualB2CAuth)
|
|
using Microsoft.AspNetCore.Authentication.AzureADB2C.UI;
|
|
#endif
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
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 (OrganizationalAuth)
|
|
services.AddAuthentication(AzureADDefaults.BearerAuthenticationScheme)
|
|
.AddAzureADBearer(options => Configuration.Bind("AzureAd", options));
|
|
#elif (IndividualB2CAuth)
|
|
services.AddAuthentication(AzureADB2CDefaults.BearerAuthenticationScheme)
|
|
.AddAzureADB2CBearer(options => Configuration.Bind("AzureAdB2C", options));
|
|
#endif
|
|
services.AddControllers()
|
|
.AddNewtonsoftJson();
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
#if (RequiresHttps)
|
|
else
|
|
{
|
|
// 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.UseHttpsRedirection();
|
|
#endif
|
|
|
|
app.UseRouting();
|
|
|
|
#if (OrganizationalAuth || IndividualAuth)
|
|
app.UseAuthentication();
|
|
#endif
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
}
|
|
}
|
|
}
|