-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathentrypoint.py
107 lines (96 loc) · 3.99 KB
/
entrypoint.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
import subprocess
from os import getenv
### ===============================================================================
### Get the environment variables
D1_GEN = getenv("D1_GEN")
D1_IP = getenv("D1_IP")
D1_PORT = getenv("D1_PORT", 80)
D1_NAME = getenv("D1_NAME", D1_IP) # Defaults to IP if not set (maybe replace . with - or _)
D1_USERNAME = getenv("D1_USERNAME", None)
D1_PASSWORD = getenv("D1_PASSWORD", None)
EXPORTER_PORT = getenv("EXPORTER_PORT", 5000)
### Display a welcoming message in Docker logs
print("👍 Container started. Welcome!")
print("⏳ Checking environment variables...")
### Check if the environment variables are set
### Exporter Port
if EXPORTER_PORT == 5000:
print(" ✅ Using default exporter port 5000.")
### TODO: Add port check
else:
print(f" ✅ Using custom exporter port {EXPORTER_PORT}.")
### Required one device
if D1_GEN is None or D1_IP is None:
print(" ❌ D1 information are not fully set. Exiting...")
exit()
else:
print(" ✅ D1 information are set.")
### Check for optional D1 device port
if D1_PORT == 80:
print(" ✅ D1 using default port 80.")
else:
print(f" ✅ D1 using custom port {D1_PORT}.")
### Check for optional D1 device name
if D1_NAME is not None:
print(f" ✅ D1 using custom name {D1_NAME}.")
else:
print(" ✅ D1 using default name (IP address).")
### Check for optional D1 device username and password
if D1_GEN == "1":
if D1_USERNAME is not None and D1_PASSWORD is not None:
print(" ✅ D1 credentials are set.")
elif (D1_USERNAME is None) != (D1_PASSWORD is None):
print(" ❌ D1 credentials are incomplete. Both username and password must be set. Exiting...")
exit()
else:
print(" ⚠️ D1 doesn't require credentials.")
elif D1_GEN == "2":
if D1_PASSWORD is not None:
print(" ✅ D1 password is set.")
else:
print(" ⚠️ Warning: D1 password is not set. This is insecure.")
### Check for additional optional devices starting from D2 and beyond
device_number = 2
while True:
gen = getenv(f"D{device_number}_GEN")
ip = getenv(f"D{device_number}_IP")
port = getenv(f"D{device_number}_PORT", 80)
name = getenv(f"D{device_number}_NAME", ip)
username = getenv(f"D{device_number}_USERNAME", None)
password = getenv(f"D{device_number}_PASSWORD", None)
### TODO: Add check for device type (plugs, 3em, etc.)
if gen is None and ip is None:
break
elif gen is None or ip is None:
print(f" ❌ D{device_number} information are not fully set. Exiting...")
exit()
else:
print(f" ✅ D{device_number} information are set.")
### Check for optional D{n} device port
if port == 80:
print(f" ✅ D{device_number} using default port 80.")
else:
print(f" ✅ D{device_number} using custom port {port}.")
### Check for optional D{n} device name
if name is not None:
print(f" ✅ D{device_number} using custom name {name}.")
else:
print(f" ✅ D{device_number} using default name (IP address).")
### Check for optional D{n} device username and password
if gen == "1":
if username is not None and password is not None:
print(f" ✅ D{device_number} credentials are set.")
elif (username is None) != (password is None):
print(f" ❌ D{device_number} credentials are incomplete. Both username and password must be set. Exiting...")
exit()
else:
print(f" ⚠️ D{device_number} doesn't require credentials.")
elif gen == "2":
if password is not None:
print(f" ✅ D{device_number} password is set.")
else:
print(f" ⚠️ Warning: D{device_number} password is not set. This is insecure.")
device_number += 1
### ===============================================================================
print("\n🚀 Starting SMEX...")
flask_api = subprocess.run(["python3", "-u", "-m", "flask", "run", "--host=0.0.0.0", f"--port={EXPORTER_PORT}"])