2021-08-30 19:55:02 +02:00
|
|
|
import asyncio
|
2020-09-29 05:52:27 +02:00
|
|
|
import hmac
|
|
|
|
from http import HTTPStatus
|
2020-03-31 19:05:25 +02:00
|
|
|
from os import getenv
|
2022-07-16 14:23:03 +02:00
|
|
|
from typing import AsyncGenerator, Optional
|
2020-01-16 13:58:27 +01:00
|
|
|
|
2022-07-16 14:23:03 +02:00
|
|
|
import httpx
|
|
|
|
from fastapi.exceptions import HTTPException
|
2022-07-07 14:30:16 +02:00
|
|
|
from loguru import logger
|
|
|
|
|
2022-07-16 14:23:03 +02:00
|
|
|
from lnbits.helpers import url_for
|
|
|
|
|
2021-03-24 04:40:32 +01:00
|
|
|
from .base import (
|
|
|
|
InvoiceResponse,
|
|
|
|
PaymentResponse,
|
|
|
|
PaymentStatus,
|
2022-07-16 14:23:03 +02:00
|
|
|
StatusResponse,
|
2021-03-24 04:40:32 +01:00
|
|
|
Unsupported,
|
2022-07-16 14:23:03 +02:00
|
|
|
Wallet,
|
2021-03-24 04:40:32 +01:00
|
|
|
)
|
2020-01-16 13:58:27 +01:00
|
|
|
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-01-15 16:16:10 +01:00
|
|
|
class OpenNodeWallet(Wallet):
|
2020-03-31 19:05:25 +02:00
|
|
|
"""https://developers.opennode.com/"""
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def __init__(self):
|
|
|
|
endpoint = getenv("OPENNODE_API_ENDPOINT")
|
2020-01-12 01:26:40 +01:00
|
|
|
self.endpoint = endpoint[:-1] if endpoint.endswith("/") else endpoint
|
2020-10-08 21:03:18 +02:00
|
|
|
|
2021-03-24 04:40:32 +01:00
|
|
|
key = (
|
|
|
|
getenv("OPENNODE_KEY")
|
|
|
|
or getenv("OPENNODE_ADMIN_KEY")
|
|
|
|
or getenv("OPENNODE_INVOICE_KEY")
|
|
|
|
)
|
2020-10-08 21:03:18 +02:00
|
|
|
self.auth = {"Authorization": key}
|
2020-11-09 13:38:06 +01:00
|
|
|
|
2021-03-24 05:01:09 +01:00
|
|
|
async def status(self) -> StatusResponse:
|
2020-10-13 03:25:55 +02:00
|
|
|
try:
|
2021-03-24 05:01:09 +01:00
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
r = await client.get(
|
2021-10-17 19:33:29 +02:00
|
|
|
f"{self.endpoint}/v1/account/balance", headers=self.auth, timeout=40
|
2021-03-24 05:01:09 +01:00
|
|
|
)
|
2020-10-13 03:25:55 +02:00
|
|
|
except (httpx.ConnectError, httpx.RequestError):
|
2020-10-13 19:46:23 +02:00
|
|
|
return StatusResponse(f"Unable to connect to '{self.endpoint}'", 0)
|
2020-10-13 03:25:55 +02:00
|
|
|
|
2020-11-09 00:15:27 +01:00
|
|
|
data = r.json()["data"]
|
2020-10-13 03:25:55 +02:00
|
|
|
if r.is_error:
|
|
|
|
return StatusResponse(data["message"], 0)
|
|
|
|
|
|
|
|
return StatusResponse(None, data["balance"]["BTC"] / 100_000_000_000)
|
|
|
|
|
2021-03-24 05:01:09 +01:00
|
|
|
async def create_invoice(
|
2021-03-24 04:40:32 +01:00
|
|
|
self,
|
|
|
|
amount: int,
|
|
|
|
memo: Optional[str] = None,
|
|
|
|
description_hash: Optional[bytes] = None,
|
2020-08-31 04:48:46 +02:00
|
|
|
) -> InvoiceResponse:
|
2020-06-08 00:46:16 +02:00
|
|
|
if description_hash:
|
|
|
|
raise Unsupported("description_hash")
|
|
|
|
|
2021-03-24 05:01:09 +01:00
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
r = await client.post(
|
|
|
|
f"{self.endpoint}/v1/charges",
|
|
|
|
headers=self.auth,
|
|
|
|
json={
|
|
|
|
"amount": amount,
|
|
|
|
"description": memo or "",
|
2022-07-29 13:36:29 +02:00
|
|
|
# "callback_url": url_for("/webhook_listener", _external=True),
|
2021-03-24 05:01:09 +01:00
|
|
|
},
|
|
|
|
timeout=40,
|
|
|
|
)
|
2020-03-31 19:05:25 +02:00
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
if r.is_error:
|
2020-03-31 19:05:25 +02:00
|
|
|
error_message = r.json()["message"]
|
2020-10-02 22:13:33 +02:00
|
|
|
return InvoiceResponse(False, None, None, error_message)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
data = r.json()["data"]
|
|
|
|
checking_id = data["id"]
|
|
|
|
payment_request = data["lightning_invoice"]["payreq"]
|
2020-10-05 13:46:20 +02:00
|
|
|
return InvoiceResponse(True, checking_id, payment_request, None)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2022-03-16 07:20:15 +01:00
|
|
|
async def pay_invoice(self, bolt11: str, fee_limit_msat: int) -> PaymentResponse:
|
2021-03-24 05:01:09 +01:00
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
r = await client.post(
|
|
|
|
f"{self.endpoint}/v2/withdrawals",
|
|
|
|
headers=self.auth,
|
|
|
|
json={"type": "ln", "address": bolt11},
|
2022-07-27 15:29:44 +02:00
|
|
|
timeout=None,
|
2021-03-24 05:01:09 +01:00
|
|
|
)
|
2020-03-31 19:05:25 +02:00
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
if r.is_error:
|
2020-03-31 19:05:25 +02:00
|
|
|
error_message = r.json()["message"]
|
2020-10-13 04:18:37 +02:00
|
|
|
return PaymentResponse(False, None, 0, None, error_message)
|
2020-03-31 19:05:25 +02:00
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
data = r.json()["data"]
|
2020-10-05 13:46:20 +02:00
|
|
|
checking_id = data["id"]
|
2020-10-02 22:13:33 +02:00
|
|
|
fee_msat = data["fee"] * 1000
|
2020-10-13 04:18:37 +02:00
|
|
|
return PaymentResponse(True, checking_id, fee_msat, None, None)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2021-03-24 05:01:09 +01:00
|
|
|
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
r = await client.get(
|
|
|
|
f"{self.endpoint}/v1/charge/{checking_id}", headers=self.auth
|
|
|
|
)
|
2020-10-02 22:13:33 +02:00
|
|
|
if r.is_error:
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(None)
|
2020-01-16 13:58:27 +01:00
|
|
|
|
2020-01-15 16:16:10 +01:00
|
|
|
statuses = {"processing": None, "paid": True, "unpaid": False}
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(statuses[r.json()["data"]["status"]])
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2021-03-24 05:01:09 +01:00
|
|
|
async def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
r = await client.get(
|
|
|
|
f"{self.endpoint}/v1/withdrawal/{checking_id}", headers=self.auth
|
|
|
|
)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
if r.is_error:
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(None)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2021-03-24 04:40:32 +01:00
|
|
|
statuses = {
|
|
|
|
"initial": None,
|
|
|
|
"pending": None,
|
|
|
|
"confirmed": True,
|
|
|
|
"error": False,
|
|
|
|
"failed": False,
|
|
|
|
}
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(statuses[r.json()["data"]["status"]])
|
2020-09-29 05:52:27 +02:00
|
|
|
|
|
|
|
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
|
2022-07-19 18:51:35 +02:00
|
|
|
self.queue: asyncio.Queue = asyncio.Queue(0)
|
2021-08-30 19:55:02 +02:00
|
|
|
while True:
|
|
|
|
value = await self.queue.get()
|
2020-10-04 02:57:14 +02:00
|
|
|
yield value
|
2020-09-29 05:52:27 +02:00
|
|
|
|
|
|
|
async def webhook_listener(self):
|
2020-11-09 13:38:06 +01:00
|
|
|
data = await request.form
|
|
|
|
if "status" not in data or data["status"] != "paid":
|
2021-09-11 11:02:48 +02:00
|
|
|
raise HTTPException(status_code=HTTPStatus.NO_CONTENT)
|
|
|
|
|
2020-09-29 05:52:27 +02:00
|
|
|
charge_id = data["id"]
|
2020-11-09 13:38:06 +01:00
|
|
|
x = hmac.new(self.auth["Authorization"].encode("ascii"), digestmod="sha256")
|
|
|
|
x.update(charge_id.encode("ascii"))
|
2020-09-29 05:52:27 +02:00
|
|
|
if x.hexdigest() != data["hashed_order"]:
|
2022-07-07 14:30:16 +02:00
|
|
|
logger.error("invalid webhook, not from opennode")
|
2021-09-11 11:02:48 +02:00
|
|
|
raise HTTPException(status_code=HTTPStatus.NO_CONTENT)
|
2020-09-29 05:52:27 +02:00
|
|
|
|
2021-08-30 19:55:02 +02:00
|
|
|
await self.queue.put(charge_id)
|
2021-09-11 11:02:48 +02:00
|
|
|
raise HTTPException(status_code=HTTPStatus.NO_CONTENT)
|