-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
59 lines (52 loc) · 1.98 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
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.ResponseCompression;
using Microsoft.EntityFrameworkCore;
using RecipeWebApp.Models;
using RecipeWebApp.Services;
WebApplicationBuilder builder = WebApplication.CreateBuilder();
// Додавання служби для очиження тимчасовий фото.
builder.Services.AddHostedService<PhotoCleanupService>();
// Додавання контролерів.
builder.Services.AddControllers();
// Додавання контексту бази даних.
builder.Services.AddDbContext<RecipeDbContext>(options => options.UseSqlServer(builder.Configuration.GetConnectionString("DevConnection")));
// Додавання стиснення відповіді.
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.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(options =>
{
options.Cookie.HttpOnly = false;
options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
options.Cookie.Name = "AuthenticationCookie";
options.AccessDeniedPath = "/login";
options.LoginPath = "/login";
});
// Додавання авторизації.
builder.Services.AddAuthorization();
// Додавання кешування.
builder.Services.AddMemoryCache();
// Додавання сервісу Swagger.
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
WebApplication app = builder.Build();
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseStaticFiles();
app.UseAuthentication();
app.UseAuthorization();
app.UseResponseCompression();
app.MapControllers();
app.Run();