2020-09-29 05:52:27 +02:00
|
|
|
import json
|
|
|
|
import asyncio
|
|
|
|
import hmac
|
|
|
|
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
|
2020-01-16 13:58:27 +01:00
|
|
|
from requests import get, post
|
2020-09-29 05:52:27 +02:00
|
|
|
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-01-12 01:26:40 +01:00
|
|
|
r = post(
|
|
|
|
url=f"{self.endpoint}/v1/charges",
|
|
|
|
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
|
|
|
ok, checking_id, payment_request, error_message = r.ok, None, None, None
|
|
|
|
|
2020-01-12 01:26:40 +01:00
|
|
|
if r.ok:
|
2020-03-31 19:05:25 +02:00
|
|
|
data = r.json()["data"]
|
2020-09-29 05:52:27 +02:00
|
|
|
checking_id = data["id"]
|
|
|
|
payment_request = data["lightning_invoice"]["payreq"]
|
2020-03-31 19:05:25 +02:00
|
|
|
else:
|
|
|
|
error_message = r.json()["message"]
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-03-31 19:05:25 +02:00
|
|
|
return InvoiceResponse(ok, checking_id, payment_request, error_message)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-01-16 13:37:33 +01:00
|
|
|
def pay_invoice(self, bolt11: str) -> PaymentResponse:
|
2020-01-16 13:58:27 +01:00
|
|
|
r = post(url=f"{self.endpoint}/v2/withdrawals", headers=self.auth_admin, json={"type": "ln", "address": bolt11})
|
2020-03-31 19:05:25 +02:00
|
|
|
ok, checking_id, fee_msat, error_message = r.ok, None, 0, None
|
|
|
|
|
|
|
|
if r.ok:
|
|
|
|
data = r.json()["data"]
|
|
|
|
checking_id, fee_msat = data["id"], data["fee"] * 1000
|
|
|
|
else:
|
|
|
|
error_message = r.json()["message"]
|
|
|
|
|
|
|
|
return PaymentResponse(ok, checking_id, fee_msat, error_message)
|
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:
|
|
|
|
r = get(url=f"{self.endpoint}/v1/charge/{checking_id}", headers=self.auth_invoice)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-01-15 16:16:10 +01:00
|
|
|
if not r.ok:
|
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:
|
|
|
|
r = get(url=f"{self.endpoint}/v1/withdrawal/{checking_id}", headers=self.auth_admin)
|
2020-01-12 01:26:40 +01:00
|
|
|
|
2020-01-15 16:16:10 +01:00
|
|
|
if not r.ok:
|
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]:
|
|
|
|
self.queue: asyncio.Queue = asyncio.Queue()
|
|
|
|
while True:
|
|
|
|
item = await self.queue.get()
|
|
|
|
yield item
|
|
|
|
self.queue.task_done()
|
|
|
|
|
|
|
|
async def webhook_listener(self):
|
|
|
|
print("a request!")
|
|
|
|
text: str = await request.get_data()
|
|
|
|
print("text", text)
|
|
|
|
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
|
|
|
|
|
|
|
|
self.queue.put_nowait(charge_id)
|
|
|
|
return "", HTTPStatus.NO_CONTENT
|