// Copyright (c) HelloShop Corporation. All rights reserved. // See the license file in the project root for more information. using HelloShop.ApiService.Extensions; using HelloShop.ApiService.Infrastructure; using HelloShop.ApiService.Services; using HelloShop.ServiceDefaults.Extensions; using Microsoft.Extensions.Options; using Swashbuckle.AspNetCore.SwaggerUI; using Yarp.ReverseProxy.Configuration; var builder = WebApplication.CreateBuilder(args); // Add service defaults & Aspire components. builder.AddServiceDefaults(); // Add services to the container. builder.Services.AddControllers().AddDataAnnotationsLocalization(); builder.Services.AddHttpForwarderWithServiceDiscovery(); builder.Services.AddReverseProxy() .LoadFromConfig(builder.Configuration.GetSection("ReverseProxy")) .LoadFromMemory(routes: [], clusters: []); builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddTransient, OpenApiConfigureOptions>(); builder.Services.AddTransient(); builder.Services.AddOpenApi(); var app = builder.Build(); app.MapDefaultEndpoints(); app.Services.GetRequiredService().ApplicationStarted.Register(async () => { IReverseProxyConfigProvider provider = app.Services.GetRequiredService(); IReadOnlyList routes = await provider.GetRoutesAsync(); IReadOnlyList clusters = await provider.GetClustersAsync(); app.Services.GetRequiredService().Update(routes, clusters); }); app.MapReverseProxy(); app.MapControllers(); app.UseOpenApi(); app.Run();