2020-10-04 02:57:14 +02:00
|
|
|
import trio # type: ignore
|
2020-10-08 21:03:18 +02:00
|
|
|
import httpx
|
2020-03-31 19:05:25 +02:00
|
|
|
from os import getenv
|
2020-10-02 22:13:33 +02:00
|
|
|
from typing import Optional, Dict, AsyncGenerator
|
2020-01-16 13:58:27 +01:00
|
|
|
|
2020-10-13 03:25:55 +02:00
|
|
|
from .base import StatusResponse, InvoiceResponse, PaymentResponse, PaymentStatus, Wallet
|
2020-01-10 21:26:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
class LntxbotWallet(Wallet):
|
|
|
|
"""https://github.com/fiatjaf/lntxbot/blob/master/api.go"""
|
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def __init__(self):
|
|
|
|
endpoint = getenv("LNTXBOT_API_ENDPOINT")
|
2020-01-10 21:26:42 +01:00
|
|
|
self.endpoint = endpoint[:-1] if endpoint.endswith("/") else endpoint
|
2020-10-08 21:03:18 +02:00
|
|
|
|
|
|
|
key = getenv("LNTXBOT_KEY") or getenv("LNTXBOT_ADMIN_KEY") or getenv("LNTXBOT_INVOICE_KEY")
|
|
|
|
self.auth = {"Authorization": f"Basic {key}"}
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-10-13 03:25:55 +02:00
|
|
|
def status(self) -> StatusResponse:
|
|
|
|
r = httpx.get(f"{self.endpoint}/balance", headers=self.auth)
|
|
|
|
try:
|
|
|
|
data = r.json()
|
|
|
|
except:
|
|
|
|
return StatusResponse(f"Failed to connect to {self.endpoint}, got: '{r.text[:200]}...'", 0)
|
|
|
|
|
|
|
|
if data.get("error"):
|
|
|
|
return StatusResponse(data["message"], 0)
|
|
|
|
|
|
|
|
return StatusResponse(None, data["BTC"]["AvailableBalance"] * 1000)
|
|
|
|
|
2020-08-31 04:48:46 +02:00
|
|
|
def create_invoice(
|
|
|
|
self, amount: int, memo: Optional[str] = None, description_hash: Optional[bytes] = None
|
|
|
|
) -> InvoiceResponse:
|
|
|
|
data: Dict = {"amt": str(amount)}
|
|
|
|
if description_hash:
|
|
|
|
data["description_hash"] = description_hash.hex()
|
|
|
|
else:
|
|
|
|
data["memo"] = memo or ""
|
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
r = httpx.post(
|
2020-09-03 23:02:15 +02:00
|
|
|
url=f"{self.endpoint}/addinvoice",
|
2020-10-08 21:03:18 +02:00
|
|
|
headers=self.auth,
|
2020-09-03 23:02:15 +02:00
|
|
|
json=data,
|
|
|
|
)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
if r.is_error:
|
|
|
|
try:
|
|
|
|
data = r.json()
|
2020-03-31 19:05:25 +02:00
|
|
|
error_message = data["message"]
|
2020-10-08 21:03:18 +02:00
|
|
|
except:
|
|
|
|
error_message = r.text
|
|
|
|
pass
|
2020-03-31 19:05:25 +02:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
return InvoiceResponse(False, None, None, error_message)
|
|
|
|
|
|
|
|
data = r.json()
|
|
|
|
return InvoiceResponse(True, data["payment_hash"], data["pay_req"], None)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-01-16 13:37:49 +01:00
|
|
|
def pay_invoice(self, bolt11: str) -> PaymentResponse:
|
2020-10-08 21:03:18 +02:00
|
|
|
r = httpx.post(url=f"{self.endpoint}/payinvoice", headers=self.auth, json={"invoice": bolt11})
|
2020-01-16 13:37:49 +01:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
if r.is_error:
|
|
|
|
try:
|
|
|
|
data = r.json()
|
|
|
|
error_message = data["message"]
|
|
|
|
except:
|
|
|
|
error_message = r.text
|
|
|
|
pass
|
2020-01-16 13:37:49 +01:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
return PaymentResponse(False, None, 0, error_message)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
data = r.json()
|
|
|
|
return PaymentResponse(True, data["decoded"]["payment_hash"], data["fee_msat"], None)
|
2020-01-16 14:26:51 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
2020-10-08 21:03:18 +02:00
|
|
|
r = httpx.post(url=f"{self.endpoint}/invoicestatus/{checking_id}?wait=false", headers=self.auth)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
data = r.json()
|
2020-10-08 21:03:18 +02:00
|
|
|
if r.is_error or "error" in data:
|
|
|
|
return PaymentStatus(None)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-05-09 18:29:24 +02:00
|
|
|
if "preimage" not in data:
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(False)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(True)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
2020-10-08 21:03:18 +02:00
|
|
|
r = httpx.post(url=f"{self.endpoint}/paymentstatus/{checking_id}", headers=self.auth)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-10-08 21:03:18 +02:00
|
|
|
data = r.json()
|
|
|
|
if r.is_error or "error" in data:
|
2020-03-31 19:05:25 +02:00
|
|
|
return PaymentStatus(None)
|
2020-01-10 21:26:42 +01:00
|
|
|
|
2020-03-07 22:27:00 +01:00
|
|
|
statuses = {"complete": True, "failed": False, "pending": None, "unknown": None}
|
2020-10-08 21:03:18 +02:00
|
|
|
return PaymentStatus(statuses[data.get("status", "unknown")])
|
2020-10-02 22:13:33 +02:00
|
|
|
|
|
|
|
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
|
|
|
|
print("lntxbot does not support paid invoices stream yet")
|
2020-10-04 02:57:14 +02:00
|
|
|
await trio.sleep(5)
|
2020-10-02 22:13:33 +02:00
|
|
|
yield ""
|