mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
cf206e64a7
* Add Lightning payout support * Adjust Greenfield API to allow other payment types for Payouts * Pull payment view: Improve payment method select * Pull payments view: Update JS * Pull payments view: Table improvements * Pull payment form: Remove duplicate name field * Cleanup Lightning branch after rebasing * Update swagger documnetation for Lightning support * Remove required requirement for amount in pull payments * Adapt Refund endpoint to support multiple playment methods * Support LNURL Pay for Pull Payments * Revert "Remove required requirement for amount in pull payments" This reverts commit 96cb78939d43b7be61ee2d257800ccd1cce45c4c. * Support Lightning address payout claims * Fix lightning claim handling and provide better error messages * Fix tests Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
63 lines
2.7 KiB
C#
63 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Services;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public static class PayoutExtensions
|
|
{
|
|
public static async Task<PayoutData> GetPayout(this DbSet<PayoutData> payouts, string payoutId, string storeId, bool includePullPayment = false, bool includeStore = false)
|
|
{
|
|
IQueryable<PayoutData> query = payouts;
|
|
if (includePullPayment)
|
|
query = query.Include(p => p.PullPaymentData);
|
|
if (includeStore)
|
|
query = query.Include(p => p.PullPaymentData.StoreData);
|
|
var payout = await query.Where(p => p.Id == payoutId &&
|
|
p.PullPaymentData.StoreId == storeId).FirstOrDefaultAsync();
|
|
if (payout is null)
|
|
return null;
|
|
return payout;
|
|
}
|
|
|
|
public static PaymentMethodId GetPaymentMethodId(this PayoutData data)
|
|
{
|
|
return PaymentMethodId.TryParse(data.PaymentMethodId, out var paymentMethodId)? paymentMethodId : null;
|
|
}
|
|
public static PayoutBlob GetBlob(this PayoutData data, BTCPayNetworkJsonSerializerSettings serializers)
|
|
{
|
|
return JsonConvert.DeserializeObject<PayoutBlob>(Encoding.UTF8.GetString(data.Blob), serializers.GetSerializer(data.GetPaymentMethodId().CryptoCode));
|
|
}
|
|
public static void SetBlob(this PayoutData data, PayoutBlob blob, BTCPayNetworkJsonSerializerSettings serializers)
|
|
{
|
|
data.Blob = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(blob, serializers.GetSerializer(data.GetPaymentMethodId().CryptoCode)));
|
|
}
|
|
|
|
public static void SetProofBlob(this PayoutData data, ManualPayoutProof blob)
|
|
{
|
|
if(blob is null)
|
|
return;
|
|
var bytes = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(blob));
|
|
// We only update the property if the bytes actually changed, this prevent from hammering the DB too much
|
|
if (data.Proof is null || bytes.Length != data.Proof.Length || !bytes.SequenceEqual(data.Proof))
|
|
{
|
|
data.Proof = bytes;
|
|
}
|
|
}
|
|
|
|
public static IEnumerable<PaymentMethodId> GetSupportedPaymentMethods(
|
|
this IEnumerable<IPayoutHandler> payoutHandlers, List<PaymentMethodId> paymentMethodIds = null)
|
|
{
|
|
return payoutHandlers.SelectMany(handler => handler.GetSupportedPaymentMethods())
|
|
.Where(id => paymentMethodIds is null || paymentMethodIds.Contains(id));
|
|
}
|
|
}
|
|
}
|