Beispiel #1
0
        /// <summary>
        /// Adds services to handle Authentication and Authorization.
        /// </summary>
        /// <param name="services"></param>
        /// <param name="tkAction"></param>
        /// <returns></returns>
        public static IServiceCollection AddAuth(this IServiceCollection services, Action <TokenSettings> tkAction = null)
        {
            if (tkAction is null)
            {
                tkAction = (_) => { };
            }

            var tokenSettings = new TokenSettings();

            tkAction(tokenSettings);

            return(services.AddAuth(tokenSettings));
        }
Beispiel #2
0
 private static IServiceCollection AddAuth(this IServiceCollection services, TokenSettings settings)
 {
     services
     .AddAuthentication(s =>
     {
         s.DefaultAuthenticateScheme = s.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
     })
     .AddJwtBearer(s =>
     {
         s.SaveToken                 = true;
         s.Authority                 = settings.Authority;
         s.Audience                  = settings.Audience;
         s.MetadataAddress           = string.IsNullOrWhiteSpace(settings.WellKnownAddress) ? null : settings.WellKnownAddress;
         s.TokenValidationParameters = new TokenValidationParameters
         {
             NameClaimType    = ClaimTypes.NameIdentifier,
             ValidateAudience = true,
             ValidateIssuer   = true
         };
     });
     return(services);
 }