2023-04-14 10:37:37 +00:00
|
|
|
import datetime
|
2023-04-13 09:52:51 +00:00
|
|
|
import hashlib
|
|
|
|
import secrets
|
2023-04-13 11:12:08 +00:00
|
|
|
import string
|
|
|
|
import random
|
2023-04-14 08:41:07 +00:00
|
|
|
import os
|
2023-04-14 10:37:37 +00:00
|
|
|
import subprocess
|
|
|
|
import threading
|
|
|
|
from time import sleep
|
|
|
|
import db
|
2023-04-14 12:02:01 +00:00
|
|
|
import config
|
2023-04-13 11:12:08 +00:00
|
|
|
|
|
|
|
def generate_random_string(length):
|
2023-04-13 11:23:54 +00:00
|
|
|
letters = string.ascii_letters
|
2023-04-13 11:12:08 +00:00
|
|
|
random_string = ''.join(random.choice(letters) for i in range(length))
|
|
|
|
return random_string
|
2023-04-13 09:52:51 +00:00
|
|
|
|
|
|
|
def hash_password(password):
|
|
|
|
return hashlib.sha512(password.encode('utf-8')).hexdigest()
|
|
|
|
|
|
|
|
def generate_auth_token():
|
2023-04-14 08:41:07 +00:00
|
|
|
return secrets.token_urlsafe(32)
|
|
|
|
|
|
|
|
def ping_client(ip):
|
2023-04-14 09:57:27 +00:00
|
|
|
response = os.system("ping -c 1 " + ip + "> /dev/null")
|
2023-04-14 08:41:07 +00:00
|
|
|
|
|
|
|
if response == 0:
|
|
|
|
return True
|
|
|
|
else:
|
2023-04-14 10:37:37 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def ssh_thread_function():
|
2023-04-14 12:02:01 +00:00
|
|
|
subprocess.run(['wssh','--fbidhttp=False', '--port='+config.webssh_port])
|
2023-04-14 10:37:37 +00:00
|
|
|
|
|
|
|
def check_allocation_thread_function():
|
|
|
|
while True:
|
|
|
|
ids = db.get_image_allocation_all()
|
|
|
|
for x in ids:
|
|
|
|
ip = db.get_image_allocation_clientip_id(x[0])
|
|
|
|
ping_thread = PingThread(ip, x[0])
|
|
|
|
ping_thread.start()
|
|
|
|
|
|
|
|
sleep(10)
|
|
|
|
|
|
|
|
class PingThread(threading.Thread):
|
|
|
|
def __init__(self, ip, id):
|
|
|
|
super(PingThread, self).__init__()
|
|
|
|
self.Ip = ip
|
|
|
|
self.Id = id
|
|
|
|
def run(self):
|
|
|
|
if self.Ip is None:
|
|
|
|
return
|
|
|
|
if ping_client(self.Ip) == False:
|
|
|
|
date = db.get_image_allocation_time_id(self.Id)
|
|
|
|
if date is None:
|
|
|
|
return
|
|
|
|
delta = datetime.datetime.now() - date
|
|
|
|
if delta.total_seconds() > 30:
|
|
|
|
db.del_image_allocation_id(self.Id)
|
|
|
|
else:
|
|
|
|
db.update_image_allocation_time(self.Id)
|
|
|
|
|
|
|
|
def init_threads():
|
|
|
|
ssh_thread = threading.Thread(target=ssh_thread_function)
|
|
|
|
ssh_thread.start()
|
|
|
|
|
|
|
|
allocation_thread = threading.Thread(target=check_allocation_thread_function)
|
|
|
|
allocation_thread.start()
|