forked from lnbits/lnurldevice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrud.py
232 lines (197 loc) · 6.89 KB
/
crud.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import json
from typing import List, Optional
import shortuuid
from fastapi import Request
from lnurl import encode as lnurl_encode
from lnbits.helpers import urlsafe_short_hash
from . import db
from .models import CreateLnurldevice, Lnurldevice, LnurldevicePayment
async def create_lnurldevice(data: CreateLnurldevice, req: Request) -> Lnurldevice:
if data.device == "pos" or data.device == "atm":
lnurldevice_id = shortuuid.uuid()[:5]
else:
lnurldevice_id = urlsafe_short_hash()
lnurldevice_key = urlsafe_short_hash()
if data.switches:
url = req.url_for("lnurldevice.lnurl_v2_params", device_id=lnurldevice_id)
for _switch in data.switches:
_switch.lnurl = lnurl_encode(
url
+ "?pin="
+ str(_switch.pin)
+ "&amount="
+ str(_switch.amount)
+ "&duration="
+ str(_switch.duration)
)
await db.execute(
"INSERT INTO lnurldevice.lnurldevice (id, key, title, wallet, profit, currency, device, switches) VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
(
lnurldevice_id,
lnurldevice_key,
data.title,
data.wallet,
data.profit,
data.currency,
data.device,
json.dumps(data.switches, default=lambda x: x.dict()),
),
)
device = await get_lnurldevice(lnurldevice_id, req)
assert device, "Lnurldevice was created but could not be retrieved"
return device
async def update_lnurldevice(
lnurldevice_id: str, data: CreateLnurldevice, req: Request
) -> Lnurldevice:
if data.switches:
url = req.url_for("lnurldevice.lnurl_v2_params", device_id=lnurldevice_id)
for _switch in data.switches:
_switch.lnurl = lnurl_encode(
url
+ "?pin="
+ str(_switch.pin)
+ "&amount="
+ str(_switch.amount)
+ "&duration="
+ str(_switch.duration)
)
await db.execute(
"""
UPDATE lnurldevice.lnurldevice SET
title = ?,
wallet = ?,
profit = ?,
currency = ?,
device = ?,
switches = ?
WHERE id = ?
""",
(
data.title,
data.wallet,
data.profit,
data.currency,
data.device,
json.dumps(data.switches, default=lambda x: x.dict()),
lnurldevice_id,
),
)
device = await get_lnurldevice(lnurldevice_id, req)
assert device, "Lnurldevice was updated but could not be retrieved"
return device
async def get_lnurldevice(lnurldevice_id: str, req: Request) -> Optional[Lnurldevice]:
row = await db.fetchone(
"SELECT * FROM lnurldevice.lnurldevice WHERE id = ?", (lnurldevice_id,)
)
if not row:
return None
device = Lnurldevice(**row)
# this is needed for backwards compabtibility, before the LNURL were cached inside db
if device.switches:
url = req.url_for("lnurldevice.lnurl_v2_params", device_id=device.id)
for _switch in device.switches:
if not _switch.lnurl:
_switch.lnurl = lnurl_encode(
url
+ "?pin="
+ str(_switch.pin)
+ "&amount="
+ str(_switch.amount)
+ "&duration="
+ str(_switch.duration)
)
return device
async def get_lnurldevices(wallet_ids: List[str], req: Request) -> List[Lnurldevice]:
q = ",".join(["?"] * len(wallet_ids))
rows = await db.fetchall(
f"""
SELECT * FROM lnurldevice.lnurldevice WHERE wallet IN ({q})
ORDER BY id
""",
(*wallet_ids,),
)
# this is needed for backwards compabtibility, before the LNURL were cached inside db
devices = [Lnurldevice(**row) for row in rows]
for device in devices:
if device.switches:
url = req.url_for("lnurldevice.lnurl_v2_params", device_id=device.id)
for _switch in device.switches:
if not _switch.lnurl:
_switch.lnurl = lnurl_encode(
url
+ "?pin="
+ str(_switch.pin)
+ "&amount="
+ str(_switch.amount)
+ "&duration="
+ str(_switch.duration)
)
return devices
async def delete_lnurldevice(lnurldevice_id: str) -> None:
await db.execute(
"DELETE FROM lnurldevice.lnurldevice WHERE id = ?", (lnurldevice_id,)
)
async def create_lnurldevicepayment(
deviceid: str,
payload: Optional[str] = None,
pin: Optional[str] = None,
payhash: Optional[str] = None,
sats: Optional[int] = 0,
) -> LnurldevicePayment:
# TODO: ben what is this for?
# if device.device == "atm":
# lnurldevicepayment_id = shortuuid.uuid(name=payload)
# else:
lnurldevicepayment_id = urlsafe_short_hash()
await db.execute(
"""
INSERT INTO lnurldevice.lnurldevicepayment (
id,
deviceid,
payload,
pin,
payhash,
sats
)
VALUES (?, ?, ?, ?, ?, ?)
""",
(lnurldevicepayment_id, deviceid, payload, pin, payhash, sats),
)
dpayment = await get_lnurldevicepayment(lnurldevicepayment_id)
assert dpayment, "Couldnt retrieve newly created LnurldevicePayment"
return dpayment
async def update_lnurldevicepayment(
lnurldevicepayment_id: str, **kwargs
) -> LnurldevicePayment:
q = ", ".join([f"{field[0]} = ?" for field in kwargs.items()])
await db.execute(
f"UPDATE lnurldevice.lnurldevicepayment SET {q} WHERE id = ?",
(*kwargs.values(), lnurldevicepayment_id),
)
dpayment = await get_lnurldevicepayment(lnurldevicepayment_id)
assert dpayment, "Couldnt retrieve update LnurldevicePayment"
return dpayment
async def get_lnurldevicepayment(
lnurldevicepayment_id: str,
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM lnurldevice.lnurldevicepayment WHERE id = ?",
(lnurldevicepayment_id,),
)
return LnurldevicePayment(**row) if row else None
async def get_lnurldevicepayment_by_p(
p: str,
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM lnurldevice.lnurldevicepayment WHERE payhash = ?",
(p,),
)
return LnurldevicePayment(**row) if row else None
async def get_lnurlpayload(
lnurldevicepayment_payload: str,
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM lnurldevice.lnurldevicepayment WHERE payload = ?",
(lnurldevicepayment_payload,),
)
return LnurldevicePayment(**row) if row else None