-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathProgram.cs
More file actions
74 lines (67 loc) · 2.2 KB
/
Program.cs
File metadata and controls
74 lines (67 loc) · 2.2 KB
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
using Masa.Blazor;
using Microsoft.AspNetCore.Components.Authorization;
using Moments.Service;
var dbPath =(Environment.CurrentDirectory +"/moments.db");
if (!File.Exists(dbPath))
{
File.Create(dbPath).Close();
}
IFreeSql SqlFactory(IServiceProvider r)
{
IFreeSql mysql = new FreeSql.FreeSqlBuilder()
.UseConnectionString(FreeSql.DataType.Sqlite, @"Data Source=moments.db")
// .UseMonitorCommand(cmd => Console.WriteLine($"Sql:{cmd.CommandText}"))
// .UseAutoSyncStructure(true)
.Build();
return mysql;
}
var builder = WebApplication.CreateBuilder(args);
builder.Logging.ClearProviders();
builder.Logging.AddConsole();
builder.Services.AddControllers();
builder.Services.AddMasaBlazor(options => { options.ConfigureIcons(IconSet.FontAwesome); });
builder.Services.AddSingleton(SqlFactory);
builder.Services.AddSingleton<ConfigService>();
builder.Services.AddSingleton<GatherService>();
builder.Services.AddSingleton<FriendService>();
builder.Services.AddSingleton<ArticleService>();
builder.Services.AddSingleton<TimedTasksService>();
builder.Services.AddAuthenticationCore();
builder.Services.AddScoped<CustomAuthenticationStateProvider>();
builder.Services.AddScoped<AuthenticationStateProvider>(option =>
option.GetRequiredService<CustomAuthenticationStateProvider>());
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor()
.AddHubOptions(op =>
op.MaximumReceiveMessageSize = 100 * 1024 * 1024 //10M
);
builder.Services.AddCors(options =>
{
options.AddPolicy("AllowAll", corsPolicyBuilder =>
{
corsPolicyBuilder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
builder.Services.AddSingleton<StartService>();
var app = builder.Build();
using (IServiceScope serviceScope = app.Services.CreateScope())
{
serviceScope.ServiceProvider.GetRequiredService<StartService>();
}
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAuthentication();
app.UseAuthorization();
app.UseRouting();
app.MapBlazorHub();
app.MapFallbackToPage("/_Host");
app.MapControllers();
app.UseCors("AllowAll");
app.Run();