2021-04-01 12:08:36 +02:00
|
|
|
import hashlib
|
2021-03-08 21:06:35 +01:00
|
|
|
import json
|
2021-03-10 13:26:44 +01:00
|
|
|
import os
|
2021-03-08 21:06:35 +01:00
|
|
|
import threading
|
2021-04-01 12:08:36 +02:00
|
|
|
import time
|
|
|
|
import engine
|
|
|
|
import requests
|
|
|
|
import uuid
|
2021-04-09 15:03:59 +02:00
|
|
|
import subprocess
|
2021-04-15 14:56:49 +02:00
|
|
|
from fastapi import FastAPI, Request, File, UploadFile
|
2021-04-01 12:08:36 +02:00
|
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from fastapi.responses import FileResponse
|
|
|
|
from pydantic import BaseModel
|
2021-03-04 12:13:46 +01:00
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
check = engine.Scan()
|
|
|
|
check.check_to_go()
|
|
|
|
if check.state_list["error"]:
|
|
|
|
for error in check.errors:
|
|
|
|
print(error)
|
2021-04-15 14:56:49 +02:00
|
|
|
check.fix_version()
|
2021-04-09 15:03:59 +02:00
|
|
|
|
2021-04-15 14:56:49 +02:00
|
|
|
with open("settings.json", "r", encoding='utf-8') as f: # loading settings
|
2021-03-12 17:26:05 +01:00
|
|
|
settings = json.load(f)
|
2021-03-04 18:36:21 +01:00
|
|
|
|
2021-04-15 14:56:49 +02:00
|
|
|
with open("filesystem.json", "r", encoding='utf-8') as f: # loading filesystem
|
2021-03-17 08:48:03 +01:00
|
|
|
filesystem = json.load(f)
|
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
IP = settings["IP"]
|
|
|
|
ID = settings["ID"]
|
|
|
|
location = settings["location"]
|
2021-03-21 12:52:55 +01:00
|
|
|
time_to_save = settings["time_to_save"]
|
2021-03-12 17:26:05 +01:00
|
|
|
|
2021-03-16 20:00:41 +01:00
|
|
|
app = FastAPI() # init of FastAPI
|
2021-04-01 12:08:36 +02:00
|
|
|
|
|
|
|
origins = ["*", ]
|
|
|
|
app.add_middleware(
|
|
|
|
CORSMiddleware,
|
|
|
|
allow_origins=["*"],
|
|
|
|
allow_credentials=True,
|
|
|
|
allow_methods=["*"],
|
|
|
|
allow_headers=["*"],
|
|
|
|
)
|
2021-03-12 17:26:05 +01:00
|
|
|
log = engine.Log(settings["log"]) # init of LOG
|
2021-03-21 12:52:55 +01:00
|
|
|
update = engine.Update()
|
2021-03-12 17:26:05 +01:00
|
|
|
offline = []
|
2021-03-21 12:52:55 +01:00
|
|
|
save_time = time.time()
|
2021-03-04 18:36:21 +01:00
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
time_to_heartbeat = settings["time_to_heartbeat"] # Raspberry will be requesting heartbeat every __ seconds
|
2021-03-16 20:00:41 +01:00
|
|
|
time_to_heartbeat_offline = settings[
|
|
|
|
"time_to_heartbeat_offline"] # Raspberry will be requesting heartbeat every __ seconds from offline rpi
|
2021-03-10 13:26:44 +01:00
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
# json variables
|
|
|
|
heartbeat_table = settings["heartbeat_table"]
|
2021-04-09 15:03:59 +02:00
|
|
|
sensors = {}
|
2021-03-12 17:26:05 +01:00
|
|
|
|
2021-04-15 14:56:49 +02:00
|
|
|
messages = [] # {user: "", timestamp: time.Time(), message: ""}
|
2021-04-01 12:08:36 +02:00
|
|
|
|
2021-03-08 21:06:35 +01:00
|
|
|
heartbeat_table["ID"].append(ID)
|
|
|
|
heartbeat_table["IP"].append(IP)
|
|
|
|
heartbeat_table["location"].append(location)
|
|
|
|
heartbeat_table["file_system"].append(filesystem)
|
|
|
|
heartbeat_table["last_heartbeat"].append(time_to_heartbeat)
|
2021-03-10 13:26:44 +01:00
|
|
|
|
|
|
|
|
2021-03-16 20:00:41 +01:00
|
|
|
class ServerTable(BaseModel): # table of content for heartbeat request
|
2021-03-04 12:13:46 +01:00
|
|
|
ID: list
|
|
|
|
IP: list
|
|
|
|
location: list
|
|
|
|
file_system: list
|
|
|
|
last_heartbeat: list
|
|
|
|
|
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
class Sensor(BaseModel):
|
|
|
|
name: str
|
|
|
|
value: str
|
|
|
|
|
|
|
|
|
2021-04-22 20:43:57 +02:00
|
|
|
class Message(BaseModel):
|
|
|
|
m_sender: str
|
|
|
|
message: str
|
|
|
|
|
|
|
|
|
2021-04-01 12:08:36 +02:00
|
|
|
@app.get("/")
|
|
|
|
def read_root():
|
2021-04-09 15:03:59 +02:00
|
|
|
return "wikispot"
|
2021-04-01 12:08:36 +02:00
|
|
|
|
|
|
|
|
2021-03-04 12:13:46 +01:00
|
|
|
@app.post("/heartbeat")
|
2021-03-16 20:00:41 +01:00
|
|
|
def heartbeat(s_table: ServerTable, request: Request):
|
2021-03-12 17:26:05 +01:00
|
|
|
log.message(f"server requested heartbeat {request.client.host}:{request.client.port}")
|
2021-03-04 18:36:21 +01:00
|
|
|
log.debug(f"Recieved server table: {s_table}")
|
2021-03-16 20:00:41 +01:00
|
|
|
|
2021-03-04 18:36:21 +01:00
|
|
|
try:
|
|
|
|
for position, server_id in enumerate(s_table.ID):
|
|
|
|
if server_id in heartbeat_table["ID"]:
|
2021-03-08 21:06:35 +01:00
|
|
|
if heartbeat_table["last_heartbeat"][heartbeat_table["ID"].index(server_id)] < \
|
2021-03-05 19:09:00 +01:00
|
|
|
s_table.last_heartbeat[position]:
|
2021-03-04 18:36:21 +01:00
|
|
|
heartbeat_table["last_heartbeat"][heartbeat_table["ID"].index(server_id)] = s_table.last_heartbeat[
|
|
|
|
position]
|
2021-03-08 21:06:35 +01:00
|
|
|
log.debug(f"updated {server_id}`s heartbeat to {s_table.last_heartbeat[position]}")
|
2021-03-12 17:26:05 +01:00
|
|
|
heartbeat_table["file_system"][heartbeat_table["ID"].index(server_id)] = s_table.file_system[
|
|
|
|
position]
|
2021-03-08 21:06:35 +01:00
|
|
|
elif server_id == ID:
|
|
|
|
log.debug(f"Updated my heartbeat from {s_table.last_heartbeat[position]} to {time_to_heartbeat}")
|
|
|
|
heartbeat_table["last_heartbeat"][heartbeat_table["ID"].index(ID)] = time_to_heartbeat
|
2021-03-04 18:36:21 +01:00
|
|
|
else:
|
|
|
|
heartbeat_table["ID"].append(s_table.ID[position])
|
|
|
|
heartbeat_table["IP"].append(s_table.IP[position])
|
|
|
|
heartbeat_table["location"].append(s_table.location[position])
|
|
|
|
heartbeat_table["file_system"].append(s_table.file_system[position])
|
|
|
|
heartbeat_table["last_heartbeat"].append(s_table.last_heartbeat[position])
|
|
|
|
except Exception as error:
|
|
|
|
log.error(f"heartbeat > {error}")
|
2021-03-16 20:00:41 +01:00
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
if heartbeat_table["ID"][heartbeat_table["IP"].index(request.client.host)] in offline:
|
|
|
|
offline.remove(heartbeat_table["ID"][heartbeat_table["IP"].index(request.client.host)])
|
|
|
|
log.message(f"{request.client.host} gone online")
|
2021-03-16 20:00:41 +01:00
|
|
|
|
2021-03-04 18:36:21 +01:00
|
|
|
return heartbeat_table, {"ID": ID, "file_system": filesystem, "location": location}
|
|
|
|
|
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
@app.get("/{IDx}/sensors")
|
|
|
|
def get_sensors(IDx: int, request: Request):
|
|
|
|
global sensors
|
2021-03-04 18:36:21 +01:00
|
|
|
log.message(f"sensor data sent to {request.client.host}:{request.client.port}")
|
|
|
|
log.debug(f"sensor data: {sensors}")
|
2021-04-09 15:03:59 +02:00
|
|
|
if IDx == ID:
|
|
|
|
return sensors
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
r = requests.get(f"""http://{heartbeat_table["IP"][heartbeat_table["ID"].index(IDx)]}:8000/{IDx}/sensors""")
|
|
|
|
return r.json()
|
|
|
|
except Exception as error:
|
|
|
|
log.error(f"Sensor data download from {IDx} failed.\n ERROR: {error}")
|
|
|
|
return f"Sensor data download from {IDx} failed.\n ERROR: {error}"
|
2021-03-05 19:09:00 +01:00
|
|
|
|
|
|
|
|
2021-03-10 13:26:44 +01:00
|
|
|
@app.get("/files/{IDx}/{file}")
|
2021-04-09 15:03:59 +02:00
|
|
|
def get_file(IDx: int, file: str, request: Request):
|
|
|
|
log.debug(f"""{request.client} requested {file} from {"this server" if IDx == ID else f"id {IDx}"}""")
|
2021-03-16 20:00:41 +01:00
|
|
|
server_ip = heartbeat_table["IP"][heartbeat_table["ID"].index(IDx)]
|
2021-03-10 13:26:44 +01:00
|
|
|
if IDx == ID:
|
2021-04-09 15:03:59 +02:00
|
|
|
if os.path.isfile(f"files/{file}"):
|
|
|
|
return FileResponse(f"files/{file}")
|
|
|
|
else:
|
|
|
|
return f"File {file} does not exist."
|
|
|
|
if IDx not in heartbeat_table["ID"]:
|
|
|
|
log.error(f"{request.client} tried to access id ({IDx}) that does not exist.")
|
|
|
|
return f"ERROR: {IDx} does not exist."
|
|
|
|
else:
|
2021-03-10 13:26:44 +01:00
|
|
|
if os.path.isdir(f"cache/{IDx}"):
|
|
|
|
if os.path.isfile(f"cache/{IDx}/{file}"):
|
2021-03-16 20:00:41 +01:00
|
|
|
with open(f"cache/{IDx}/{file}", "rb") as compared_file:
|
|
|
|
m = hashlib.md5()
|
|
|
|
for line in compared_file:
|
|
|
|
m.update(line)
|
|
|
|
rr = requests.get(f"""http://{server_ip}:8000/compare/{file}""")
|
|
|
|
if rr.text.strip('"') != str(m.hexdigest()):
|
2021-04-09 15:03:59 +02:00
|
|
|
log.warning(f"{file} on server {server_ip} is changed.")
|
2021-03-16 20:00:41 +01:00
|
|
|
else:
|
|
|
|
log.debug(f"returning cached file cache/{IDx}{file}")
|
|
|
|
return FileResponse(f"cache/{IDx}/{file}")
|
2021-03-10 13:26:44 +01:00
|
|
|
else:
|
|
|
|
os.mkdir(f"cache/{IDx}")
|
2021-03-16 20:00:41 +01:00
|
|
|
r = requests.get(f"http://{server_ip}:8000/files/{IDx}/{file}")
|
2021-04-09 15:03:59 +02:00
|
|
|
if "does not exist" in r.text:
|
|
|
|
log.error(f"{request.client} tried to access file ({file}) on id {IDx} that does not exist.")
|
|
|
|
return f"ERROR: {file} does not exist."
|
|
|
|
log.message(f"Downloaded {file} from {server_ip}")
|
2021-04-15 14:56:49 +02:00
|
|
|
if ".txt" in file:
|
|
|
|
with open(f"cache/{IDx}/{file}", "wb", encoding='utf-8') as save:
|
|
|
|
save.write(bytes(r.content))
|
|
|
|
else:
|
|
|
|
with open(f"cache/{IDx}/{file}", "wb") as save:
|
|
|
|
save.write(bytes(r.content))
|
2021-03-10 13:26:44 +01:00
|
|
|
return FileResponse(f"cache/{IDx}/{file}")
|
|
|
|
|
2021-03-05 19:09:00 +01:00
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
@app.post("/update_sensor")
|
|
|
|
def update_sensors(data: Sensor, request: Request):
|
|
|
|
global sensors
|
|
|
|
if data.name in sensors:
|
|
|
|
log.message(f"{request.client.host} updated sensor {data.name} with value {data.value}")
|
|
|
|
sensors[data.name] = data.value
|
|
|
|
else:
|
|
|
|
log.warning(f"{request.client} created new sensor.\n SENSOR: {data}")
|
|
|
|
sensors[data.name] = data.value
|
|
|
|
return f"Successfuly made"
|
2021-03-05 19:09:00 +01:00
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
|
2021-03-16 20:00:41 +01:00
|
|
|
@app.get("/compare/{file}")
|
|
|
|
def comparision(file: str):
|
2021-04-09 15:03:59 +02:00
|
|
|
try:
|
|
|
|
with open(f"files/{file}", "rb") as compared_file:
|
|
|
|
m = hashlib.md5()
|
|
|
|
for line in compared_file:
|
|
|
|
m.update(line)
|
|
|
|
return m.hexdigest()
|
|
|
|
except FileNotFoundError:
|
|
|
|
return f"ERROR {file} does not exist"
|
2021-03-16 20:00:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
@app.get("/devices_list")
|
|
|
|
def get_devices_list():
|
2021-04-16 08:23:42 +02:00
|
|
|
returning_value = [{"connected_id": ID}, *heartbeat_table["file_system"]]
|
|
|
|
while "" in returning_value:
|
|
|
|
returning_value.remove("")
|
|
|
|
return returning_value
|
|
|
|
|
2021-03-16 20:00:41 +01:00
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
@app.get("/admin/get/{command}")
|
|
|
|
def admin_get(command: str):
|
2021-03-21 12:52:55 +01:00
|
|
|
if command == "get_updates":
|
|
|
|
return [update.get_version(), update.get_updates()]
|
|
|
|
if "update-" in command:
|
2021-04-09 15:03:59 +02:00
|
|
|
state = []
|
|
|
|
version = command.split("-")[1]
|
|
|
|
for rpi in heartbeat_table["IP"]:
|
|
|
|
if rpi != IP:
|
|
|
|
r = requests.get(f"""http://{rpi}:8000/admin/get/update_one-{version}""")
|
|
|
|
if r.text.strip('"').split("\\n")[0] == "SUCCESS":
|
|
|
|
log.message(f"{rpi} was updated to {version}")
|
|
|
|
else:
|
|
|
|
log.warning(f"""{rpi} failed to update. Manual update may be needed for proper working of network.
|
|
|
|
Response from server: {r.text}""")
|
|
|
|
state.append({rpi: r.text.strip('"').split("\\n")})
|
|
|
|
# Todo Remove development comments
|
|
|
|
# subprocess.check_output(f"""python3 system.py update -version {version}""")
|
|
|
|
log.message(f"All devices in network should be updated to {version}")
|
|
|
|
state.append({IP: "updated"})
|
|
|
|
return state
|
|
|
|
if "update_one-" in command:
|
|
|
|
state = subprocess.check_output(["python3", "system.py", "update", "-version", f"""{command.split("-")[1]}"""])
|
|
|
|
log.warning(state.decode("utf-8"))
|
|
|
|
return state.decode("utf-8")
|
2021-04-15 14:56:49 +02:00
|
|
|
if command == "settings":
|
2021-04-09 15:03:59 +02:00
|
|
|
return settings
|
2021-04-15 14:56:49 +02:00
|
|
|
if command == "filesystem":
|
|
|
|
return filesystem
|
2021-04-09 15:03:59 +02:00
|
|
|
|
|
|
|
|
2021-04-15 14:56:49 +02:00
|
|
|
@app.post("/admin/upload_file")
|
|
|
|
async def create_upload_file(uploaded_file: UploadFile = File(...), patch: str = ""):
|
|
|
|
file_location = f"{patch}{uploaded_file.filename}"
|
|
|
|
with open(file_location, "wb+") as file_object:
|
|
|
|
file_object.write(uploaded_file.file.read())
|
|
|
|
return {"info": f"file '{uploaded_file.filename}' saved at '{file_location}'"}
|
2021-04-09 15:03:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Todo upload of update file and settings
|
2021-03-21 12:52:55 +01:00
|
|
|
|
|
|
|
|
2021-04-01 12:08:36 +02:00
|
|
|
@app.get("/messages/get")
|
2021-04-21 19:28:26 +02:00
|
|
|
def get_messages(timestamp: str):
|
|
|
|
if timestamp:
|
|
|
|
for position, message in enumerate(reversed(messages)):
|
|
|
|
if float(message["timestamp"]) <= float(timestamp):
|
|
|
|
return list(reversed(list(reversed(messages))[:position]))
|
|
|
|
|
|
|
|
if timestamp == "0":
|
|
|
|
return messages
|
|
|
|
return []
|
|
|
|
else:
|
|
|
|
return messages[:10]
|
2021-04-01 12:08:36 +02:00
|
|
|
|
|
|
|
|
2021-04-21 19:28:26 +02:00
|
|
|
@app.get("/messages/register")
|
|
|
|
def register():
|
2021-04-15 14:56:49 +02:00
|
|
|
return [uuid.uuid4().hex[24:], messages[:9]]
|
2021-04-01 12:08:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
@app.post("/messages/post")
|
2021-04-22 20:43:57 +02:00
|
|
|
def post_messages(data: Message):
|
|
|
|
log.debug(f"Message was posted. Sender: {data.m_sender}\n MESSAGE: {data.message}")
|
|
|
|
if len(messages) >= settings["max_mess"]:
|
|
|
|
del messages[:len(messages) - settings["max_mess"]]
|
|
|
|
if data.m_sender and data.message:
|
|
|
|
messages.append({"sender": data.m_sender, "message": data.message, "timestamp": time.time()})
|
2021-04-09 15:03:59 +02:00
|
|
|
return "successful"
|
2021-04-01 12:08:36 +02:00
|
|
|
else:
|
|
|
|
return "Empty message/sender"
|
|
|
|
|
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
@app.get("/debug")
|
|
|
|
def debug_esp():
|
|
|
|
return "test successful"
|
|
|
|
|
|
|
|
|
2021-03-12 17:26:05 +01:00
|
|
|
def send_heartbeat(ip, id):
|
2021-03-10 13:26:44 +01:00
|
|
|
global heartbeat_table
|
2021-03-12 17:26:05 +01:00
|
|
|
log.message(f"""sending heartbeat to {ip}({"offline" if id in offline else "online"})""")
|
2021-03-08 21:06:35 +01:00
|
|
|
cache_request = requests.post(f"http://{ip}:8000/heartbeat", data=json.dumps(heartbeat_table))
|
2021-03-10 13:26:44 +01:00
|
|
|
heartbeat_table = dict(cache_request.json()[0])
|
2021-03-08 21:06:35 +01:00
|
|
|
log.debug(json.dumps(cache_request.json(), indent=4))
|
|
|
|
|
|
|
|
|
|
|
|
def mainloop():
|
2021-03-21 12:52:55 +01:00
|
|
|
global save_time
|
2021-03-08 21:06:35 +01:00
|
|
|
while True:
|
|
|
|
for device_number, device_ID in enumerate(heartbeat_table["ID"]):
|
|
|
|
if device_ID != ID:
|
|
|
|
if heartbeat_table["last_heartbeat"][device_number] < 0:
|
2021-03-12 17:26:05 +01:00
|
|
|
try:
|
|
|
|
send_heartbeat(heartbeat_table["IP"][device_number], heartbeat_table["ID"][device_number])
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
if heartbeat_table["ID"][device_number] not in offline:
|
|
|
|
log.warning(f"""{heartbeat_table["IP"][device_number]} disconnected/is not available""")
|
|
|
|
offline.append(heartbeat_table["ID"][device_number])
|
2021-03-21 12:52:55 +01:00
|
|
|
heartbeat_table["last_heartbeat"][int(device_number)] = int(time_to_heartbeat_offline)
|
|
|
|
else:
|
|
|
|
offline.remove(heartbeat_table["ID"][device_number])
|
|
|
|
log.message(f"""Removing {device_ID} because of long inactivity.""")
|
|
|
|
del heartbeat_table["ID"][device_number]
|
|
|
|
del heartbeat_table["IP"][device_number]
|
|
|
|
del heartbeat_table["location"][device_number]
|
|
|
|
del heartbeat_table["file_system"][device_number]
|
|
|
|
del heartbeat_table["last_heartbeat"][device_number]
|
2021-03-12 17:26:05 +01:00
|
|
|
else:
|
|
|
|
if heartbeat_table["ID"][device_number] in offline:
|
|
|
|
offline.remove(heartbeat_table["ID"][device_number])
|
|
|
|
log.message(f"""{heartbeat_table["IP"][device_number]} gone online""")
|
|
|
|
heartbeat_table["last_heartbeat"][int(device_number)] = int(time_to_heartbeat) + 5
|
2021-03-21 12:52:55 +01:00
|
|
|
try:
|
2021-04-01 12:08:36 +02:00
|
|
|
log.debug(
|
|
|
|
f"""{device_ID} : time to heartbeat : {heartbeat_table["last_heartbeat"][device_number]}""")
|
2021-03-21 12:52:55 +01:00
|
|
|
heartbeat_table["last_heartbeat"][device_number] -= 1
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
if time.time() - time_to_save > save_time and settings["save_table"]:
|
|
|
|
save_time = time.time()
|
|
|
|
log.message("Saving heartbeat table.")
|
|
|
|
log.debug(f"Saving heartbeat table: {heartbeat_table}")
|
|
|
|
settings["heartbeat_table"] = heartbeat_table
|
2021-04-15 14:56:49 +02:00
|
|
|
with open("settings.json", "w", encoding='utf-8') as file:
|
2021-03-21 12:52:55 +01:00
|
|
|
json.dump(settings, file, indent=2)
|
2021-03-08 21:06:35 +01:00
|
|
|
time.sleep(1)
|
2021-03-05 19:09:00 +01:00
|
|
|
|
2021-03-10 13:26:44 +01:00
|
|
|
|
2021-04-09 15:03:59 +02:00
|
|
|
print(f"""Starting WikiSpot V{update.get_version()["version"]}""")
|
|
|
|
print("GitHub: https://github.com/Tucan444/Mabasej_Team")
|
2021-03-08 21:06:35 +01:00
|
|
|
thread_1 = threading.Thread(target=mainloop, daemon=True)
|
|
|
|
thread_1.start()
|
2021-03-12 17:26:05 +01:00
|
|
|
|
2021-04-01 12:08:36 +02:00
|
|
|
# Todo settings for easy adding/editing files/id/text
|