forked from pieterjm/DeviceTimer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrud.py
More file actions
308 lines (260 loc) · 9.79 KB
/
crud.py
File metadata and controls
308 lines (260 loc) · 9.79 KB
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import json
from typing import Optional
import shortuuid
from fastapi import Request
from loguru import logger
from lnbits.db import Database
from lnbits.helpers import urlsafe_short_hash
from .helpers import encode_lnurl, is_valid_lnurl
from .models import (
CreateLnurldevice,
Lnurldevice,
LnurldeviceSwitch,
LnurldevicePayment,
PaymentAllowed,
)
from datetime import datetime
from zoneinfo import ZoneInfo
from time import time
import re
db = Database("ext_devicetimer")
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:
base_url = str(req.url_for("devicetimer.lnurl_v2_params", device_id=device_id))
for _switch in data.switches:
_switch.id = shortuuid.uuid()[:8]
full_url = f"{base_url}?switch_id={_switch.id}"
_switch.lnurl = encode_lnurl(full_url)
logger.debug(f"Created LNURL for switch {_switch.id}: {_switch.lnurl[:20]}...")
switches_json = json.dumps(
[s.dict() for s in data.switches] if data.switches else []
)
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 (:id, :key, :title, :wallet, :currency, :available_start,
:available_stop, :timeout, :timezone, :closed_url, :wait_url,
:maxperday, :switches)
""",
{
"id": device_id,
"key": device_key,
"title": data.title,
"wallet": data.wallet,
"currency": data.currency,
"available_start": data.available_start,
"available_stop": data.available_stop,
"timeout": data.timeout,
"timezone": data.timezone,
"closed_url": data.closed_url,
"wait_url": data.wait_url,
"maxperday": data.maxperday or 0,
"switches": switches_json,
},
)
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:
base_url = str(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]
# Always regenerate LNURL if missing or invalid
if not is_valid_lnurl(_switch.lnurl):
full_url = f"{base_url}?switch_id={_switch.id}"
_switch.lnurl = encode_lnurl(full_url)
logger.debug(f"Regenerated LNURL for switch {_switch.id}: {_switch.lnurl[:20]}...")
switches_json = json.dumps(
[s.dict() for s in data.switches] if data.switches else []
)
await db.execute(
"""
UPDATE devicetimer.device SET
title = :title,
wallet = :wallet,
currency = :currency,
available_start = :available_start,
available_stop = :available_stop,
timeout = :timeout,
timezone = :timezone,
closed_url = :closed_url,
maxperday = :maxperday,
wait_url = :wait_url,
switches = :switches
WHERE id = :id
""",
{
"title": data.title,
"wallet": data.wallet,
"currency": data.currency,
"available_start": data.available_start,
"available_stop": data.available_stop,
"timeout": data.timeout,
"timezone": data.timezone,
"closed_url": data.closed_url,
"maxperday": data.maxperday or 0,
"wait_url": data.wait_url,
"switches": switches_json,
"id": device_id,
},
)
device = await get_device(device_id)
assert device, "Lnurldevice was updated but could not be retrieved"
return device
def _parse_device(row) -> Lnurldevice:
"""Parse a database row into a Lnurldevice model"""
data = dict(row)
# Parse switches from JSON string
if data.get("switches") and isinstance(data["switches"], str):
try:
switches_data = json.loads(data["switches"])
data["switches"] = [LnurldeviceSwitch(**s) for s in switches_data]
except (json.JSONDecodeError, TypeError):
data["switches"] = []
elif not data.get("switches"):
data["switches"] = []
return Lnurldevice(**data)
async def get_device(device_id: str) -> Optional[Lnurldevice]:
row = await db.fetchone(
"SELECT * FROM devicetimer.device WHERE id = :id",
{"id": device_id},
)
if not row:
return None
return _parse_device(row)
async def get_devices(wallet_ids: list[str]) -> list[Lnurldevice]:
if not wallet_ids:
return []
q = ",".join([f"'{w}'" for w in wallet_ids])
rows = await db.fetchall(
f"SELECT * FROM devicetimer.device WHERE wallet IN ({q}) ORDER BY id",
)
return [_parse_device(row) for row in rows]
async def delete_device(lnurldevice_id: str) -> None:
await db.execute(
"DELETE FROM devicetimer.device WHERE id = :id",
{"id": lnurldevice_id},
)
async def create_payment(
device_id: str,
switch_id: str,
payload: str | None = None,
payhash: str | None = None,
sats: int = 0,
) -> LnurldevicePayment:
payment_id = urlsafe_short_hash()
await db.execute(
"""
INSERT INTO devicetimer.payment
(id, deviceid, switchid, payload, payhash, sats)
VALUES (:id, :deviceid, :switchid, :payload, :payhash, :sats)
""",
{
"id": payment_id,
"deviceid": device_id,
"switchid": switch_id,
"payload": payload or "",
"payhash": payhash or "",
"sats": sats,
},
)
payment = await get_payment(payment_id)
assert payment, "Could not retrieve newly created payment"
return payment
async def update_payment(payment_id: str, **kwargs) -> LnurldevicePayment:
set_clause = ", ".join([f"{field} = :{field}" for field in kwargs.keys()])
params = {**kwargs, "id": payment_id}
await db.execute(
f"UPDATE devicetimer.payment SET {set_clause} WHERE id = :id",
params,
)
dpayment = await get_payment(payment_id)
assert dpayment, "Could not retrieve updated LnurldevicePayment"
return dpayment
async def get_payment(lnurldevicepayment_id: str) -> Optional[LnurldevicePayment]:
return await db.fetchone(
"SELECT * FROM devicetimer.payment WHERE id = :id",
{"id": lnurldevicepayment_id},
LnurldevicePayment,
)
async def get_payment_by_p(p: str) -> Optional[LnurldevicePayment]:
return await db.fetchone(
"SELECT * FROM devicetimer.payment WHERE payhash = :payhash",
{"payhash": p},
LnurldevicePayment,
)
async def get_lnurlpayload(
lnurldevicepayment_payload: str,
) -> Optional[LnurldevicePayment]:
return await db.fetchone(
"SELECT * FROM devicetimer.payment WHERE payload = :payload",
{"payload": lnurldevicepayment_payload},
LnurldevicePayment,
)
async def get_last_payment(
deviceid: str, switchid: str
) -> Optional[LnurldevicePayment]:
return await db.fetchone(
"""SELECT * FROM devicetimer.payment
WHERE payhash = 'used' AND deviceid = :deviceid AND switchid = :switchid
ORDER BY timestamp DESC LIMIT 1""",
{"deviceid": deviceid, "switchid": switchid},
LnurldevicePayment,
)
async def get_num_payments_after(
deviceid: str, switchid: str, timestamp: float
) -> int:
row = await db.fetchone(
"""SELECT count(*) as count FROM devicetimer.payment
WHERE payhash = 'used' AND deviceid = :deviceid
AND switchid = :switchid AND timestamp > :timestamp""",
{"deviceid": deviceid, "switchid": switchid, "timestamp": str(int(timestamp))},
)
if row:
return int(row.count) if hasattr(row, 'count') else int(row[0])
return 0
def get_minutes(timestr: str) -> int:
"""Convert a time string to minutes"""
result = re.search(r"^(\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_ts = 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_ts - 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_ts - int(last_payment.timestamp)}"
)
if last_payment is not None and now_ts - int(last_payment.timestamp) < device.timeout:
return PaymentAllowed.WAIT
return PaymentAllowed.OPEN