-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartup.cs
80 lines (67 loc) · 2.78 KB
/
Startup.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using dotnet_todo_api.src.TodoApi.Data;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using Microsoft.IdentityModel.Tokens;
using System.Text;
namespace dotnet_todo_api
{
public class Startup(IConfiguration configuration)
{
private readonly IConfiguration _configuration = configuration;
public void ConfigureServices(IServiceCollection services)
{
// Configure PostgreSQL with Entity Framework Core
services.AddDbContext<ApplicationDbContext>(options =>
options.UseNpgsql(_configuration.GetConnectionString("DefaultConnection")));
// Configure Identity
services.AddIdentity<IdentityUser, IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
services.AddControllers();
services.AddSwaggerGen();
string? secretKey = _configuration["Jwt:Key"];
if (string.IsNullOrEmpty(secretKey))
{
throw new Exception("Jwt Key is missing!");
}
// Add JWT Authentication
_ = services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
{
options.TokenValidationParameters = new TokenValidationParameters
{
ValidateIssuer = true,
ValidateAudience = true,
ValidateLifetime = true,
ValidateIssuerSigningKey = true,
ValidIssuer = _configuration["Jwt:Issuer"], // Read from environment variable
ValidAudience = _configuration["Jwt:Audience"], // Read from environment variable
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(secretKey)) // Read secret key from environment variable
};
});
services.AddAuthorization();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseRouting();
// Enable authentication middleware
app.UseAuthentication();
// Enable authorization middleware
app.UseAuthorization();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "TODO API V1");
});
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}