2020-09-29 05:52:27 +02:00
|
|
|
import json
|
2020-10-04 02:57:14 +02:00
|
|
|
import trio # type: ignore
|
2020-09-29 05:52:27 +02:00
|
|
|
import hmac
|
2020-10-02 22:13:33 +02:00
|
|
|
import httpx
|
2020-09-29 05:52:27 +02:00
|
|
|
from http import HTTPStatus
|
2020-03-31 19:05:25 +02:00
|
|
|
from os import getenv
|
2020-09-29 05:52:27 +02:00
|
|
|
from typing import Optional, AsyncGenerator
|
|
|
|
from quart import request, url_for
|
2020-01-16 13:58:27 +01:00
|
|
|
|
2020-06-08 00:46:16 +02:00
|
|
|
from .base import InvoiceResponse, PaymentResponse, PaymentStatus, Wallet, Unsupported
|
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-03-31 19:05:25 +02:00
|
|
|
self.auth_admin = {"Authorization": getenv("OPENNODE_ADMIN_KEY")}
|
|
|
|
self.auth_invoice = {"Authorization": getenv("OPENNODE_INVOICE_KEY")}
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-08-31 04:48:46 +02:00
|
|
|
def create_invoice(
|
|
|
|
self, amount: int, memo: Optional[str] = None, description_hash: Optional[bytes] = None
|
|
|
|
) -> InvoiceResponse:
|
2020-06-08 00:46:16 +02:00
|
|
|
if description_hash:
|
|
|
|
raise Unsupported("description_hash")
|
|
|
|
|
2020-10-02 22:13:33 +02:00
|
|
|
r = httpx.post(
|
|
|
|
f"{self.endpoint}/v1/charges",
|
2020-01-12 01:26:40 +01:00
|
|
|
headers=self.auth_invoice,
|
2020-09-29 05:52:27 +02:00
|
|
|
json={
|
|
|
|
"amount": amount,
|
|
|
|
"description": memo or "",
|
|
|
|
"callback_url": url_for("webhook_listener", _external=True),
|
|
|
|
},
|
2020-01-12 01:26:40 +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-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
|
|
|
|
2020-01-16 13:37:33 +01:00
|
|
|
def pay_invoice(self, bolt11: str) -> PaymentResponse:
|
2020-10-02 22:13:33 +02:00
|
|
|
r = httpx.post(
|
|
|
|
f"{self.endpoint}/v2/withdrawals", headers=self.auth_admin, json={"type": "ln", "address": bolt11}
|
|
|
|
)
|
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 PaymentResponse(False, None, 0, 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-05 13:46:20 +02:00
|
|
|
return PaymentResponse(True, checking_id, fee_msat, None)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
2020-10-02 22:13:33 +02:00
|
|
|
r = httpx.get(f"{self.endpoint}/v1/charge/{checking_id}", headers=self.auth_invoice)
|
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-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
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
2020-10-02 22:13:33 +02:00
|
|
|
r = httpx.get(f"{self.endpoint}/v1/withdrawal/{checking_id}", headers=self.auth_admin)
|
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
|
|
|
|
2020-04-16 17:10:53 +02: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]:
|
2020-10-04 02:57:14 +02:00
|
|
|
self.send, receive = trio.open_memory_channel(0)
|
|
|
|
async for value in receive:
|
|
|
|
yield value
|
2020-09-29 05:52:27 +02:00
|
|
|
|
|
|
|
async def webhook_listener(self):
|
|
|
|
text: str = await request.get_data()
|
|
|
|
data = json.loads(text)
|
|
|
|
if type(data) is not dict or "event" not in data or data["event"].get("name") != "wallet_receive":
|
|
|
|
return "", HTTPStatus.NO_CONTENT
|
|
|
|
|
|
|
|
charge_id = data["id"]
|
|
|
|
if data["status"] != "paid":
|
|
|
|
return "", HTTPStatus.NO_CONTENT
|
|
|
|
|
|
|
|
x = hmac.new(self.auth_invoice["Authorization"], digestmod="sha256")
|
|
|
|
x.update(charge_id)
|
|
|
|
if x.hexdigest() != data["hashed_order"]:
|
|
|
|
print("invalid webhook, not from opennode")
|
|
|
|
return "", HTTPStatus.NO_CONTENT
|
|
|
|
|
2020-10-04 05:22:37 +02:00
|
|
|
await self.send.send(charge_id)
|
2020-09-29 05:52:27 +02:00
|
|
|
return "", HTTPStatus.NO_CONTENT
|