mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
inject IOptions for billing settings
This commit is contained in:
parent
3b951ce5cc
commit
1b5652fb7c
@ -5,6 +5,7 @@ using System.Net.Http.Headers;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.Extensions.Options;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Bit.Billing.Utilities
|
namespace Bit.Billing.Utilities
|
||||||
@ -18,12 +19,13 @@ namespace Bit.Billing.Utilities
|
|||||||
|
|
||||||
private AuthResponse _authResponse;
|
private AuthResponse _authResponse;
|
||||||
|
|
||||||
public PayPalClient(BillingSettings billingSettings)
|
public PayPalClient(IOptions<BillingSettings> billingSettings)
|
||||||
{
|
{
|
||||||
_baseApiUrl = _baseApiUrl = !billingSettings.PayPal.Production ? "https://api.sandbox.paypal.com/{0}" :
|
var bSettings = billingSettings?.Value;
|
||||||
|
_baseApiUrl = _baseApiUrl = !bSettings.PayPal.Production ? "https://api.sandbox.paypal.com/{0}" :
|
||||||
"https://api.paypal.com/{0}";
|
"https://api.paypal.com/{0}";
|
||||||
_clientId = billingSettings.PayPal.ClientId;
|
_clientId = bSettings.PayPal.ClientId;
|
||||||
_clientSecret = billingSettings.PayPal.ClientSecret;
|
_clientSecret = bSettings.PayPal.ClientSecret;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> VerifyWebhookAsync(string webhookJson, IHeaderDictionary headers, string webhookId)
|
public async Task<bool> VerifyWebhookAsync(string webhookJson, IHeaderDictionary headers, string webhookId)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user