// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; namespace ServerComparison.TestSites { public class StartupNtlmAuthentication { public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) { app.Use(async (context, next) => { try { await next(); } catch (Exception ex) { if (context.Response.HasStarted) { throw; } context.Response.Clear(); context.Response.StatusCode = 500; await context.Response.WriteAsync(ex.ToString()); } }); app.Use((context, next) => { if (context.Request.Path.Equals("/Anonymous")) { return context.Response.WriteAsync("Anonymous?" + !context.User.Identity.IsAuthenticated); } if (context.Request.Path.Equals("/Restricted")) { if (context.User.Identity.IsAuthenticated) { return context.Response.WriteAsync("Authenticated"); } else { return context.ChallengeAsync("Windows"); } } if (context.Request.Path.Equals("/Forbidden")) { return context.ForbidAsync("Windows"); } return context.Response.WriteAsync("Hello World"); }); } } }