retrying network ops, filtering calendar by genuine only by default
This commit is contained in:
parent
9331519649
commit
1d36c8d165
@ -7,7 +7,7 @@ using Overflow.SouthernWater;
|
||||
|
||||
var driver = new MongoClient("mongodb://localhost");
|
||||
|
||||
var api = new SouthernWaterApi(new HttpClient());
|
||||
var api = new SouthernWaterApi(new HttpClient(), NullLogger<SouthernWaterApi>.Instance);
|
||||
await api.LoadApiUrl();
|
||||
|
||||
var runner = new SouthernWaterApiJobRunnerPersisting(api, NullLogger<SouthernWaterApiJobRunner>.Instance, driver.GetDatabase(Static.DatabaseName));
|
||||
|
@ -1,3 +1,6 @@
|
||||
using Microsoft.Extensions.Logging.Abstractions;
|
||||
using Overflow.SouthernWater;
|
||||
|
||||
namespace Overflow.Test;
|
||||
|
||||
public class Tests
|
||||
@ -10,7 +13,7 @@ public class Tests
|
||||
[Test]
|
||||
public async Task Test1()
|
||||
{
|
||||
var southern = new SouthernWater.SouthernWaterApi(new HttpClient());
|
||||
var southern = new SouthernWater.SouthernWaterApi(new HttpClient(), NullLogger<SouthernWaterApi>.Instance);
|
||||
await southern.LoadApiUrl();
|
||||
var spills = await southern.GetSpills();
|
||||
}
|
||||
|
@ -10,7 +10,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
<RadzenScheduler @ref=@scheduler SlotRender=@OnSlotRender style="height: 768px;" TItem="Spill" Data=@Job.Spills StartProperty="eventStart" EndProperty="eventStop"
|
||||
<RadzenScheduler @ref=@scheduler SlotRender=@OnSlotRender style="height: 768px;" TItem="Spill" Data=@Spills StartProperty="eventStart" EndProperty="eventStop"
|
||||
TextProperty="bathingSite" SelectedIndex="2"
|
||||
SlotSelect=@OnSlotSelect AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender
|
||||
AppointmentMove=@OnAppointmentMove >
|
||||
@ -26,9 +26,21 @@ else
|
||||
@code {
|
||||
RadzenScheduler<Spill> scheduler;
|
||||
[Parameter] public SouthernWaterApiJob? Job { get; set; }
|
||||
[Parameter] public bool GenuineOnly { get; set; } = true;
|
||||
|
||||
Dictionary<DateTime, string> events = new Dictionary<DateTime, string>();
|
||||
|
||||
private IEnumerable<Spill> Spills {
|
||||
get
|
||||
{
|
||||
if (GenuineOnly)
|
||||
{
|
||||
return Job.Spills.Where(j => j.status == "Genuine");
|
||||
}
|
||||
else
|
||||
{
|
||||
return Job.Spills;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void OnSlotRender(SchedulerSlotRenderEventArgs args)
|
||||
{
|
||||
|
@ -15,15 +15,20 @@
|
||||
{
|
||||
<RadzenText TextStyle="TextStyle.Body1">Last updated at <b>@job.EndTime</b></RadzenText>
|
||||
}
|
||||
<RadzenStack Orientation="Orientation.Horizontal" AlignItems="AlignItems.Start" Wrap="FlexWrap.Wrap">
|
||||
<RadzenCheckBox @bind-Value=@genuineOnly Name="genuineOnly" />
|
||||
<RadzenLabel Text="Genuine Events Only" Component="genuineOnly" Style="margin-left: 8px; vertical-align: middle;" />
|
||||
</RadzenStack>
|
||||
</RadzenStack>
|
||||
</RadzenCard>
|
||||
|
||||
<SpillsCalendar Job="@job" />
|
||||
<SpillsCalendar Job="@job" GenuineOnly="@genuineOnly" />
|
||||
|
||||
@code {
|
||||
private SouthernWaterApiJob? job;
|
||||
[Inject] private IMongoDatabase database { get; set; }
|
||||
// private bool showIds;
|
||||
private bool genuineOnly = true;
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System.Net.Http.Json;
|
||||
using System.Text.Json;
|
||||
using System.Text.RegularExpressions;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Quartz.Util;
|
||||
|
||||
namespace Overflow.SouthernWater;
|
||||
@ -8,21 +9,29 @@ namespace Overflow.SouthernWater;
|
||||
public partial class SouthernWaterApi
|
||||
{
|
||||
private readonly HttpClient _client;
|
||||
private readonly ILogger<SouthernWaterApi> _logger;
|
||||
|
||||
private static readonly string spillsEndpoint = "Spills/GetHistoricSpills";
|
||||
|
||||
private string baseUrl;
|
||||
private string apiKey;
|
||||
|
||||
public SouthernWaterApi(HttpClient client)
|
||||
public SouthernWaterApi(HttpClient client, ILogger<SouthernWaterApi> logger)
|
||||
{
|
||||
_client = client;
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
[GeneratedRegex(@".*const APIURL = '(?<APIURL>.*)'.*\n.*const APIGWKEY = '(?<APIKEY>.*)'.*", RegexOptions.IgnoreCase)]
|
||||
private static partial Regex ApiUrlAndKey();
|
||||
|
||||
public async Task LoadApiUrl()
|
||||
{
|
||||
var success = false;
|
||||
|
||||
while (!success)
|
||||
{
|
||||
try
|
||||
{
|
||||
var request = new HttpRequestMessage
|
||||
{
|
||||
@ -45,6 +54,9 @@ public partial class SouthernWaterApi
|
||||
var content = await _client.SendAsync(request);
|
||||
|
||||
content.EnsureSuccessStatusCode();
|
||||
|
||||
success = true;
|
||||
|
||||
var contentString = await content.Content.ReadAsStringAsync();
|
||||
|
||||
Match m = ApiUrlAndKey().Match(contentString);
|
||||
@ -62,11 +74,25 @@ public partial class SouthernWaterApi
|
||||
this.apiKey = apiKey.Value;
|
||||
}
|
||||
}
|
||||
catch (HttpRequestException e)
|
||||
{
|
||||
_logger.LogError(e, "HTTP Exception while API details, waiting {} before retrying", Static.Interval);
|
||||
await Task.Delay(Static.Interval);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<PagedItems<Spill>?> GetSpills(int page = 1, JsonSerialiser? jsonSerialiser = null)
|
||||
{
|
||||
if (baseUrl.IsNullOrWhiteSpace()) await LoadApiUrl();
|
||||
|
||||
PagedItems<Spill>? parsedPage = null;
|
||||
var success = false;
|
||||
|
||||
while (!success)
|
||||
{
|
||||
try
|
||||
{
|
||||
var request = new HttpRequestMessage()
|
||||
{
|
||||
RequestUri = new Uri(baseUrl + spillsEndpoint + "?page=" + page),
|
||||
@ -81,7 +107,10 @@ public partial class SouthernWaterApi
|
||||
{ "DNT", "1" },
|
||||
{ "User-Agent", "Mozilla/5.0 (Windows NT 10.0; rv:126.0) Gecko/20100101 Firefox/126.0" },
|
||||
{ "Upgrade-Insecure-Requests", "1" },
|
||||
{"Referer", "https://www.southernwater.co.uk/our-region/clean-rivers-and-seas-task-force/beachbuoy-historic-release-table/"},
|
||||
{
|
||||
"Referer",
|
||||
"https://www.southernwater.co.uk/our-region/clean-rivers-and-seas-task-force/beachbuoy-historic-release-table/"
|
||||
},
|
||||
{ "x-Gateway-APIKey", apiKey },
|
||||
{ "X-Requested-With", "XMLHttpRequest" },
|
||||
}
|
||||
@ -91,7 +120,10 @@ public partial class SouthernWaterApi
|
||||
|
||||
content.EnsureSuccessStatusCode();
|
||||
|
||||
var parsedPage = (PagedItems<Spill>?) await content.Content.ReadFromJsonAsync(typeof(PagedItems<Spill>), jsonSerialiser ?? new JsonSerialiser());
|
||||
success = true;
|
||||
|
||||
parsedPage = (PagedItems<Spill>?)await content.Content.ReadFromJsonAsync(typeof(PagedItems<Spill>),
|
||||
jsonSerialiser ?? new JsonSerialiser());
|
||||
|
||||
if (parsedPage is not null)
|
||||
{
|
||||
@ -101,6 +133,13 @@ public partial class SouthernWaterApi
|
||||
x.eventStop = x.eventStop.ToUniversalTime();
|
||||
});
|
||||
}
|
||||
}
|
||||
catch (HttpRequestException e)
|
||||
{
|
||||
_logger.LogError(e, "HTTP Exception while loading page [{}], waiting {} before retrying", page, Static.Interval);
|
||||
await Task.Delay(Static.Interval);
|
||||
}
|
||||
}
|
||||
|
||||
return parsedPage;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user