mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Remove gRPC and convert PricingClient to HttpClient wrapper * Add PlanType.GetProductTier extension Many instances of StaticStore use are just to get the ProductTierType of a PlanType, but this can be derived from the PlanType itself without having to fetch the entire plan. * Remove invocations of the StaticStore in non-Test code * Deprecate StaticStore entry points * Run dotnet format * Matt's feedback * Run dotnet format * Rui's feedback * Run dotnet format * Replacements since approval * Run dotnet format
22 lines
726 B
C#
22 lines
726 B
C#
using Bit.Core.Settings;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Core.Billing.Pricing;
|
|
|
|
public static class ServiceCollectionExtensions
|
|
{
|
|
public static void AddPricingClient(this IServiceCollection services)
|
|
{
|
|
services.AddHttpClient<IPricingClient, PricingClient>((serviceProvider, httpClient) =>
|
|
{
|
|
var globalSettings = serviceProvider.GetRequiredService<GlobalSettings>();
|
|
if (string.IsNullOrEmpty(globalSettings.PricingUri))
|
|
{
|
|
return;
|
|
}
|
|
httpClient.BaseAddress = new Uri(globalSettings.PricingUri);
|
|
httpClient.DefaultRequestHeaders.Add("Accept", "application/json");
|
|
});
|
|
}
|
|
}
|