blob: f7b9b4b78d99b5b0cdb702cdbbd195ff6e55559d (
plain)
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
|
using System.Text.Json;
using Elements.Backend.Services;
using Elements.Data;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Authentication.Google;
using Microsoft.EntityFrameworkCore;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRouting(options => options.LowercaseUrls = true);
builder.Services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
});
if (builder.Environment.IsDevelopment())
{
builder.Services.AddDbContext<ApplicationDbContext>(options =>
{
options.UseSqlite("Data Source=elements.db");
});
}
builder.Services
.AddAuthentication(options =>
{
options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
})
.AddCookie(options =>
{
options.Events = new()
{
OnRedirectToLogin = (ctx) =>
{
ctx.Response.StatusCode = 401;
return Task.CompletedTask;
},
OnRedirectToAccessDenied = (ctx) =>
{
ctx.Response.StatusCode = 401;
return Task.CompletedTask;
}
};
});
builder.Services.AddScoped<FinishVoteService>();
builder.Services.AddSingleton<PeriodicService>();
builder.Services.AddHostedService(
provider => provider.GetRequiredService<PeriodicService>());
var app = builder.Build();
app.UseHttpsRedirection();
app.UseAuthentication();
app.UseAuthorization();
app.MapControllers();
app.Run();
|