forked from julianperrott/WowClassicGrindBot
-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathProgram.cs
More file actions
199 lines (157 loc) · 5.93 KB
/
Program.cs
File metadata and controls
199 lines (157 loc) · 5.93 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
using Core;
using Frontend;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http.Json;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Serilog;
using SharedLib.Logging;
using Serilog.Templates;
using Serilog.Templates.Themes;
using SharedLib.Converters;
using System;
using System.IO;
using System.Threading;
namespace BlazorServer;
public static class Program
{
public static void Main(string[] args)
{
while (true)
{
bool shutdownRequested = false;
try
{
Log.Information("[Program ] Starting blazor server");
var host = CreateApp(args);
var lifetime = host.Services.GetRequiredService<IHostApplicationLifetime>();
lifetime.ApplicationStopping.Register(() =>
{
shutdownRequested = true;
Log.Warning("[Program ] Graceful shutdown requested");
});
host.Run();
}
catch (Exception ex)
{
if (shutdownRequested)
{
// We were stopping anyway; don't restart-loop just because Dispose threw.
Log.Error(ex, "[Program ] Exception during shutdown; exiting without restart");
break;
}
Log.Fatal(ex, "[Program ] Host crashed – restarting in 3s");
Thread.Sleep(3000);
}
finally
{
Log.CloseAndFlush();
}
}
}
private static WebApplication CreateApp(string[] args)
{
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
builder.Logging.ClearProviders().AddSerilog();
ConfigureServices(builder.Configuration, builder.Services);
return ConfigureApp(builder, builder.Environment);
}
private static void ConfigureServices(IConfiguration configuration, IServiceCollection services)
{
ILoggerFactory logFactory = LoggerFactory.Create(builder =>
{
builder.ClearProviders().AddSerilog();
});
services.AddLogging(builder =>
{
LoggerSink sink = new();
builder.Services.AddSingleton(sink);
Log.Logger = new LoggerConfiguration()
.ReadFrom.Configuration(configuration)
.Enrich.FromLogContext()
.Enrich.With<ShortSourceContextEnricher>()
.WriteTo.Sink(sink)
.WriteTo.File(new ExpressionTemplate(LogOutputTemplates.Default),
"out.log",
rollingInterval: RollingInterval.Day)
.WriteTo.Debug(new ExpressionTemplate(LogOutputTemplates.Default))
.WriteTo.Console(new ExpressionTemplate(LogOutputTemplates.Default, theme: TemplateTheme.Literate))
.CreateLogger();
builder.Services.AddSingleton<Microsoft.Extensions.Logging.ILogger>(logFactory.CreateLogger(string.Empty));
});
Microsoft.Extensions.Logging.ILogger log = logFactory.CreateLogger("Program");
if (log.IsEnabled(LogLevel.Information))
{
log.LogInformation("{Language} {Timestamp}",
Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName,
DateTimeOffset.Now);
}
services.AddStartupConfigurations(configuration);
services.AddWoWProcess(log);
services.AddCoreBase(log);
if (AddonConfig.Exists() && FrameConfig.Exists())
{
services.AddCoreNormal(log);
}
else
{
services.AddCoreConfiguration(log);
}
services.AddFrontend();
services.AddCoreFrontend();
services.AddSingleton(provider =>
provider.GetRequiredService<IOptions<JsonOptions>>().Value.SerializerOptions);
services.Configure<JsonOptions>(options =>
{
options.SerializerOptions.PropertyNameCaseInsensitive = true;
options.SerializerOptions.Converters.Add(new Vector3Converter());
options.SerializerOptions.Converters.Add(new Vector4Converter());
});
services.Configure<HostOptions>(o =>
{
o.ShutdownTimeout = TimeSpan.FromSeconds(1);
});
// Register mDNS advertising service for http://wowbot.local access
if(Environment.GetEnvironmentVariable("USE_MDNS") != null)
{
services.AddHostedService<MdnsAdvertisingService>();
}
services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNameCaseInsensitive = true;
options.JsonSerializerOptions.Converters.Add(new Vector3Converter());
options.JsonSerializerOptions.Converters.Add(new Vector4Converter());
});
services.BuildServiceProvider(
new ServiceProviderOptions { ValidateOnBuild = true });
}
private static WebApplication ConfigureApp(WebApplicationBuilder builder, IWebHostEnvironment env)
{
WebApplication app = builder.Build();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
}
app.UseStaticFiles();
app.UseCustomStaticFiles(env);
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode()
.AddAdditionalAssemblies(typeof(Frontend._Imports).Assembly);
app.UseRouting();
app.UseAntiforgery();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
return app;
}
}