From a370dd1149fd56b96a83ee9b9a9652919076a5bc Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 13 Sep 2019 09:58:30 -0400 Subject: [PATCH] apple webhook key --- src/Billing/BillingSettings.cs | 1 + src/Billing/Controllers/AppleController.cs | 2 +- src/Billing/appsettings.json | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Billing/BillingSettings.cs b/src/Billing/BillingSettings.cs index c7948a9a26..d1367e689f 100644 --- a/src/Billing/BillingSettings.cs +++ b/src/Billing/BillingSettings.cs @@ -6,6 +6,7 @@ public virtual string StripeWebhookKey { get; set; } public virtual string StripeWebhookSecret { get; set; } public virtual string BitPayWebhookKey { get; set; } + public virtual string AppleWebhookKey { get; set; } public virtual PayPalSettings PayPal { get; set; } = new PayPalSettings(); public class PayPalSettings diff --git a/src/Billing/Controllers/AppleController.cs b/src/Billing/Controllers/AppleController.cs index b86b81fc6f..43884830e2 100644 --- a/src/Billing/Controllers/AppleController.cs +++ b/src/Billing/Controllers/AppleController.cs @@ -51,7 +51,7 @@ namespace Bit.Billing.Controllers var key = HttpContext.Request.Query.ContainsKey("key") ? HttpContext.Request.Query["key"].ToString() : null; - if(key != _billingSettings.PayPal.WebhookKey) + if(key != _billingSettings.AppleWebhookKey) { return new BadRequestResult(); } diff --git a/src/Billing/appsettings.json b/src/Billing/appsettings.json index 12c20d659f..556b0d4a53 100644 --- a/src/Billing/appsettings.json +++ b/src/Billing/appsettings.json @@ -73,6 +73,7 @@ "stripeWebhookKey": "SECRET", "stripeWebhookSecret": "SECRET", "bitPayWebhookKey": "SECRET", + "appleWebhookKey": "SECRET", "payPal": { "production": false, "businessId": "AD3LAUZSNVPJY",