2024-03-20 00:37:31 +00:00
import serialize from '@/api/resolvers/serial.js'
2024-01-08 22:37:58 +00:00
import {
2024-02-14 23:31:25 +00:00
getInvoice , getPayment , cancelHodlInvoice , deletePayment ,
2024-01-08 22:37:58 +00:00
subscribeToInvoices , subscribeToPayments , subscribeToInvoice
} from 'ln-service'
2024-03-25 23:47:23 +00:00
import { notifyDeposit , notifyWithdrawal } from '@/lib/webPush'
2024-03-20 00:37:31 +00:00
import { INVOICE _RETENTION _DAYS } from '@/lib/constants'
import { datePivot , sleep } from '@/lib/time.js'
2024-01-10 15:50:42 +00:00
import retry from 'async-retry'
2024-04-16 18:59:46 +00:00
import { addWalletLog } from '@/api/resolvers/wallet'
import { msatsToSats , numWithUnits } from '@/lib/format'
2024-07-01 17:02:29 +00:00
import { holdAction , settleAction , settleActionError } from './paidAction'
2022-01-17 17:41:17 +00:00
2024-01-08 22:37:58 +00:00
export async function subscribeToWallet ( args ) {
await subscribeToDeposits ( args )
await subscribeToWithdrawals ( args )
}
2024-01-10 15:50:42 +00:00
// lnd subscriptions can fail, so they need to be retried
function subscribeForever ( subscribe ) {
retry ( async bail => {
let sub
try {
return await new Promise ( ( resolve , reject ) => {
2024-04-02 19:36:00 +00:00
sub = subscribe ( resolve , bail )
2024-01-10 15:50:42 +00:00
if ( ! sub ) {
2024-01-20 22:57:52 +00:00
return bail ( new Error ( 'function passed to subscribeForever must return a subscription object or promise' ) )
}
if ( sub . then ) {
// sub is promise
sub . then ( sub => sub . on ( 'error' , reject ) )
} else {
sub . on ( 'error' , reject )
2024-01-10 15:50:42 +00:00
}
} )
} catch ( error ) {
2024-01-07 17:00:24 +00:00
console . error ( error )
2024-01-10 15:50:42 +00:00
throw new Error ( 'error subscribing - trying again' )
} finally {
sub ? . removeAllListeners ( )
}
} ,
// retry every .1-10 seconds forever
{ forever : true , minTimeout : 100 , maxTimeout : 10000 , onRetry : e => console . error ( e . message ) } )
}
2024-01-08 22:37:58 +00:00
const logEvent = ( name , args ) => console . log ( ` event ${ name } triggered with args ` , args )
const logEventError = ( name , error ) => console . error ( ` error running ${ name } ` , error )
async function subscribeToDeposits ( args ) {
const { models , lnd } = args
2024-01-20 22:57:52 +00:00
subscribeForever ( async ( ) => {
const [ lastConfirmed ] = await models . $queryRaw `
2024-01-08 22:37:58 +00:00
SELECT "confirmedIndex"
FROM "Invoice"
ORDER BY "confirmedIndex" DESC NULLS LAST
LIMIT 1 `
2024-01-10 15:50:42 +00:00
const sub = subscribeToInvoices ( { lnd , confirmed _after : lastConfirmed ? . confirmedIndex } )
sub . on ( 'invoice_updated' , async ( inv ) => {
try {
if ( inv . secret ) {
logEvent ( 'invoice_updated' , inv )
await checkInvoice ( { data : { hash : inv . id } , ... args } )
} else {
// this is a HODL invoice. We need to use SubscribeToInvoice which has is_held transitions
// https://api.lightning.community/api/lnd/invoices/subscribe-single-invoice
// SubscribeToInvoices is only for invoice creation and settlement transitions
// https://api.lightning.community/api/lnd/lightning/subscribe-invoices
subscribeToHodlInvoice ( { hash : inv . id , ... args } )
}
} catch ( error ) {
logEventError ( 'invoice_updated' , error )
2024-01-08 22:37:58 +00:00
}
2024-01-10 15:50:42 +00:00
} )
return sub
2024-01-08 22:37:58 +00:00
} )
2022-01-17 17:41:17 +00:00
2024-07-01 17:02:29 +00:00
// check pending deposits as a redundancy in case we failed to rehcord
2024-01-08 22:37:58 +00:00
// an invoice_updated event
await checkPendingDeposits ( args )
}
2024-01-10 15:50:42 +00:00
function subscribeToHodlInvoice ( args ) {
const { lnd , hash } = args
subscribeForever ( ( resolve , reject ) => {
const sub = subscribeToInvoice ( { id : hash , lnd } )
sub . on ( 'invoice_updated' , async ( inv ) => {
logEvent ( 'hodl_invoice_updated' , inv )
try {
// record the is_held transition
if ( inv . is _held ) {
await checkInvoice ( { data : { hash : inv . id } , ... args } )
// after that we can stop listening for updates
resolve ( )
2024-01-08 22:37:58 +00:00
}
2024-01-10 15:50:42 +00:00
} catch ( error ) {
logEventError ( 'hodl_invoice_updated' , error )
reject ( error )
}
2024-01-08 22:37:58 +00:00
} )
2024-01-10 15:50:42 +00:00
return sub
} )
2024-01-08 22:37:58 +00:00
}
2022-01-17 17:41:17 +00:00
2024-07-01 17:02:29 +00:00
export async function checkInvoice ( { data : { hash } , boss , models , lnd } ) {
2024-01-08 22:37:58 +00:00
const inv = await getInvoice ( { id : hash , lnd } )
2023-08-31 02:48:49 +00:00
2024-01-08 22:37:58 +00:00
// invoice could be created by LND but wasn't inserted into the database yet
// this is expected and the function will be called again with the updates
const dbInv = await models . invoice . findUnique ( { where : { hash } } )
if ( ! dbInv ) {
console . log ( 'invoice not found in database' , hash )
return
}
2023-08-31 02:48:49 +00:00
2024-01-08 22:37:58 +00:00
if ( inv . is _confirmed ) {
2024-07-01 17:02:29 +00:00
if ( dbInv . actionType ) {
return await settleAction ( { data : { invoiceId : dbInv . id } , models , lnd , boss } )
}
2024-01-08 22:37:58 +00:00
// NOTE: confirm invoice prevents double confirmations (idempotent)
// ALSO: is_confirmed and is_held are mutually exclusive
// that is, a hold invoice will first be is_held but not is_confirmed
// and once it's settled it will be is_confirmed but not is_held
2024-04-10 00:49:20 +00:00
const [ [ { confirm _invoice : code } ] ] = await serialize ( [
2024-03-19 20:43:29 +00:00
models . $queryRaw ` SELECT confirm_invoice( ${ inv . id } , ${ Number ( inv . received _mtokens ) } ) ` ,
2024-01-08 22:37:58 +00:00
models . invoice . update ( { where : { hash } , data : { confirmedIndex : inv . confirmed _index } } )
2024-04-10 00:49:20 +00:00
] , { models } )
2024-01-08 22:37:58 +00:00
2024-02-16 18:27:15 +00:00
// don't send notifications for JIT invoices
2024-01-08 22:37:58 +00:00
if ( dbInv . preimage ) return
2024-03-19 20:43:29 +00:00
if ( code === 0 ) {
2024-03-19 22:43:04 +00:00
notifyDeposit ( dbInv . userId , { comment : dbInv . comment , ... inv } )
2024-03-19 20:43:29 +00:00
}
2024-01-08 22:37:58 +00:00
return await boss . send ( 'nip57' , { hash } )
2023-11-21 23:32:22 +00:00
}
2023-08-31 02:48:49 +00:00
2024-01-10 15:50:42 +00:00
if ( inv . is _held ) {
2024-07-01 17:02:29 +00:00
if ( dbInv . actionType ) {
return await holdAction ( { data : { invoiceId : dbInv . id } , models , lnd , boss } )
}
2024-02-16 18:27:15 +00:00
// First query makes sure that after payment, JIT invoices are settled
2024-02-01 16:05:16 +00:00
// within 60 seconds or they will be canceled to minimize risk of
// force closures or wallets banning us.
// Second query is basically confirm_invoice without setting confirmed_at
2024-01-10 15:50:42 +00:00
// and without setting the user balance
// those will be set when the invoice is settled by user action
2024-02-01 16:05:16 +00:00
const expiresAt = new Date ( Math . min ( dbInv . expiresAt , datePivot ( new Date ( ) , { seconds : 60 } ) ) )
2024-04-10 00:49:20 +00:00
return await serialize ( [
2024-02-01 16:05:16 +00:00
models . $queryRaw `
INSERT INTO pgboss . job ( name , data , retrylimit , retrybackoff , startafter )
VALUES ( 'finalizeHodlInvoice' , jsonb _build _object ( 'hash' , $ { hash } ) , 21 , true , $ { expiresAt } ) ` ,
models . invoice . update ( {
where : { hash } ,
data : {
msatsReceived : Number ( inv . received _mtokens ) ,
expiresAt ,
isHeld : true
}
2024-04-10 00:49:20 +00:00
} )
] , { models } )
2024-01-10 15:50:42 +00:00
}
2023-11-21 23:32:22 +00:00
if ( inv . is _canceled ) {
2024-07-01 17:02:29 +00:00
if ( dbInv . actionType ) {
return await settleActionError ( { data : { invoiceId : dbInv . id } , models , lnd , boss } )
}
2024-04-10 00:49:20 +00:00
return await serialize (
2023-11-21 23:32:22 +00:00
models . invoice . update ( {
where : {
hash : inv . id
} ,
data : {
cancelled : true
}
2024-04-10 00:49:20 +00:00
} ) , { models }
)
2023-11-21 23:32:22 +00:00
}
2024-01-08 22:37:58 +00:00
}
2023-08-31 02:48:49 +00:00
2024-01-08 22:37:58 +00:00
async function subscribeToWithdrawals ( args ) {
const { lnd } = args
2023-08-31 02:48:49 +00:00
2024-01-08 22:37:58 +00:00
// https://www.npmjs.com/package/ln-service#subscribetopayments
2024-01-10 15:50:42 +00:00
subscribeForever ( ( ) => {
const sub = subscribeToPayments ( { lnd } )
sub . on ( 'confirmed' , async ( payment ) => {
logEvent ( 'confirmed' , payment )
try {
await checkWithdrawal ( { data : { hash : payment . id } , ... args } )
} catch ( error ) {
logEventError ( 'confirmed' , error )
}
} )
sub . on ( 'failed' , async ( payment ) => {
logEvent ( 'failed' , payment )
try {
await checkWithdrawal ( { data : { hash : payment . id } , ... args } )
} catch ( error ) {
logEventError ( 'failed' , error )
}
} )
return sub
2024-01-08 22:37:58 +00:00
} )
2023-08-31 02:48:49 +00:00
2024-01-08 22:37:58 +00:00
// check pending withdrawals since they might have been paid while worker was down
await checkPendingWithdrawals ( args )
2022-01-17 17:41:17 +00:00
}
2024-01-08 22:37:58 +00:00
async function checkWithdrawal ( { data : { hash } , boss , models , lnd } ) {
2024-04-16 18:59:46 +00:00
const dbWdrwl = await models . withdrawl . findFirst ( { where : { hash , status : null } , include : { wallet : true } } )
2024-01-08 22:37:58 +00:00
if ( ! dbWdrwl ) {
// [WARNING] LND paid an invoice that wasn't created via the SN GraphQL API.
// >>> an adversary might be draining our funds right now <<<
console . error ( 'unexpected outgoing payment detected:' , hash )
// TODO: log this in Slack
return
}
2023-11-21 23:32:22 +00:00
let wdrwl
let notFound = false
try {
wdrwl = await getPayment ( { id : hash , lnd } )
} catch ( err ) {
if ( err [ 1 ] === 'SentPaymentNotFound' ) {
notFound = true
} else {
2024-01-08 22:37:58 +00:00
console . error ( 'error getting payment' , err )
2023-11-21 23:32:22 +00:00
return
2022-01-17 17:41:17 +00:00
}
2023-11-21 23:32:22 +00:00
}
2022-01-17 17:41:17 +00:00
2023-11-21 23:32:22 +00:00
if ( wdrwl ? . is _confirmed ) {
const fee = Number ( wdrwl . payment . fee _mtokens )
const paid = Number ( wdrwl . payment . mtokens ) - fee
2024-04-10 00:49:20 +00:00
const [ { confirm _withdrawl : code } ] = await serialize (
models . $queryRaw ` SELECT confirm_withdrawl( ${ dbWdrwl . id } ::INTEGER, ${ paid } , ${ fee } ) ` ,
{ models }
)
2024-03-25 23:47:23 +00:00
if ( code === 0 ) {
notifyWithdrawal ( dbWdrwl . userId , wdrwl )
2024-04-30 01:39:31 +00:00
if ( dbWdrwl . wallet ) {
// this was an autowithdrawal
const message = ` autowithdrawal of ${ numWithUnits ( msatsToSats ( paid ) , { abbreviate : false } )} with ${ numWithUnits ( msatsToSats ( fee ) , { abbreviate : false } )} as fee `
await addWalletLog ( { wallet : dbWdrwl . wallet . type , level : 'SUCCESS' , message } , { models , me : { id : dbWdrwl . userId } } )
}
2024-04-16 18:59:46 +00:00
}
2023-11-21 23:32:22 +00:00
} else if ( wdrwl ? . is _failed || notFound ) {
2024-04-16 18:59:46 +00:00
let status = 'UNKNOWN_FAILURE' ; let message = 'unknown failure'
2023-11-21 23:32:22 +00:00
if ( wdrwl ? . failed . is _insufficient _balance ) {
status = 'INSUFFICIENT_BALANCE'
2024-04-16 18:59:46 +00:00
message = "you didn't have enough sats"
2023-11-21 23:32:22 +00:00
} else if ( wdrwl ? . failed . is _invalid _payment ) {
status = 'INVALID_PAYMENT'
2024-04-16 18:59:46 +00:00
message = 'invalid payment'
2023-11-21 23:32:22 +00:00
} else if ( wdrwl ? . failed . is _pathfinding _timeout ) {
status = 'PATHFINDING_TIMEOUT'
2024-04-16 18:59:46 +00:00
message = 'no route found'
2023-11-21 23:32:22 +00:00
} else if ( wdrwl ? . failed . is _route _not _found ) {
status = 'ROUTE_NOT_FOUND'
2024-04-16 18:59:46 +00:00
message = 'no route found'
2022-01-17 17:41:17 +00:00
}
2024-01-08 22:37:58 +00:00
2024-04-30 01:39:31 +00:00
const [ { reverse _withdrawl : code } ] = await serialize (
models . $queryRaw `
2024-04-10 00:49:20 +00:00
SELECT reverse _withdrawl ( $ { dbWdrwl . id } : : INTEGER , $ { status } : : "WithdrawlStatus" ) ` ,
{ models }
2024-01-08 22:37:58 +00:00
)
2024-04-16 18:59:46 +00:00
2024-04-30 01:39:31 +00:00
if ( code === 0 && dbWdrwl . wallet ) {
2024-04-16 18:59:46 +00:00
// add error into log for autowithdrawal
2024-04-30 01:39:31 +00:00
await addWalletLog ( {
2024-04-16 18:59:46 +00:00
wallet : dbWdrwl . wallet . type ,
level : 'ERROR' ,
message : 'autowithdrawal failed: ' + message
} , { models , me : { id : dbWdrwl . userId } } )
}
2022-01-17 17:41:17 +00:00
}
}
2023-11-09 17:50:43 +00:00
2024-02-14 23:31:25 +00:00
export async function autoDropBolt11s ( { models , lnd } ) {
const retention = ` ${ INVOICE _RETENTION _DAYS } days `
// This query will update the withdrawls and return what the hash and bol11 values were before the update
const invoices = await models . $queryRaw `
WITH to _be _updated AS (
SELECT id , hash , bolt11
FROM "Withdrawl"
WHERE "userId" IN ( SELECT id FROM users WHERE "autoDropBolt11s" )
AND now ( ) > created _at + interval '${retention}'
AND hash IS NOT NULL
) , updated _rows AS (
UPDATE "Withdrawl"
SET hash = NULL , bolt11 = NULL
FROM to _be _updated
WHERE "Withdrawl" . id = to _be _updated . id )
SELECT * FROM to _be _updated ; `
if ( invoices . length > 0 ) {
for ( const invoice of invoices ) {
try {
await deletePayment ( { id : invoice . hash , lnd } )
} catch ( error ) {
console . error ( ` Error removing invoice with hash ${ invoice . hash } : ` , error )
await models . withdrawl . update ( {
where : { id : invoice . id } ,
data : { hash : invoice . hash , bolt11 : invoice . bolt11 }
} )
}
}
}
2023-11-09 17:50:43 +00:00
}
2024-01-08 22:37:58 +00:00
2024-02-16 18:27:15 +00:00
// The callback subscriptions above will NOT get called for JIT invoices that are already paid.
2024-01-08 22:37:58 +00:00
// So we manually cancel the HODL invoice here if it wasn't settled by user action
2024-02-01 16:05:16 +00:00
export async function finalizeHodlInvoice ( { data : { hash } , models , lnd , ... args } ) {
2024-01-08 22:37:58 +00:00
const inv = await getInvoice ( { id : hash , lnd } )
if ( inv . is _confirmed ) {
return
}
await cancelHodlInvoice ( { id : hash , lnd } )
2024-02-01 16:05:16 +00:00
// sync LND invoice status with invoice status in database
await checkInvoice ( { data : { hash } , models , lnd , ... args } )
2024-01-08 22:37:58 +00:00
}
export async function checkPendingDeposits ( args ) {
const { models } = args
const pendingDeposits = await models . invoice . findMany ( { where : { confirmedAt : null , cancelled : false } } )
for ( const d of pendingDeposits ) {
try {
await checkInvoice ( { data : { id : d . id , hash : d . hash } , ... args } )
await sleep ( 10 )
} catch {
console . error ( 'error checking invoice' , d . hash )
}
}
}
export async function checkPendingWithdrawals ( args ) {
const { models } = args
const pendingWithdrawals = await models . withdrawl . findMany ( { where : { status : null } } )
for ( const w of pendingWithdrawals ) {
try {
await checkWithdrawal ( { data : { id : w . id , hash : w . hash } , ... args } )
await sleep ( 10 )
} catch {
console . error ( 'error checking withdrawal' , w . hash )
}
}
}