-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
66 lines (59 loc) · 2.12 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
using TasksWebApp;
using Microsoft.AspNetCore.ResponseCompression;
using TasksWebApp.Endpoints;
var builder = WebApplication.CreateBuilder();
// Сервіс для взаємнодії з базою даних.
builder.Services.AddEntityFrameworkSqlite().AddDbContext<ApplicationContext>();
// Сервіс для стиснення відповіді.
builder.Services.AddResponseCompression(options =>
{
options.EnableForHttps = true;
options.Providers.Add<GzipCompressionProvider>();
options.Providers.Add<BrotliCompressionProvider>();
options.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(new[]
{
"text/html",
"application/json"
});
});
// Сервіс для перевірки чи відображати завдання сьогодні сьогодні.
builder.Services.AddSingleton<TaskTodayCheckerService>();
// Ауторизація та аутентифікація.
builder.Services.AddAuthorization();
builder.Services.AddAuthentication("Cookies").AddCookie(options =>
{
options.Cookie.HttpOnly = false;
options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
options.Cookie.Name = "AuthenticationCookie";
});
// Swagger services.
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
// Cors service for testing api in Swager Editor.
builder.Services.AddCors();
var app = builder.Build();
if (app.Environment.IsDevelopment())
{
app.UseCors(builder =>
{
builder.WithOrigins("https://editor.swagger.io")
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials();
});
app.UseSwagger();
app.UseSwaggerUI();
}
// Використати сервіс для стиснення відповіді.
app.UseResponseCompression();
// Запуск щодобової перевірки завдань.
app.Services.StartTaskTodayChecker();
app.UseStaticFiles();
app.UseAuthentication();
app.UseAuthorization();
// Застосування кінцевих точок.
app.UseStaticResourceEndpoints();
app.UseTasksEndpoints();
app.UseUserEndpoints();
app.UseListOfTasksEndpoints();
app.Run();