diff --git a/complete/Api/Api.csproj b/complete/Api/Api.csproj index b727a16..6b0a352 100644 --- a/complete/Api/Api.csproj +++ b/complete/Api/Api.csproj @@ -12,4 +12,7 @@ - \ No newline at end of file + + + + diff --git a/complete/Api/Data/NwsManager.cs b/complete/Api/Data/NwsManager.cs index e6fdc1c..6482843 100644 --- a/complete/Api/Data/NwsManager.cs +++ b/complete/Api/Data/NwsManager.cs @@ -1,12 +1,13 @@ using System.Text.Json; using System.Web; +using System.Reflection; using Microsoft.AspNetCore.Http.HttpResults; using Microsoft.Extensions.Caching.Memory; using Api.Data; namespace Api { - public class NwsManager(HttpClient httpClient, IMemoryCache cache, IWebHostEnvironment webHostEnvironment) + public class NwsManager(HttpClient httpClient, IMemoryCache cache) { private static readonly JsonSerializerOptions options = new(JsonSerializerDefaults.Web); @@ -25,15 +26,16 @@ public class NwsManager(HttpClient httpClient, IMemoryCache cache, IWebHostEnvir // .Distinct() // .ToArray() ?? []; - // Deserialize the zones.json file from the wwwroot folder - var zonesFilePath = Path.Combine(webHostEnvironment.WebRootPath, "zones.json"); - if (!File.Exists(zonesFilePath)) + // Deserialize the zones.json file from the embedded resource + var assembly = Assembly.GetExecutingAssembly(); + var resourceName = "Api.wwwroot.zones.json"; + using var stream = assembly.GetManifestResourceStream(resourceName); + if (stream == null) { return []; } - using var zonesJson = File.OpenRead(zonesFilePath); - var zones = await JsonSerializer.DeserializeAsync(zonesJson, options); + var zones = await JsonSerializer.DeserializeAsync(stream, options); return zones?.Features ?.Where(f => f.Properties?.ObservationStations?.Count > 0) @@ -122,4 +124,4 @@ public static IServiceCollection AddNwsManager(this IServiceCollection services) return app; } } -} \ No newline at end of file +}