-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
124 lines (94 loc) · 4.91 KB
/
Program.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System.Text;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.EntityFrameworkCore;
using Microsoft.IdentityModel.Tokens;
using Microsoft.OpenApi.Models;
using WebApi7.Data;
using WebApi7.Services;
var builder = WebApplication.CreateBuilder(args); // CreateBuilder ile WebApplication nesnesi oluşturuyoruz
// Add services to the container.
builder.Services.AddControllers(); // AddControllers ile Controller'ları ekliyoruz
//Buradayim..
builder.Services.AddScoped<IAuthService, AuthService>(); // AddScoped ile AuthService'i ekliyoruz
// Add DbContext Service (Modify placeholders as needed)
builder.Services.AddDbContext<DataContext>(options =>
options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"))); // AddDbContext ile DataContext'i ekliyoruz
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "WebAPI 7", Version = "v1.1", Contact = new OpenApiContact { Name = "Mustafa Hepsarilar" }, Description = "SSP WebApi SignIn Service", License = new OpenApiLicense { Name = "Mayasoft Information Systems Ltd" } }); // SwaggerDoc ile Swagger'ın versiyonunu belirliyoruz
// Optionally, add security for protected endpoints:
c.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
{
Description = "JWT Authorization header using the Bearer scheme. Example: \"Authorization: Bearer {token}\"",
Name = "Authorization",
In = ParameterLocation.Header,
Type = SecuritySchemeType.ApiKey,
Scheme = "Bearer"
});
c.AddSecurityRequirement(new OpenApiSecurityRequirement
{
{
new OpenApiSecurityScheme
{
Reference = new OpenApiReference
{
Type = ReferenceType.SecurityScheme,
Id = "Bearer"
},
Scheme = "oauth2",
Name = "Bearer",
In = ParameterLocation.Header
},
new List<string>()
}
});
// Include XML Comments in Swagger
var filePath = Path.Combine(AppContext.BaseDirectory, "WebAPI7.xml"); // XML dosyasının yolunu belirliyoruz
c.IncludeXmlComments(filePath);
//http://localhost:5000/swagger/v1/swagger.json
});
// JWT Configuration -- appsettings.json 'dan builder ile Jwt ayarlarını alıyoruz
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
{
var key = builder.Configuration["Jwt:Key"]; // Jwt Key'i alıyoruz
if (string.IsNullOrWhiteSpace(key)) // Eğer Jwt Key boş ise hata fırlatıyoruz
{
throw new Exception("JWT Key is missing in configuration. Check your appsettings.json"); // Hata fırlatıyoruz
}
options.TokenValidationParameters = new TokenValidationParameters // TokenValidationParameters ile Jwt Token'ın doğrulama parametrelerini belirliyoruz
{
ValidateIssuer = true, // ValidateIssuer ile Issuer'ı doğruluyoruz
ValidIssuer = builder.Configuration["Jwt:Issuer"], // ValidIssuer ile Issuer'ı belirliyoruz
ValidateAudience = true, // ValidateAudience ile Audience'ı doğruluyoruz
ValidAudience = builder.Configuration["Jwt:Audience"], // ValidAudience ile Audience'ı belirliyoruz
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Key"] ?? string.Empty)), // IssuerSigningKey ile Key'i belirliyoruz
ValidateIssuerSigningKey = true, // ValidateIssuerSigningKey ile Key'i doğruluyoruz.
ValidateLifetime = true, // ValidateLifetime ile Token'ın süresini doğruluyoruz
ClockSkew = TimeSpan.FromMinutes(5), // ClockSkew ile Token'ın süresini belirliyoruz
};
});
var app = builder.Build(); // Build ile uygulamayı oluşturuyoruz
// Configure the HTTP request pipeline.
// if (app.Environment.IsDevelopment())
// {
// app.UseSwagger();
// app.UseSwaggerUI();
// }
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "SSP SignIn WebApi v1.0.1"));
}
// Configure HTTPS Redirection - BURADA KALDIM
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
});
app.UseHttpsRedirection(); // UseHttpsRedirection ile Https yönlendirmesini aktif ediyoruz
app.UseAuthentication(); // UseAuthentication ile Authentication'ı aktif ediyoruz
app.UseAuthorization(); // UseAuthorization ile Authorization'ı aktif ediyoruz
app.MapControllers(); // MapControllers ile Controller'ları eşliyoruz
app.Run(); // Run ile uygulamayı çalıştırıyoruz