📄
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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
using BfiMonitor; using HuaweiWifiSms.Grpc; using Microsoft.Extensions.Options; using Quartz; var builder = WebApplication.CreateBuilder(args); builder.ConfigureOpenTelemetry(); builder.Services.AddOptions<MonitorOptions>().BindConfiguration("Monitor"); builder.Services.AddGrpcClient<SmsSender.SmsSenderClient>( (sp, o) => { var opts = sp.GetRequiredService<IOptions<MonitorOptions>>().Value; o.Address = new Uri(opts.SmsSenderAddress); } ); builder.Services.AddSingleton<PlaywrightBrowserService>(); builder.Services.AddHostedService(sp => sp.GetRequiredService<PlaywrightBrowserService>()); builder.Services.AddSingleton<ScreeningRepository>(); builder.Services.AddSingleton<MonitoringCheckScheduler>(); builder.Services.AddSingleton<IntervalScheduler>(); builder.Services.AddSingleton(TimeProvider.System); var intervalSeconds = builder.Configuration.GetValue("Monitor:IntervalSeconds", 300); builder.Services.AddQuartz(q => { q.AddJob<ScheduleMonitoringChecksJob>(QuartzScheduling.ScheduleMonitoringChecksJobKey); q.AddTrigger(t => t.ForJob(QuartzScheduling.ScheduleMonitoringChecksJobKey) .WithIdentity(QuartzScheduling.ScheduleMonitoringChecksTriggerKey) .StartNow() .WithSimpleSchedule(s => s.WithIntervalInSeconds(intervalSeconds).RepeatForever()) ); q.AddJob<SendSmsJob>(SendSmsJob.Key, j => j.StoreDurably()); }); builder.Services.AddQuartzHostedService(o => o.WaitForJobsToComplete = true); var app = builder.Build(); await app.Services.GetRequiredService<IntervalScheduler>().ApplyStoredIntervalAsync(); app.UseDefaultFiles(); app.UseStaticFiles(); app.MapGet( "/api/status", async (IOptions<MonitorOptions> options, ScreeningRepository repository, CancellationToken ct) => { var settings = await repository.GetAppSettingsAsync(ct); return Results.Json( new { settings.IntervalSeconds, settings.DefaultPhoneNumbers, options.Value.DefaultSelector, RunningMonitorings = await repository.CountRunningMonitoringsAsync(ct), ActiveMonitorings = await repository.CountActiveMonitoringsAsync(ct), } ); } ); app.MapGet( "/api/settings", async (ScreeningRepository repository, CancellationToken ct) => Results.Json(await repository.GetAppSettingsAsync(ct)) ); app.MapPut( "/api/settings", async ( UpdateSettingsRequest request, ScreeningRepository repository, IntervalScheduler intervalScheduler, CancellationToken ct ) => { if (request.IntervalSeconds < 60) { return Results.BadRequest(new { error = "Interval must be at least 60 seconds." }); } var settings = await repository.UpdateAppSettingsAsync( request.IntervalSeconds, request.DefaultPhoneNumbers, ct ); await intervalScheduler.RescheduleAsync(settings.IntervalSeconds, ct); return Results.Json(settings); } ); app.MapGet( "/api/monitorings", async (ScreeningRepository repository, CancellationToken ct, bool includeArchived = false) => Results.Json(await repository.GetMonitoringsAsync(includeArchived, ct)) ); app.MapPost( "/api/monitorings", async ( CreateMonitoringRequest request, ScreeningRepository repository, TimeProvider timeProvider, IOptions<MonitorOptions> options, CancellationToken ct ) => { if (string.IsNullOrWhiteSpace(request.Url)) { return Results.BadRequest(new { error = "Url is required." }); } if (!Uri.TryCreate(request.Url, UriKind.Absolute, out _)) { return Results.BadRequest(new { error = "Url must be an absolute URL." }); } var selector = string.IsNullOrWhiteSpace(request.Selector) ? options.Value.DefaultSelector : request.Selector.Trim(); var settings = await repository.GetAppSettingsAsync(ct); var phoneNumbers = request.PhoneNumbers ?? settings.DefaultPhoneNumbers; var monitoring = await repository.CreateMonitoringAsync( request.Url.Trim(), selector, request.Name?.Trim() ?? "", phoneNumbers, timeProvider.GetUtcNow(), ct ); return Results.Created($"/api/monitorings/{monitoring.Id}", monitoring); } ); app.MapPut( "/api/monitorings/{id:int}", async (int id, UpdateMonitoringRequest request, ScreeningRepository repository, CancellationToken ct) => { if (string.IsNullOrWhiteSpace(request.Url)) { return Results.BadRequest(new { error = "Url is required." }); } if (!Uri.TryCreate(request.Url, UriKind.Absolute, out _)) { return Results.BadRequest(new { error = "Url must be an absolute URL." }); } if (string.IsNullOrWhiteSpace(request.Selector)) { return Results.BadRequest(new { error = "Selector is required." }); } if (await repository.GetMonitoringByIdAsync(id, ct) is null) { return Results.NotFound(); } var monitoring = await repository.UpdateMonitoringAsync( id, request.Url.Trim(), request.Selector.Trim(), request.Name?.Trim() ?? "", request.PhoneNumbers, ct ); return monitoring is null ? Results.Conflict(new { error = "Archived monitorings cannot be edited." }) : Results.Json(monitoring); } ); app.MapPost( "/api/monitorings/{id:int}/archive", async (int id, ScreeningRepository repository, TimeProvider timeProvider, CancellationToken ct) => { if (await repository.GetMonitoringByIdAsync(id, ct) is null) { return Results.NotFound(); } if (!await repository.ArchiveMonitoringAsync(id, timeProvider.GetUtcNow(), ct)) { return Results.Conflict(new { error = "Monitoring is already archived." }); } return Results.NoContent(); } ); app.MapPost( "/api/monitorings/{id:int}/pause", async (int id, ScreeningRepository repository, TimeProvider timeProvider, CancellationToken ct) => { if (await repository.GetMonitoringByIdAsync(id, ct) is null) { return Results.NotFound(); } if (!await repository.PauseMonitoringAsync(id, timeProvider.GetUtcNow(), ct)) { return Results.Conflict(new { error = "Monitoring is archived or already paused." }); } return Results.NoContent(); } ); app.MapPost( "/api/monitorings/{id:int}/play", async (int id, ScreeningRepository repository, CancellationToken ct) => { if (await repository.GetMonitoringByIdAsync(id, ct) is null) { return Results.NotFound(); } if (!await repository.ResumeMonitoringAsync(id, ct)) { return Results.Conflict(new { error = "Monitoring is archived or not paused." }); } return Results.NoContent(); } ); app.MapPost( "/api/monitorings/trigger-all", async (MonitoringCheckScheduler scheduler, ScreeningRepository repository, CancellationToken ct) => { var monitorings = await repository.GetNonArchivedMonitoringsAsync(ct); if (monitorings.Count == 0) { return Results.Conflict(new { error = "No monitorings available to scan." }); } var scheduled = await scheduler.TriggerAllAsync(ct); return Results.Accepted(value: new { scheduled }); } ); app.MapPost( "/api/monitorings/{id:int}/trigger", async (int id, MonitoringCheckScheduler scheduler, ScreeningRepository repository, CancellationToken ct) => { var monitoring = await repository.GetMonitoringByIdAsync(id, ct); if (monitoring is null) { return Results.NotFound(); } if (monitoring.ArchivedAt is not null) { return Results.Conflict(new { error = "Archived monitorings cannot be scanned." }); } await scheduler.TriggerAsync(id, ct); return Results.Accepted($"/api/monitorings/{id}", new { id }); } ); app.MapGet( "/api/detections", async (ScreeningRepository repository, CancellationToken ct, int? monitorId = null, int limit = 50) => { var detections = await repository.GetDetectionsAsync(monitorId, Math.Clamp(limit, 1, 200), ct); return Results.Json( detections.Select(d => new { d.Id, d.MonitorId, d.DetectedAt, Preview = d.Html.Length > 200 ? d.Html[..200] + "…" : d.Html, }) ); } ); app.MapGet( "/api/detections/{id:int}", async (int id, ScreeningRepository repository, CancellationToken ct) => { var detection = await repository.GetDetectionByIdAsync(id, ct); return detection is null ? Results.NotFound() : Results.Json(detection); } ); app.Run();