lnbits-legend/lnbits/wallets/fake.py

131 lines
3.7 KiB
Python
Raw Normal View History

2022-01-30 11:41:20 +01:00
import asyncio
2022-07-16 14:23:03 +02:00
import hashlib
from datetime import datetime
from os import urandom
2023-11-13 13:06:59 +01:00
from typing import AsyncGenerator, Dict, Optional, Set
from bolt11 import (
Bolt11,
Bolt11Exception,
MilliSatoshi,
TagChar,
Tags,
decode,
encode,
)
from loguru import logger
from lnbits.settings import settings
2022-01-30 11:41:20 +01:00
from .base import (
InvoiceResponse,
PaymentPendingStatus,
2022-01-30 11:41:20 +01:00
PaymentResponse,
PaymentStatus,
2022-07-16 14:23:03 +02:00
StatusResponse,
2022-01-30 11:41:20 +01:00
Wallet,
)
2022-01-31 12:58:39 +01:00
2022-02-01 21:51:40 +01:00
class FakeWallet(Wallet):
2022-12-05 12:18:59 +01:00
queue: asyncio.Queue = asyncio.Queue(0)
2023-11-13 13:06:59 +01:00
payment_secrets: Dict[str, str] = dict()
paid_invoices: Set[str] = set()
2022-10-05 13:08:22 +02:00
secret: str = settings.fake_wallet_secret
privkey: str = hashlib.pbkdf2_hmac(
"sha256",
secret.encode(),
("FakeWallet").encode(),
2048,
32,
).hex()
2022-01-31 01:12:59 +01:00
async def status(self) -> StatusResponse:
logger.info(
"FakeWallet funding source is for using LNbits as a centralised,"
" stand-alone payment system with brrrrrr."
2022-01-30 11:41:20 +01:00
)
return StatusResponse(None, 1000000000)
2022-01-31 17:29:42 +01:00
2022-01-30 11:41:20 +01:00
async def create_invoice(
self,
amount: int,
memo: Optional[str] = None,
description_hash: Optional[bytes] = None,
unhashed_description: Optional[bytes] = None,
expiry: Optional[int] = None,
payment_secret: Optional[bytes] = None,
**_,
2022-01-30 11:41:20 +01:00
) -> InvoiceResponse:
tags = Tags()
2022-01-30 11:41:20 +01:00
if description_hash:
tags.add(TagChar.description_hash, description_hash.hex())
elif unhashed_description:
tags.add(
TagChar.description_hash,
hashlib.sha256(unhashed_description).hexdigest(),
)
2022-01-30 11:41:20 +01:00
else:
tags.add(TagChar.description, memo or "")
if expiry:
tags.add(TagChar.expire_time, expiry)
if payment_secret:
secret = payment_secret.hex()
else:
secret = urandom(32).hex()
tags.add(TagChar.payment_secret, secret)
2023-11-13 13:06:59 +01:00
payment_hash = hashlib.sha256(secret.encode()).hexdigest()
tags.add(TagChar.payment_hash, payment_hash)
self.payment_secrets[payment_hash] = secret
bolt11 = Bolt11(
currency="bc",
amount_msat=MilliSatoshi(amount * 1000),
date=int(datetime.now().timestamp()),
tags=tags,
)
payment_request = encode(bolt11, self.privkey)
2022-01-30 11:41:20 +01:00
2023-11-13 13:06:59 +01:00
return InvoiceResponse(
ok=True, checking_id=payment_hash, payment_request=payment_request
)
2022-01-31 01:12:59 +01:00
async def pay_invoice(self, bolt11: str, _: int) -> PaymentResponse:
try:
invoice = decode(bolt11)
except Bolt11Exception as exc:
return PaymentResponse(ok=False, error_message=str(exc))
2023-11-13 13:06:59 +01:00
if invoice.payment_hash in self.payment_secrets:
await self.queue.put(invoice)
2023-11-13 13:06:59 +01:00
self.paid_invoices.add(invoice.payment_hash)
return PaymentResponse(
ok=True,
checking_id=invoice.payment_hash,
fee_msat=0,
preimage=self.payment_secrets.get(invoice.payment_hash) or "0" * 64,
)
else:
return PaymentResponse(
ok=False, error_message="Only internal invoices can be used!"
)
2022-01-30 11:41:20 +01:00
2023-11-13 13:06:59 +01:00
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
paid = checking_id in self.paid_invoices
return PaymentStatus(paid)
2022-01-30 11:41:20 +01:00
async def get_payment_status(self, _: str) -> PaymentStatus:
return PaymentPendingStatus()
2022-01-30 11:41:20 +01:00
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
2022-01-31 12:07:29 +01:00
while True:
value: Bolt11 = await self.queue.get()
yield value.payment_hash