mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
send notification IPNs on bitpay invoice
This commit is contained in:
parent
31097870a1
commit
4e99ae0dd6
@ -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<string> PostBitPayInvoice([FromBody]BitPayInvoiceRequestModel model)
|
||||
{
|
||||
var invoice = await _bitPayClient.CreateInvoiceAsync(model.ToBitpayClientInvoice());
|
||||
var invoice = await _bitPayClient.CreateInvoiceAsync(model.ToBitpayClientInvoice(_globalSettings));
|
||||
return invoice.Url;
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,8 @@
|
||||
},
|
||||
"bitPay": {
|
||||
"production": false,
|
||||
"base58Secret": "SECRET"
|
||||
"base58Secret": "SECRET",
|
||||
"notificationUrl": "https://bitwarden.com/SECRET"
|
||||
}
|
||||
},
|
||||
"IpRateLimitOptions": {
|
||||
|
@ -54,7 +54,8 @@
|
||||
},
|
||||
"bitPay": {
|
||||
"production": false,
|
||||
"base58Secret": "SECRET"
|
||||
"base58Secret": "SECRET",
|
||||
"notificationUrl": "https://bitwarden.com/SECRET"
|
||||
}
|
||||
},
|
||||
"billingSettings": {
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user