btcpayserver/BTCPayServer/Payments/PayJoin/PayJoinRepository.cs
d11n d5d0be5824
Code formatting updates (#4502)
* Editorconfig: Add space_before_self_closing setting

This was a difference between the way dotnet-format and Rider format code. See https://www.jetbrains.com/help/rider/EditorConfig_Index.html

* Editorconfig: Keep 4 spaces indentation for Swagger JSON files

They are all formatted that way, let's keep it like that.

* Apply dotnet-format, mostly white-space related changes
2023-01-06 22:18:07 +09:00

82 lines
2.5 KiB
C#

using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Data;
using Microsoft.EntityFrameworkCore;
using NBitcoin;
namespace BTCPayServer.Payments.PayJoin
{
public class UTXOLocker : IUTXOLocker
{
private readonly ApplicationDbContextFactory _dbContextFactory;
public UTXOLocker(ApplicationDbContextFactory dbContextFactory)
{
_dbContextFactory = dbContextFactory;
}
public async Task<bool> TryLock(OutPoint outpoint)
{
using var ctx = _dbContextFactory.CreateContext();
ctx.PayjoinLocks.Add(new PayjoinLock() { Id = outpoint.ToString() });
try
{
return await ctx.SaveChangesAsync() == 1;
}
catch (DbUpdateException)
{
return false;
}
}
public async Task<bool> TryUnlock(params OutPoint[] outPoints)
{
using var ctx = _dbContextFactory.CreateContext();
foreach (OutPoint outPoint in outPoints)
{
ctx.PayjoinLocks.Remove(new PayjoinLock() { Id = outPoint.ToString() });
}
try
{
return await ctx.SaveChangesAsync() == outPoints.Length;
}
catch (DbUpdateException)
{
return false;
}
}
public async Task<bool> TryLockInputs(OutPoint[] outPoints)
{
using var ctx = _dbContextFactory.CreateContext();
foreach (OutPoint outPoint in outPoints)
{
ctx.PayjoinLocks.Add(new PayjoinLock()
{
// Random flag so it does not lock same id
// as the lock utxo
Id = "K-" + outPoint.ToString()
});
}
try
{
return await ctx.SaveChangesAsync() == outPoints.Length;
}
catch (DbUpdateException)
{
return false;
}
}
public async Task<HashSet<OutPoint>> FindLocks(OutPoint[] outpoints)
{
var outPointsStr = outpoints.Select(o => o.ToString());
await using var ctx = _dbContextFactory.CreateContext();
return (await ctx.PayjoinLocks.Where(l => outPointsStr.Contains(l.Id)).ToArrayAsync())
.Select(l => OutPoint.Parse(l.Id)).ToHashSet();
}
}
}