mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
604e52c45d
* mypy fix jukebox * mypy fix ngrok * mypy fix satsdice * remove exts from mypy exclude
280 lines
7.6 KiB
Python
280 lines
7.6 KiB
Python
from datetime import datetime
|
|
from typing import List, Optional, Union
|
|
|
|
from lnbits.helpers import urlsafe_short_hash
|
|
|
|
from . import db
|
|
from .models import (
|
|
CreateSatsDiceLink,
|
|
CreateSatsDicePayment,
|
|
CreateSatsDiceWithdraw,
|
|
satsdiceLink,
|
|
satsdicePayment,
|
|
satsdiceWithdraw,
|
|
)
|
|
|
|
|
|
async def create_satsdice_pay(wallet_id: str, data: CreateSatsDiceLink) -> satsdiceLink:
|
|
satsdice_id = urlsafe_short_hash()
|
|
await db.execute(
|
|
"""
|
|
INSERT INTO satsdice.satsdice_pay (
|
|
id,
|
|
wallet,
|
|
title,
|
|
base_url,
|
|
min_bet,
|
|
max_bet,
|
|
amount,
|
|
served_meta,
|
|
served_pr,
|
|
multiplier,
|
|
chance,
|
|
haircut,
|
|
open_time
|
|
)
|
|
VALUES (?, ?, ?, ?, ?, ?, 0, 0, 0, ?, ?, ?, ?)
|
|
""",
|
|
(
|
|
satsdice_id,
|
|
wallet_id,
|
|
data.title,
|
|
data.base_url,
|
|
data.min_bet,
|
|
data.max_bet,
|
|
data.multiplier,
|
|
data.chance,
|
|
data.haircut,
|
|
int(datetime.now().timestamp()),
|
|
),
|
|
)
|
|
link = await get_satsdice_pay(satsdice_id)
|
|
assert link, "Newly created link couldn't be retrieved"
|
|
return link
|
|
|
|
|
|
async def get_satsdice_pay(link_id: str) -> Optional[satsdiceLink]:
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_pay WHERE id = ?", (link_id,)
|
|
)
|
|
return satsdiceLink(**row) if row else None
|
|
|
|
|
|
async def get_satsdice_pays(wallet_ids: Union[str, List[str]]) -> List[satsdiceLink]:
|
|
if isinstance(wallet_ids, str):
|
|
wallet_ids = [wallet_ids]
|
|
|
|
q = ",".join(["?"] * len(wallet_ids))
|
|
rows = await db.fetchall(
|
|
f"""
|
|
SELECT * FROM satsdice.satsdice_pay WHERE wallet IN ({q})
|
|
ORDER BY id
|
|
""",
|
|
(*wallet_ids,),
|
|
)
|
|
return [satsdiceLink(**row) for row in rows]
|
|
|
|
|
|
async def update_satsdice_pay(link_id: str, **kwargs) -> satsdiceLink:
|
|
q = ", ".join([f"{field[0]} = ?" for field in kwargs.items()])
|
|
await db.execute(
|
|
f"UPDATE satsdice.satsdice_pay SET {q} WHERE id = ?",
|
|
(*kwargs.values(), link_id),
|
|
)
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_pay WHERE id = ?", (link_id,)
|
|
)
|
|
return satsdiceLink(**row)
|
|
|
|
|
|
async def increment_satsdice_pay(link_id: str, **kwargs) -> Optional[satsdiceLink]:
|
|
q = ", ".join([f"{field[0]} = {field[0]} + ?" for field in kwargs.items()])
|
|
await db.execute(
|
|
f"UPDATE satsdice.satsdice_pay SET {q} WHERE id = ?",
|
|
(*kwargs.values(), link_id),
|
|
)
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_pay WHERE id = ?", (link_id,)
|
|
)
|
|
return satsdiceLink(**row) if row else None
|
|
|
|
|
|
async def delete_satsdice_pay(link_id: str) -> None:
|
|
await db.execute("DELETE FROM satsdice.satsdice_pay WHERE id = ?", (link_id,))
|
|
|
|
|
|
##################SATSDICE PAYMENT LINKS
|
|
|
|
|
|
async def create_satsdice_payment(data: CreateSatsDicePayment) -> satsdicePayment:
|
|
await db.execute(
|
|
"""
|
|
INSERT INTO satsdice.satsdice_payment (
|
|
payment_hash,
|
|
satsdice_pay,
|
|
value,
|
|
paid,
|
|
lost
|
|
)
|
|
VALUES (?, ?, ?, ?, ?)
|
|
""",
|
|
(
|
|
data.payment_hash,
|
|
data.satsdice_pay,
|
|
data.value,
|
|
False,
|
|
False,
|
|
),
|
|
)
|
|
payment = await get_satsdice_payment(data.payment_hash)
|
|
assert payment, "Newly created withdraw couldn't be retrieved"
|
|
return payment
|
|
|
|
|
|
async def get_satsdice_payment(payment_hash: str) -> Optional[satsdicePayment]:
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_payment WHERE payment_hash = ?",
|
|
(payment_hash,),
|
|
)
|
|
return satsdicePayment(**row) if row else None
|
|
|
|
|
|
async def update_satsdice_payment(payment_hash: str, **kwargs) -> satsdicePayment:
|
|
q = ", ".join([f"{field[0]} = ?" for field in kwargs.items()])
|
|
|
|
await db.execute(
|
|
f"UPDATE satsdice.satsdice_payment SET {q} WHERE payment_hash = ?",
|
|
(bool(*kwargs.values()), payment_hash),
|
|
)
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_payment WHERE payment_hash = ?",
|
|
(payment_hash,),
|
|
)
|
|
return satsdicePayment(**row)
|
|
|
|
|
|
##################SATSDICE WITHDRAW LINKS
|
|
|
|
|
|
async def create_satsdice_withdraw(data: CreateSatsDiceWithdraw) -> satsdiceWithdraw:
|
|
await db.execute(
|
|
"""
|
|
INSERT INTO satsdice.satsdice_withdraw (
|
|
id,
|
|
satsdice_pay,
|
|
value,
|
|
unique_hash,
|
|
k1,
|
|
open_time,
|
|
used
|
|
)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)
|
|
""",
|
|
(
|
|
data.payment_hash,
|
|
data.satsdice_pay,
|
|
data.value,
|
|
urlsafe_short_hash(),
|
|
urlsafe_short_hash(),
|
|
int(datetime.now().timestamp()),
|
|
data.used,
|
|
),
|
|
)
|
|
withdraw = await get_satsdice_withdraw(data.payment_hash, 0)
|
|
assert withdraw, "Newly created withdraw couldn't be retrieved"
|
|
return withdraw
|
|
|
|
|
|
async def get_satsdice_withdraw(withdraw_id: str, num=0) -> Optional[satsdiceWithdraw]:
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_withdraw WHERE id = ?", (withdraw_id,)
|
|
)
|
|
if not row:
|
|
return None
|
|
|
|
withdraw = []
|
|
for item in row:
|
|
withdraw.append(item)
|
|
withdraw.append(num)
|
|
return satsdiceWithdraw(**row)
|
|
|
|
|
|
async def get_satsdice_withdraw_by_hash(
|
|
unique_hash: str, num=0
|
|
) -> Optional[satsdiceWithdraw]:
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_withdraw WHERE unique_hash = ?", (unique_hash,)
|
|
)
|
|
if not row:
|
|
return None
|
|
|
|
withdraw = []
|
|
for item in row:
|
|
withdraw.append(item)
|
|
withdraw.append(num)
|
|
return satsdiceWithdraw(**row)
|
|
|
|
|
|
async def get_satsdice_withdraws(
|
|
wallet_ids: Union[str, List[str]]
|
|
) -> List[satsdiceWithdraw]:
|
|
if isinstance(wallet_ids, str):
|
|
wallet_ids = [wallet_ids]
|
|
|
|
q = ",".join(["?"] * len(wallet_ids))
|
|
rows = await db.fetchall(
|
|
f"SELECT * FROM satsdice.satsdice_withdraw WHERE wallet IN ({q})",
|
|
(*wallet_ids,),
|
|
)
|
|
|
|
return [satsdiceWithdraw(**row) for row in rows]
|
|
|
|
|
|
async def update_satsdice_withdraw(
|
|
withdraw_id: str, **kwargs
|
|
) -> Optional[satsdiceWithdraw]:
|
|
q = ", ".join([f"{field[0]} = ?" for field in kwargs.items()])
|
|
await db.execute(
|
|
f"UPDATE satsdice.satsdice_withdraw SET {q} WHERE id = ?",
|
|
(*kwargs.values(), withdraw_id),
|
|
)
|
|
row = await db.fetchone(
|
|
"SELECT * FROM satsdice.satsdice_withdraw WHERE id = ?", (withdraw_id,)
|
|
)
|
|
return satsdiceWithdraw(**row) if row else None
|
|
|
|
|
|
async def delete_satsdice_withdraw(withdraw_id: str) -> None:
|
|
await db.execute(
|
|
"DELETE FROM satsdice.satsdice_withdraw WHERE id = ?", (withdraw_id,)
|
|
)
|
|
|
|
|
|
async def create_withdraw_hash_check(the_hash: str, lnurl_id: str):
|
|
await db.execute(
|
|
"""
|
|
INSERT INTO satsdice.hash_checkw (
|
|
id,
|
|
lnurl_id
|
|
)
|
|
VALUES (?, ?)
|
|
""",
|
|
(the_hash, lnurl_id),
|
|
)
|
|
hashCheck = await get_withdraw_hash_checkw(the_hash, lnurl_id)
|
|
return hashCheck
|
|
|
|
|
|
async def get_withdraw_hash_checkw(the_hash: str, lnurl_id: str):
|
|
rowid = await db.fetchone(
|
|
"SELECT * FROM satsdice.hash_checkw WHERE id = ?", (the_hash,)
|
|
)
|
|
rowlnurl = await db.fetchone(
|
|
"SELECT * FROM satsdice.hash_checkw WHERE lnurl_id = ?", (lnurl_id,)
|
|
)
|
|
if not rowlnurl or not rowid:
|
|
await create_withdraw_hash_check(the_hash, lnurl_id)
|
|
return {"lnurl": True, "hash": False}
|
|
else:
|
|
return {"lnurl": True, "hash": True}
|