2020-04-16 17:07:53 +02:00
|
|
|
from flask import url_for
|
|
|
|
from lnurl import Lnurl, LnurlWithdrawResponse, encode as lnurl_encode
|
|
|
|
from typing import NamedTuple
|
|
|
|
|
2020-04-23 18:30:16 +02:00
|
|
|
from lnbits.settings import FORCE_HTTPS
|
|
|
|
|
2020-04-16 17:07:53 +02:00
|
|
|
|
|
|
|
class WithdrawLink(NamedTuple):
|
|
|
|
id: str
|
|
|
|
wallet: str
|
|
|
|
title: str
|
|
|
|
min_withdrawable: int
|
|
|
|
max_withdrawable: int
|
|
|
|
uses: int
|
|
|
|
wait_time: int
|
|
|
|
is_unique: bool
|
|
|
|
unique_hash: str
|
|
|
|
k1: str
|
|
|
|
open_time: int
|
|
|
|
used: int
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_spent(self) -> bool:
|
|
|
|
return self.used >= self.uses
|
|
|
|
|
|
|
|
@property
|
|
|
|
def lnurl(self) -> Lnurl:
|
2020-04-23 18:30:16 +02:00
|
|
|
scheme = "https" if FORCE_HTTPS else None
|
2020-04-16 17:07:53 +02:00
|
|
|
url = url_for("withdraw.api_lnurl_response", unique_hash=self.unique_hash, _external=True, _scheme=scheme)
|
|
|
|
return lnurl_encode(url)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def lnurl_response(self) -> LnurlWithdrawResponse:
|
2020-04-23 18:30:16 +02:00
|
|
|
scheme = "https" if FORCE_HTTPS else None
|
2020-04-16 17:07:53 +02:00
|
|
|
url = url_for("withdraw.api_lnurl_callback", unique_hash=self.unique_hash, _external=True, _scheme=scheme)
|
|
|
|
|
|
|
|
return LnurlWithdrawResponse(
|
|
|
|
callback=url,
|
|
|
|
k1=self.k1,
|
|
|
|
min_withdrawable=self.min_withdrawable * 1000,
|
|
|
|
max_withdrawable=self.max_withdrawable * 1000,
|
2020-04-17 21:13:32 +02:00
|
|
|
default_description="#withdraw LNbits LNURL",
|
2020-04-16 17:07:53 +02:00
|
|
|
)
|