// 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.AspNet.Authentication.JwtBearer;
namespace Microsoft.AspNet.Builder
{
///
/// Extension methods to add OpenIdConnect Bearer authentication capabilities to an HTTP application pipeline.
///
public static class JwtBearerAppBuilderExtensions
{
///
/// Adds the middleware to the specified , which enables Bearer token processing capabilities.
/// This middleware understands appropriately
/// formatted and secured tokens which appear in the request header. If the Options.AuthenticationMode is Active, the
/// claims within the bearer token are added to the current request's IPrincipal User. If the Options.AuthenticationMode
/// is Passive, then the current request is not modified, but IAuthenticationManager AuthenticateAsync may be used at
/// any time to obtain the claims from the request's bearer token.
/// See also http://tools.ietf.org/html/rfc6749
///
/// The to add the middleware to.
/// An action delegate to configure the provided .
/// A reference to this instance after the operation has completed.
public static IApplicationBuilder UseJwtBearerAuthentication(this IApplicationBuilder app, Action configureOptions)
{
if (app == null)
{
throw new ArgumentNullException(nameof(app));
}
if (configureOptions == null)
{
throw new ArgumentNullException(nameof(configureOptions));
}
var options = new JwtBearerOptions();
configureOptions(options);
return app.UseMiddleware(options);
}
}
}