Last active
June 18, 2019 10:03
-
-
Save nest-don/55f2e74b95a80e49bcff47eda71142c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void ConfigureServices(IServiceCollection services) | |
{ | |
services.AddNester(); | |
// 1. Set API Version | |
services.AddDbContext<JwtauthContext>(options => | |
options.UseSqlite("Data Source=/var/app/source/shared/Jwtauth.db")); | |
services.AddScoped<IIndustryRepository, IndustryRepository>(); | |
services.AddApiVersioning(options => { | |
options.ReportApiVersions = true; | |
options.AssumeDefaultVersionWhenUnspecified = true; | |
options.DefaultApiVersion = new ApiVersion(1,0); | |
options.ApiVersionReader = new HeaderApiVersionReader("x-api-version"); | |
}); | |
services.AddSwaggerGen(options => { | |
options.SwaggerDoc("v1", new Info { Title = "Demo Jwt Auth API", Version = "v1" }); | |
}); | |
// 2. Configure JWT Authentication | |
services.AddAuthentication(options => { | |
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; | |
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; | |
}).AddJwtBearer(options => { | |
options.RequireHttpsMetadata = false; | |
options.SaveToken = true; | |
options.TokenValidationParameters = new TokenValidationParameters { | |
ValidIssuer = Configuration["JwtIssuer"], | |
ValidAudience = Configuration["JwtIssuer"], | |
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(Configuration["JwtKey"])), | |
ClockSkew = TimeSpan.Zero // remove delay of token when expire | |
}; | |
}); | |
// 3. Configure .Net Core Identity | |
services.AddIdentity<User, Role>(options => { | |
// Password settings. | |
options.Password.RequireDigit = true; | |
options.Password.RequireLowercase = true; | |
options.Password.RequireNonAlphanumeric = false; | |
options.Password.RequireUppercase = true; | |
options.Password.RequiredLength = 6; | |
options.Password.RequiredUniqueChars = 1; | |
// Lockout settings. | |
options.Lockout.DefaultLockoutTimeSpan = TimeSpan.FromMinutes(30); | |
options.Lockout.MaxFailedAccessAttempts = 5; | |
options.Lockout.AllowedForNewUsers = true; | |
// User settings. | |
options.User.AllowedUserNameCharacters = | |
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+"; | |
options.User.RequireUniqueEmail = true; | |
// Set emailed token for both | |
options.Tokens.PasswordResetTokenProvider = TokenOptions.DefaultEmailProvider; | |
options.Tokens.EmailConfirmationTokenProvider = TokenOptions.DefaultEmailProvider; | |
}) | |
.AddEntityFrameworkStores<JwtauthContext>() | |
.AddDefaultTokenProviders(); | |
services.AddMvc(options => { | |
var policy = new AuthorizationPolicyBuilder() | |
.RequireAuthenticatedUser() | |
.Build(); | |
options.Filters.Add(new AuthorizeFilter(policy)); | |
}).SetCompatibilityVersion(CompatibilityVersion.Version_2_2); | |
services.AddAuthorization(options => { | |
options.AddPolicy("AllAllowed", policy => policy.RequireRole("User", "Admin")); | |
options.AddPolicy("OnlyAdminsAllowed", policy => policy.RequireRole("Admin")); | |
}); | |
// 4. Configure Email for sending out security codes | |
services.AddTransient<IEmailSender, EmailSender>(); | |
services.Configure<SendGridOptions>(Configuration.GetSection("SendGrid")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment