forked from pieterjm/DeviceTimer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
crud.py
274 lines (226 loc) · 8.06 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
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, LnurldeviceSwitch, LnurldevicePayment, PaymentAllowed
from loguru import logger
from datetime import datetime
from zoneinfo import ZoneInfo
from time import time
import re
async def create_device(data: CreateLnurldevice, req: Request) -> Lnurldevice:
logger.debug("create_device")
device_id = urlsafe_short_hash()
device_key = urlsafe_short_hash()
if data.switches:
url = req.url_for("devicetimer.lnurl_v2_params", device_id=device_id)
for _switch in data.switches:
_switch.id = shortuuid.uuid()[:8]
_switch.lnurl = lnurl_encode(
str(url)
+ "?switch_id="
+ str(_switch.id)
)
await db.execute(
"INSERT INTO devicetimer.device (id, key, title, wallet, currency, available_start, available_stop, timeout, timezone, closed_url, wait_url, maxperday, switches) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
(
device_id,
device_key,
data.title,
data.wallet,
data.currency,
data.available_start,
data.available_stop,
data.timeout,
data.timezone,
data.closed_url,
data.wait_url,
data.maxperday,
json.dumps(data.switches, default=lambda x: x.dict()),
),
)
device = await get_device(device_id)
assert device, "Lnurldevice was created but could not be retrieved"
return device
async def update_device(
device_id: str, data: CreateLnurldevice, req: Request
) -> Lnurldevice:
if data.switches:
url = req.url_for("devicetimer.lnurl_v2_params", device_id=device_id)
for _switch in data.switches:
if _switch.id is None:
_switch.id = shortuuid.uuid()[:8]
_switch.lnurl = lnurl_encode(
str(url)
+ "?switch_id="
+ str(_switch.id)
)
await db.execute(
"""
UPDATE devicetimer.device SET
title = ?,
wallet = ?,
currency = ?,
available_start = ?,
available_stop = ?,
timeout = ?,
timezone = ?,
closed_url = ?,
maxperday = ?,
wait_url = ?,
switches = ?
WHERE id = ?
""",
(
data.title,
data.wallet,
data.currency,
data.available_start,
data.available_stop,
data.timeout,
data.timezone,
data.closed_url,
data.maxperday,
data.wait_url,
json.dumps(data.switches, default=lambda x: x.dict()),
device_id,
),
)
device = await get_device(device_id)
assert device, "Lnurldevice was updated but could not be retrieved"
return device
async def get_device(device_id: str) -> Optional[Lnurldevice]:
row = await db.fetchone(
"SELECT * FROM devicetimer.device WHERE id = ?", (device_id,)
)
if not row:
return None
device = Lnurldevice(**row)
return device
async def get_devices(wallet_ids: List[str]) -> List[Lnurldevice]:
q = ",".join(["?"] * len(wallet_ids))
rows = await db.fetchall(
f"""
SELECT * FROM devicetimer.device 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]
return devices
async def delete_device(lnurldevice_id: str) -> None:
await db.execute(
"DELETE FROM devicetimer.device WHERE id = ?", (lnurldevice_id,)
)
async def create_payment(
device_id: str,
switch_id: str,
payload: Optional[str] = None,
payhash: Optional[str] = None,
sats: Optional[int] = 0,
) -> LnurldevicePayment:
payment_id = urlsafe_short_hash()
await db.execute(
"""
INSERT INTO devicetimer.payment (
id,
deviceid,
switchid,
payload,
payhash,
sats
)
VALUES (?, ?, ?, ?, ?, ?)
""",
(payment_id, device_id, switch_id, payload, payhash, sats),
)
payment = await get_payment(payment_id)
assert payment, "Couldnt retrieve newly created payment"
return payment
async def update_payment(
payment_id: str, **kwargs
) -> LnurldevicePayment:
q = ", ".join([f"{field[0]} = ?" for field in kwargs.items()])
await db.execute(
f"UPDATE devicetimer.payment SET {q} WHERE id = ?",
(*kwargs.values(), payment_id),
)
dpayment = await get_payment(payment_id)
assert dpayment, "Couldnt retrieve update LnurldevicePayment"
return dpayment
async def get_payment(
lnurldevicepayment_id: str,
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM devicetimer.payment WHERE id = ?",
(lnurldevicepayment_id,),
)
return LnurldevicePayment(**row) if row else None
async def get_payment_by_p(
p: str,
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM devicetimer.payment 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 devicetimer.payment WHERE payload = ?",
(lnurldevicepayment_payload,),
)
return LnurldevicePayment(**row) if row else None
async def get_last_payment(
deviceid: str, switchid: str
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT * FROM devicetimer.payment WHERE payhash = 'used' AND deviceid = ? AND switchid = ? ORDER BY timestamp DESC LIMIT 1",
(deviceid, switchid),
)
return LnurldevicePayment(**row) if row else None
async def get_num_payments_after(
deviceid: str, switchid: str, timestamp: int
) -> Optional[LnurldevicePayment]:
row = await db.fetchone(
"SELECT count(*) FROM devicetimer.payment WHERE payhash = 'used' AND deviceid = ? AND switchid = ? AND timestamp > ?",
(deviceid, switchid, timestamp),
)
return row[0]
def get_minutes(timestr: str) -> int:
"""
Convert a time string to minutes
"""
result = re.search("^(\d{2})\:(\d{2})$",timestr)
assert result, "illegal time format"
return int(result.groups()[0]) * 60 + int(result.groups()[1])
async def get_payment_allowed(
device: Lnurldevice, switch: LnurldeviceSwitch
) -> PaymentAllowed:
now = datetime.now(ZoneInfo(device.timezone))
minutes = now.hour * 60 + now.minute
start_minutes = get_minutes(device.available_start)
stop_minutes = get_minutes(device.available_stop)
if stop_minutes <= start_minutes:
if (minutes < start_minutes or minutes > stop_minutes + (60*24)) and (minutes < start_minutes - (60*24) or minutes > stop_minutes):
return PaymentAllowed.CLOSED
else:
if ( minutes < start_minutes or minutes > stop_minutes):
return PaymentAllowed.CLOSED
now = time()
if device.maxperday is not None and device.maxperday > 0:
num_payments = await get_num_payments_after(deviceid=device.id,switchid=switch.id,timestamp=now - 86400)
if num_payments >= device.maxperday:
return PaymentAllowed.CLOSED
last_payment = await get_last_payment(deviceid=device.id,switchid=switch.id)
if not last_payment:
return PaymentAllowed.OPEN
logger.info(f"Last payment at {last_payment.timestamp} {now - int(last_payment.timestamp)}")
if last_payment is not None and now - int(last_payment.timestamp) < device.timeout:
return PaymentAllowed.WAIT
return PaymentAllowed.OPEN