mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
59 lines
2.1 KiB
C#
59 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Payments
|
|
{
|
|
public class PaymentMethodExtensions
|
|
{
|
|
public static ISupportedPaymentMethod Deserialize(PaymentMethodId paymentMethodId, JToken value, BTCPayNetwork network)
|
|
{
|
|
// Legacy
|
|
if (paymentMethodId.PaymentType == PaymentTypes.BTCLike)
|
|
{
|
|
return BTCPayServer.DerivationStrategy.Parse(((JValue)value).Value<string>(), network);
|
|
}
|
|
//////////
|
|
else if (paymentMethodId.PaymentType == PaymentTypes.LightningLike)
|
|
{
|
|
return JsonConvert.DeserializeObject<Payments.Lightning.LightningSupportedPaymentMethod>(value.ToString());
|
|
}
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public static IPaymentMethodDetails DeserializePaymentMethodDetails(PaymentMethodId paymentMethodId, JObject jobj)
|
|
{
|
|
if(paymentMethodId.PaymentType == PaymentTypes.BTCLike)
|
|
{
|
|
return JsonConvert.DeserializeObject<Payments.Bitcoin.BitcoinLikeOnChainPaymentMethod>(jobj.ToString());
|
|
}
|
|
if (paymentMethodId.PaymentType == PaymentTypes.LightningLike)
|
|
{
|
|
return JsonConvert.DeserializeObject<Payments.Lightning.LightningLikePaymentMethodDetails>(jobj.ToString());
|
|
}
|
|
throw new NotSupportedException(paymentMethodId.PaymentType.ToString());
|
|
}
|
|
|
|
|
|
public static JToken Serialize(ISupportedPaymentMethod factory)
|
|
{
|
|
// Legacy
|
|
if (factory.PaymentId.PaymentType == PaymentTypes.BTCLike)
|
|
{
|
|
return new JValue(((DerivationStrategy)factory).DerivationStrategyBase.ToString());
|
|
}
|
|
//////////////
|
|
else
|
|
{
|
|
var str = JsonConvert.SerializeObject(factory);
|
|
return JObject.Parse(str);
|
|
}
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
}
|
|
}
|