mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 06:48:02 +01:00
56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
import json
|
|
from sqlite3 import Row
|
|
from typing import Optional
|
|
|
|
from fastapi import Request
|
|
from lnurl import Lnurl
|
|
from lnurl import encode as lnurl_encode # type: ignore
|
|
from lnurl.models import LnurlPaySuccessAction, UrlAction # type: ignore
|
|
from lnurl.types import LnurlPayMetadata # type: ignore
|
|
from pydantic import BaseModel
|
|
from pydantic.main import BaseModel
|
|
|
|
|
|
class createLnurldevice(BaseModel):
|
|
title: str
|
|
wallet: str
|
|
currency: str
|
|
device: str
|
|
profit: float
|
|
|
|
|
|
class lnurldevices(BaseModel):
|
|
id: str
|
|
key: str
|
|
title: str
|
|
wallet: str
|
|
currency: str
|
|
device: str
|
|
profit: float
|
|
timestamp: str
|
|
|
|
def from_row(cls, row: Row) -> "lnurldevices":
|
|
return cls(**dict(row))
|
|
|
|
def lnurl(self, req: Request) -> Lnurl:
|
|
url = req.url_for(
|
|
"lnurldevice.lnurl_response", device_id=self.id, _external=True
|
|
)
|
|
return lnurl_encode(url)
|
|
|
|
async def lnurlpay_metadata(self) -> LnurlPayMetadata:
|
|
return LnurlPayMetadata(json.dumps([["text/plain", self.title]]))
|
|
|
|
|
|
class lnurldevicepayment(BaseModel):
|
|
id: str
|
|
deviceid: str
|
|
payhash: str
|
|
payload: str
|
|
pin: int
|
|
sats: int
|
|
timestamp: str
|
|
|
|
@classmethod
|
|
def from_row(cls, row: Row) -> "lnurldevicepayment":
|
|
return cls(**dict(row))
|