diff --git a/src/Api/Controllers/MiscController.cs b/src/Api/Controllers/MiscController.cs index a56d8f105f..f03fd3fbbd 100644 --- a/src/Api/Controllers/MiscController.cs +++ b/src/Api/Controllers/MiscController.cs @@ -4,16 +4,20 @@ using Bit.Core.Models.Api; using System.Threading.Tasks; using Bit.Core.Utilities; using Microsoft.AspNetCore.Authorization; +using Bit.Core; namespace Bit.Api.Controllers { public class MiscController : Controller { private readonly BitPayClient _bitPayClient; + private readonly GlobalSettings _globalSettings; - public MiscController(BitPayClient bitPayClient) + public MiscController(BitPayClient bitPayClient, + GlobalSettings globalSettings) { _bitPayClient = bitPayClient; + _globalSettings = globalSettings; } [HttpGet("~/alive")] @@ -44,7 +48,7 @@ namespace Bit.Api.Controllers [SelfHosted(NotSelfHostedOnly = true)] public async Task PostBitPayInvoice([FromBody]BitPayInvoiceRequestModel model) { - var invoice = await _bitPayClient.CreateInvoiceAsync(model.ToBitpayClientInvoice()); + var invoice = await _bitPayClient.CreateInvoiceAsync(model.ToBitpayClientInvoice(_globalSettings)); return invoice.Url; } } diff --git a/src/Api/appsettings.json b/src/Api/appsettings.json index cb3cbcd99b..0d06cc3f9b 100644 --- a/src/Api/appsettings.json +++ b/src/Api/appsettings.json @@ -65,7 +65,8 @@ }, "bitPay": { "production": false, - "base58Secret": "SECRET" + "base58Secret": "SECRET", + "notificationUrl": "https://bitwarden.com/SECRET" } }, "IpRateLimitOptions": { diff --git a/src/Billing/appsettings.json b/src/Billing/appsettings.json index e37ecf3abd..40d458262e 100644 --- a/src/Billing/appsettings.json +++ b/src/Billing/appsettings.json @@ -54,7 +54,8 @@ }, "bitPay": { "production": false, - "base58Secret": "SECRET" + "base58Secret": "SECRET", + "notificationUrl": "https://bitwarden.com/SECRET" } }, "billingSettings": { diff --git a/src/Core/GlobalSettings.cs b/src/Core/GlobalSettings.cs index b535f3d93c..5693349534 100644 --- a/src/Core/GlobalSettings.cs +++ b/src/Core/GlobalSettings.cs @@ -191,6 +191,7 @@ namespace Bit.Core { public bool Production { get; set; } public string Base58Secret { get; set; } + public string NotificationUrl { get; set; } } public class InstallationSettings diff --git a/src/Core/Models/Api/Request/BitPayInvoiceRequestModel.cs b/src/Core/Models/Api/Request/BitPayInvoiceRequestModel.cs index 4cd8264467..da5199d601 100644 --- a/src/Core/Models/Api/Request/BitPayInvoiceRequestModel.cs +++ b/src/Core/Models/Api/Request/BitPayInvoiceRequestModel.cs @@ -15,7 +15,7 @@ namespace Bit.Core.Models.Api public string Name { get; set; } public string Email { get; set; } - public NBitpayClient.Invoice ToBitpayClientInvoice() + public NBitpayClient.Invoice ToBitpayClientInvoice(GlobalSettings globalSettings) { var inv = new NBitpayClient.Invoice { @@ -27,7 +27,10 @@ namespace Bit.Core.Models.Api { email = Email, Name = Name - } + }, + NotificationURL = globalSettings.BitPay.NotificationUrl, + FullNotifications = true, + ExtendedNotifications = true }; var posData = string.Empty;