-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprofiles.py
618 lines (505 loc) · 21.9 KB
/
profiles.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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
import hashlib
import json
import os
import shutil
import urllib.parse
from named_thread import NamedThread
import time
import uuid
from enum import Enum
from typing import Optional, Set
from urllib.parse import urlparse
import random
import datauri
import jsonschema
import socketio
from config import (
MeticulousConfig,
CONFIG_USER,
CONFIG_PROFILES,
PROFILE_AUTO_PURGE,
PROFILE_AUTO_START,
PROFILE_LAST,
)
import asyncio
from log import MeticulousLogger
from machine import Machine
from profile_converter.profile_converter import ComplexProfileConverter
from profile_preprocessor import ProfilePreprocessor
logger = MeticulousLogger.getLogger(__name__)
PROFILE_PATH = os.getenv("PROFILE_PATH", "/meticulous-user/profiles")
IMAGES_PATH = os.getenv("IMAGES_PATH", "/meticulous-user/profile-images/")
DEFAULT_IMAGES_PATH = os.getenv(
"DEFAULT_IMAGES", "/opt/meticulous-backend/images/default"
)
DEFAULT_IMAGES_PATH_ACCENT_COLORS = os.path.join(
DEFAULT_IMAGES_PATH, "accent_colors.json"
)
DEFAULT_PROFILES_PATH = os.getenv(
"DEFAULT_PROFILES", "/opt/meticulous-backend/default_profiles"
)
class PROFILE_EVENT(Enum):
CREATE = "create"
UPDATE = "update"
DELETE = "delete"
RELOAD = "full_reload"
LOAD = "load"
class ProfileManager:
_known_profiles = dict()
_known_images = []
_default_profiles = []
_community_profiles = []
_profile_default_images = []
_profile_default_images_accent_colors = {}
_sio: socketio.AsyncServer = None
_loop: asyncio.AbstractEventLoop = None
_thread: NamedThread = None
_last_profile_changes = []
_schema = None
def init(sio: socketio.AsyncServer):
ProfileManager._sio = sio
ProfileManager._loop = asyncio.new_event_loop()
def start_event_loop() -> None:
asyncio.set_event_loop(ProfileManager._loop)
ProfileManager._loop.run_forever()
ProfileManager._thread = NamedThread("ProfileManager", target=start_event_loop)
ProfileManager._thread.start()
if not os.path.exists(PROFILE_PATH):
os.makedirs(PROFILE_PATH)
dirname = os.path.dirname(__file__)
profile_schema = os.path.join(dirname, "profile_schema/schema.json")
# Load JSON schema from a file
with open(profile_schema, "r") as schema_file:
ProfileManager._schema = json.load(schema_file)
ProfileManager.refresh_image_list()
ProfileManager.refresh_default_profile_list()
ProfileManager.refresh_profile_list()
ProfileManager._delete_unused_images()
def _register_profile_change(
change: PROFILE_EVENT,
profile_id: str,
timestamp: Optional[float] = None,
change_id: Optional[str] = None,
) -> str:
changes_to_keep = 100
if timestamp is None:
timestamp = time.time()
if change_id is None:
change_id = str(uuid.uuid4())
change_entry = {
"type": change,
"profile_id": profile_id,
"change_id": change_id,
"timestamp": timestamp,
}
changes = ProfileManager._last_profile_changes
changes.append(change_entry)
if len(changes) > changes_to_keep:
changes[:] = changes[-changes_to_keep:]
ProfileManager._last_profile_changes = changes
return change_id
def _emit_profile_event(
change: PROFILE_EVENT,
profile_id: Optional[str] = None,
change_id: Optional[str] = None,
) -> None:
if not ProfileManager._loop:
logger.warning("No event loop is running")
return
payload = {"change": change.value}
if profile_id is not None:
payload["profile_id"] = profile_id
if change_id is not None:
payload["change_id"] = change_id
async def emit() -> None:
await ProfileManager._sio.emit("profile", payload)
asyncio.run_coroutine_threadsafe(emit(), ProfileManager._loop)
def _set_last_profile(profile) -> None:
last_profile = {"load_time": time.time(), "profile": profile}
MeticulousConfig[CONFIG_PROFILES][PROFILE_LAST] = last_profile
MeticulousConfig.save()
def get_profile_changes() -> list[object]:
return ProfileManager._last_profile_changes
def _is_relative_url(url):
"""Check if the given URL is a relative URL."""
parsed = urlparse(url)
return not parsed.scheme and not parsed.netloc
def handle_image(data):
if "image" not in data["display"] or data["display"]["image"] == "":
random_image = random.choice(ProfileManager.get_default_images())
data["display"]["image"] = "/api/v1/profile/image/" + random_image
if random_image in ProfileManager._profile_default_images_accent_colors:
logger.info("using default accent color")
data["display"]["accentColor"] = (
ProfileManager._profile_default_images_accent_colors[random_image]
)
elif not ProfileManager._is_relative_url(data["display"]["image"]):
try:
uri = datauri.parse(data["display"]["image"])
logger.info("The string is a data URI with base64 payload.")
# Check if the MIME type is an image
if not uri.media_type.startswith("image/"):
logger.warning("The data URI does not encode an image.")
raise Exception("Invalid image MIME type")
file_content = uri.data
file_extension = uri.media_type.split("/")[-1]
if (
len(file_content) > 10 * 1024 * 1024
): # size check, e.g., less than 10MB
logger.warning("File size exceeds limit.")
raise Exception("Image file too large")
md5sum = hashlib.md5(file_content).hexdigest()
filename = f"{md5sum}.{file_extension}"
try:
with open(os.path.join(IMAGES_PATH, filename), "wb") as file:
file.write(file_content)
logger.info(f"File saved as {filename}")
data["display"]["image"] = f"/api/v1/profile/image/{filename}"
except Exception as e:
raise Exception(f"Saving file failed: {e}")
except datauri.DataURIError:
logger.warning(
"The string is neither a relative URL nor a valid data URI with base64 payload."
)
pass
elif not data["display"]["image"].startswith("/api/v1/profile/image"):
data["display"]["image"] = (
"/api/v1/profile/image/" + data["display"]["image"]
)
def generate_ramdom_accent_color():
color = random.randrange(0, 2**24)
hex_color = hex(color)
std_color = "#" + hex_color[2:].zfill(6)
return std_color
def handle_accent_color(data):
if "accentColor" not in data["display"] or data["display"]["accentColor"] == "":
if "image" in data["display"]:
url = urllib.parse.urlparse(data["display"]["image"])
base = os.path.basename(url.path)
if base in ProfileManager._profile_default_images_accent_colors:
logger.info("No accent color found, using default one")
predefined_color = (
ProfileManager._profile_default_images_accent_colors[base]
)
data["display"]["accentColor"] = predefined_color
return
logger.info("No accent color found, generating random one")
random_color = ProfileManager.generate_ramdom_accent_color()
data["display"]["accentColor"] = random_color
def save_profile(
data,
set_last_changed: bool = False,
change_id: Optional[str] = None,
skip_validation: bool = False,
) -> dict:
if "id" not in data or data["id"] == "":
data["id"] = str(uuid.uuid4())
if "display" not in data:
data["display"] = {}
ProfileManager.handle_image(data)
ProfileManager.handle_accent_color(data)
name = f'{data["id"]}.json'
if not skip_validation:
errors = ProfileManager.validate_profile(data)
if errors is not None:
raise errors
current_time = time.time()
if set_last_changed:
data["last_changed"] = current_time
is_update = ProfileManager._known_profiles.get(data["id"]) is not None
file_path = os.path.join(PROFILE_PATH, name)
with open(file_path, "w") as f:
json.dump(data, f, indent=4)
ProfileManager._known_profiles[data["id"]] = data
logger.info(f"Saved profile {name}")
if is_update:
change_type = PROFILE_EVENT.UPDATE
else:
change_type = PROFILE_EVENT.CREATE
change_id = ProfileManager._register_profile_change(
change_type, data["id"], current_time, change_id
)
ProfileManager._emit_profile_event(change_type, data["id"], change_id)
return {"profile": data, "change_id": change_id}
def delete_profile(id: str, change_id: Optional[str] = None) -> Optional[dict]:
profile = ProfileManager._known_profiles.get(id)
if not profile:
return None
filename = f'{profile["id"]}.json'
file_path = os.path.join(PROFILE_PATH, filename)
os.remove(file_path)
del ProfileManager._known_profiles[profile["id"]]
change_id = ProfileManager._register_profile_change(
PROFILE_EVENT.DELETE, profile["id"], change_id
)
ProfileManager._emit_profile_event(PROFILE_EVENT.DELETE, profile["id"])
ProfileManager._delete_unused_images()
return {"profile": profile, "change_id": change_id}
def get_profile(id):
logger.info(f"Serving profile: {id}")
logger.info(ProfileManager._known_profiles.get(id))
return ProfileManager._known_profiles.get(id)
def load_profile_and_send(id):
profile = ProfileManager._known_profiles.get(id)
if profile is not None:
ProfileManager.send_profile_to_esp32(profile)
return profile
def send_profile_to_esp32(data):
click_to_start = not MeticulousConfig[CONFIG_USER][PROFILE_AUTO_START]
click_to_purge = not MeticulousConfig[CONFIG_USER][PROFILE_AUTO_PURGE]
if "id" not in data:
data["id"] = str(uuid.uuid4())
ProfileManager.handle_image(data)
logger.info(f"Recieved data: {data} {type(data)}")
logger.info("processing simplified profile")
errors = ProfileManager.validate_profile(data)
if errors is not None:
raise errors
start = time.time()
try:
preprocessed_profile = ProfilePreprocessor.processVariables(data)
except Exception as err:
logger.info(
f"Profile variables could not be processed: {err.__class__.__name__}: {err}"
)
raise err
after_variables = time.time()
# Conver to nodeJSON
converter = ComplexProfileConverter(
click_to_start, click_to_purge, 1000, 7000, preprocessed_profile
)
profile = converter.get_profile()
end = time.time()
time_str = "Preprocessing of the profile took "
full_time_ms = (end - start) * 1000
if full_time_ms > 10:
time_str += f"{int(full_time_ms)} ms"
else:
time_str += f"{int(full_time_ms*1000)} ns"
variable_time_ms = (end - after_variables) * 1000
time_str += " out of that variables were processed in "
if variable_time_ms > 10:
time_str += f"{int(variable_time_ms)} ms"
else:
time_str += f"{int(variable_time_ms*1000)} ns"
logger.info(time_str)
logger.info(
f"Streaming JSON to ESP32: click_to_start={click_to_start} click_to_purge={click_to_purge} data={json.dumps(preprocessed_profile)}"
)
Machine.send_json_with_hash(profile)
ProfileManager._set_last_profile(data)
ProfileManager._emit_profile_event(PROFILE_EVENT.LOAD, data["id"])
return data
def refresh_profile_list():
start = time.time()
ProfileManager._known_profiles = dict()
for filename in os.listdir(PROFILE_PATH):
if not filename.endswith(".json"):
continue
file_path = os.path.join(PROFILE_PATH, filename)
with open(file_path, "r") as f:
try:
profile = json.load(f)
except json.decoder.JSONDecodeError as error:
logger.warning(f"Could not decode profile {f.name}: {error}")
continue
profile_changed = False
if "id" not in profile or profile["id"] == "":
profile["id"] = str(uuid.uuid4())
profile_changed = True
if "author" not in profile:
profile["author"] = ""
profile_changed = True
if "author_id" not in profile or profile["author_id"] == "":
profile["author_id"] = str("00000000-0000-0000-0000-000000000000")
profile_changed = True
if "last_changed" not in profile:
profile_changed = True
if "stages" not in profile:
profile["stages"] = []
profile_changed = True
else:
for stage in profile["stages"]:
if "key" not in stage:
stage["key"] = str(uuid.uuid4())
profile_changed = True
logger.info(f"Profile {profile['id']} was updated on load")
errors = ProfileManager.validate_profile(profile)
if errors is not None:
logger.warning(
f"Profile on disk failed to be loaded: {errors.message}"
)
continue
if profile_changed:
try:
ProfileManager.save_profile(
profile, set_last_changed=True, skip_validation=True
)
except Exception:
continue
id = profile["id"]
if (
id in ProfileManager._known_profiles
and ProfileManager._known_profiles[id]["last_changed"]
>= profile["last_changed"]
):
continue
ProfileManager._known_profiles[profile["id"]] = profile
end = time.time()
time_ms = (end - start) * 1000
if time_ms > 10:
time_str = f"{int(time_ms)} ms"
else:
time_str = f"{int(time_ms*1000)} ns"
logger.info(
f"Refreshed profile list in {time_str} with {len(ProfileManager._known_profiles)} known profiles."
)
ProfileManager._emit_profile_event(PROFILE_EVENT.RELOAD)
def refresh_default_profile_list():
logger.info("Refreshing default profiles")
start = time.time()
ProfileManager._default_profiles = []
files = os.listdir(DEFAULT_PROFILES_PATH)
files.sort()
for filename in files:
if not filename.endswith(".json"):
continue
file_path = os.path.join(DEFAULT_PROFILES_PATH, filename)
with open(file_path, "r") as f:
try:
profile = json.load(f)
except json.decoder.JSONDecodeError as error:
logger.warning(
f"Could not decode default profile {f.name}: {error}"
)
continue
logger.info("Found default profile: " + filename)
ProfileManager._default_profiles.append(profile)
# Check for community profiles
community_profiles_path = DEFAULT_PROFILES_PATH + "/community"
if os.path.exists(community_profiles_path):
logger.info("Refreshing community profiles")
ProfileManager._community_profiles = []
files = os.listdir(community_profiles_path)
files.sort()
for filename in files:
if not filename.endswith(".json"):
continue
file_path = os.path.join(community_profiles_path, filename)
with open(file_path, "r") as f:
try:
profile = json.load(f)
except json.decoder.JSONDecodeError as error:
logger.warning(
f"Could not decode community profile {f.name}: {error}"
)
continue
logger.info("Found community profile: " + filename)
ProfileManager._community_profiles.append(profile)
end = time.time()
time_ms = (end - start) * 1000
if time_ms > 10:
time_str = f"{int(time_ms)} ms"
else:
time_str = f"{int(time_ms*1000)} ns"
logger.info(
f"Refreshed default profile list in {time_str} with {len(ProfileManager._default_profiles)} default and {len(ProfileManager._community_profiles)} community profiles."
)
def refresh_image_list():
logger.info("Refreshing default image list")
ProfileManager._profile_default_images = []
if not os.path.exists(DEFAULT_IMAGES_PATH):
os.makedirs(DEFAULT_IMAGES_PATH)
logger.error("Missing default images path!")
if not os.path.exists(IMAGES_PATH):
os.makedirs(IMAGES_PATH)
if os.path.exists(DEFAULT_IMAGES_PATH_ACCENT_COLORS) and os.path.isfile(
DEFAULT_IMAGES_PATH_ACCENT_COLORS
):
with open(DEFAULT_IMAGES_PATH_ACCENT_COLORS, "r") as f:
try:
accent_colors = json.load(f)
ProfileManager._profile_default_images_accent_colors = accent_colors
except json.decoder.JSONDecodeError as error:
logger.warning(
f"Could not decode default accent colors {f.name}: {error}"
)
for filename in os.listdir(DEFAULT_IMAGES_PATH):
file_path = os.path.join(DEFAULT_IMAGES_PATH, filename)
if os.path.isfile(file_path):
file_extension = os.path.splitext(filename)[1].lower()
if file_extension not in [
".png",
".jpg",
".jpeg",
".gif",
".webm",
".webp",
]:
continue
md5_hash = ProfileManager._get_md5_hash(file_path)
new_filename = f"{md5_hash}{file_extension}"
dst_path = os.path.join(IMAGES_PATH, new_filename)
shutil.copy2(file_path, dst_path)
ProfileManager._profile_default_images.append(new_filename)
logger.info(
f"Found {len(ProfileManager._profile_default_images)} default images"
)
ProfileManager._known_images = os.listdir(IMAGES_PATH)
def _delete_unused_images():
logger.info("Garbage collecting unused images")
referenced_images: Set[str] = set()
for profile in ProfileManager._known_profiles.values():
image_url = profile.get("display", {}).get("image", "")
if image_url.startswith("/api/v1/profile/image/"):
referenced_images.add(image_url.split("/")[-1])
for image_filename in ProfileManager._known_images:
if image_filename in ProfileManager._profile_default_images:
continue
if image_filename in referenced_images:
continue
try:
os.remove(os.path.join(IMAGES_PATH, image_filename))
logger.info(f"Deleted unreferenced image: {image_filename}")
except Exception as e:
logger.error(f"Error deleting file {image_filename}: {e}")
ProfileManager.refresh_image_list()
def get_default_images():
return ProfileManager._profile_default_images
def list_profiles():
return ProfileManager._known_profiles
def list_default_profiles():
return {
"default": ProfileManager._default_profiles,
"community": ProfileManager._community_profiles,
}
def get_last_profile():
return MeticulousConfig[CONFIG_PROFILES][PROFILE_LAST]
def _get_md5_hash(image_path):
hash_md5 = hashlib.md5()
with open(image_path, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hash_md5.update(chunk)
return hash_md5.hexdigest()
def validate_profile(data):
try:
ProfilePreprocessor.processVariables(data)
except Exception as err:
logger.info(
f"Profile variables could not be processed: {err.__class__.__name__}: {err}"
)
return err
if not ProfileManager._schema:
logger.warning("No schema available, not validating")
return None
logger.info(f"validating profile: {data['id']}")
try:
jsonschema.validate(instance=data, schema=ProfileManager._schema)
logger.info("JSON data is valid.")
except jsonschema.exceptions.ValidationError as err:
logger.error(f"JSON validation error: {err.message}")
for error in sorted(err.context, key=lambda e: e.schema_path):
logger.error(f"Schema path: {list(error.schema_path)}")
logger.error(f"Message: {error.message}")
return err
return None