2022-01-30 11:41:20 +01:00
|
|
|
import asyncio
|
2022-07-16 14:23:03 +02:00
|
|
|
import hashlib
|
2022-01-31 01:12:59 +01:00
|
|
|
import random
|
2022-07-16 14:23:03 +02:00
|
|
|
from datetime import datetime
|
|
|
|
from typing import AsyncGenerator, Dict, Optional
|
2022-07-07 14:30:16 +02:00
|
|
|
|
|
|
|
from loguru import logger
|
|
|
|
|
2022-10-03 16:46:46 +02:00
|
|
|
from lnbits.settings import settings
|
|
|
|
|
2022-10-04 09:51:47 +02:00
|
|
|
from ..bolt11 import Invoice, decode, encode
|
2022-01-30 11:41:20 +01:00
|
|
|
from .base import (
|
|
|
|
InvoiceResponse,
|
|
|
|
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)
|
2022-10-05 13:08:22 +02:00
|
|
|
secret: str = settings.fake_wallet_secret
|
2022-10-04 09:51:47 +02:00
|
|
|
privkey: str = hashlib.pbkdf2_hmac(
|
|
|
|
"sha256",
|
2022-12-29 16:50:05 +01:00
|
|
|
secret.encode(),
|
|
|
|
("FakeWallet").encode(),
|
2022-10-04 09:51:47 +02:00
|
|
|
2048,
|
|
|
|
32,
|
|
|
|
).hex()
|
|
|
|
|
2022-01-31 01:12:59 +01:00
|
|
|
async def status(self) -> StatusResponse:
|
2022-07-07 14:30:16 +02:00
|
|
|
logger.info(
|
2023-08-24 11:26:09 +02:00
|
|
|
"FakeWallet funding source is for using LNbits as a centralised,"
|
|
|
|
" stand-alone payment system with brrrrrr."
|
2022-01-30 11:41:20 +01:00
|
|
|
)
|
2022-07-19 19:20:20 +02: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,
|
2022-08-13 14:29:04 +02:00
|
|
|
unhashed_description: Optional[bytes] = None,
|
2023-01-26 11:08:40 +01:00
|
|
|
**kwargs,
|
2022-01-30 11:41:20 +01:00
|
|
|
) -> InvoiceResponse:
|
2022-02-01 21:51:40 +01:00
|
|
|
data: Dict = {
|
|
|
|
"out": False,
|
2023-04-14 12:03:06 +02:00
|
|
|
"amount": amount * 1000,
|
2022-02-01 21:51:40 +01:00
|
|
|
"currency": "bc",
|
2022-10-04 09:51:47 +02:00
|
|
|
"privkey": self.privkey,
|
2023-02-02 13:57:36 +01:00
|
|
|
"memo": memo,
|
|
|
|
"description_hash": b"",
|
2022-02-01 21:51:40 +01:00
|
|
|
"description": "",
|
|
|
|
"fallback": None,
|
2023-02-02 13:57:36 +01:00
|
|
|
"expires": kwargs.get("expiry"),
|
|
|
|
"timestamp": datetime.now().timestamp(),
|
2022-02-01 21:51:40 +01:00
|
|
|
"route": None,
|
2023-02-02 13:57:36 +01:00
|
|
|
"tags_set": [],
|
2022-02-01 21:51:40 +01:00
|
|
|
}
|
2022-01-30 11:41:20 +01:00
|
|
|
if description_hash:
|
2022-02-01 21:51:40 +01:00
|
|
|
data["tags_set"] = ["h"]
|
2022-08-13 14:29:04 +02:00
|
|
|
data["description_hash"] = description_hash
|
|
|
|
elif unhashed_description:
|
2023-08-28 12:02:58 +02:00
|
|
|
data["tags_set"] = ["h"]
|
2022-08-13 14:29:04 +02:00
|
|
|
data["description_hash"] = hashlib.sha256(unhashed_description).digest()
|
2022-01-30 11:41:20 +01:00
|
|
|
else:
|
2022-02-01 21:51:40 +01:00
|
|
|
data["tags_set"] = ["d"]
|
|
|
|
data["memo"] = memo
|
|
|
|
data["description"] = memo
|
2022-03-16 07:20:15 +01:00
|
|
|
randomHash = (
|
2023-02-02 13:57:36 +01:00
|
|
|
self.privkey[:6]
|
2022-12-29 16:50:05 +01:00
|
|
|
+ hashlib.sha256(str(random.getrandbits(256)).encode()).hexdigest()[6:]
|
2022-03-16 07:20:15 +01:00
|
|
|
)
|
2022-02-01 21:51:40 +01:00
|
|
|
data["paymenthash"] = randomHash
|
|
|
|
payment_request = encode(data)
|
2022-01-30 11:41:20 +01:00
|
|
|
checking_id = randomHash
|
|
|
|
|
2022-01-31 01:12:59 +01:00
|
|
|
return InvoiceResponse(True, checking_id, payment_request)
|
|
|
|
|
2023-02-02 13:57:36 +01:00
|
|
|
async def pay_invoice(self, bolt11: str, _: int) -> PaymentResponse:
|
2022-03-16 07:20:15 +01:00
|
|
|
invoice = decode(bolt11)
|
2023-02-02 13:57:36 +01:00
|
|
|
|
2023-03-02 09:24:42 +01:00
|
|
|
if invoice.payment_hash[:6] == self.privkey[:6]:
|
2022-10-04 09:51:47 +02:00
|
|
|
await self.queue.put(invoice)
|
2022-02-03 13:52:51 +01:00
|
|
|
return PaymentResponse(True, invoice.payment_hash, 0)
|
|
|
|
else:
|
2022-03-16 07:20:15 +01:00
|
|
|
return PaymentResponse(
|
|
|
|
ok=False, error_message="Only internal invoices can be used!"
|
|
|
|
)
|
2022-01-30 11:41:20 +01:00
|
|
|
|
2023-02-02 13:57:36 +01:00
|
|
|
async def get_invoice_status(self, _: str) -> PaymentStatus:
|
2022-07-19 12:33:28 +02:00
|
|
|
return PaymentStatus(None)
|
2022-01-30 11:41:20 +01:00
|
|
|
|
2023-02-02 13:57:36 +01:00
|
|
|
async def get_payment_status(self, _: str) -> PaymentStatus:
|
2022-07-19 12:33:28 +02:00
|
|
|
return PaymentStatus(None)
|
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:
|
2022-10-04 09:51:47 +02:00
|
|
|
value: Invoice = await self.queue.get()
|
|
|
|
yield value.payment_hash
|