Compare commits
2 commits
2d963de60f
...
e65f6024d3
Author | SHA1 | Date | |
---|---|---|---|
e65f6024d3 | |||
43519b104d |
2 changed files with 30 additions and 22 deletions
|
@ -66,17 +66,24 @@ class Auth():
|
||||||
pc_uuid = str(kwargs["pc_uuid"])
|
pc_uuid = str(kwargs["pc_uuid"])
|
||||||
pc_token = str(kwargs["pc_token"])
|
pc_token = str(kwargs["pc_token"])
|
||||||
if "device_list" in kwargs:
|
if "device_list" in kwargs:
|
||||||
|
if kwargs["device_list"] == []:
|
||||||
|
device_list = None
|
||||||
|
else:
|
||||||
device_list = kwargs["device_list"]
|
device_list = kwargs["device_list"]
|
||||||
else:
|
else:
|
||||||
pass
|
device_list = None
|
||||||
keyboard_number = "own"
|
|
||||||
mouse_number = "own"
|
keyboard_number = 0
|
||||||
|
mouse_number = 0
|
||||||
|
|
||||||
if "password_hash" in kwargs:
|
if "password_hash" in kwargs:
|
||||||
password_hash = str(kwargs["password_hash"])
|
password_hash = str(kwargs["password_hash"])
|
||||||
cursor.execute("SELECT * FROM pc_list WHERE pc_number = %s AND password_hash = %s AND pc_uuid = %s AND pc_token = %s", (pc_number, password_hash, pc_uuid, pc_token))
|
cursor.execute("SELECT * FROM pc_list WHERE pc_number = %s AND password_hash = %s AND pc_uuid = %s AND pc_token = %s", (pc_number, password_hash, pc_uuid, pc_token))
|
||||||
pc_info = cursor.fetchall()
|
pc_info = cursor.fetchall()
|
||||||
if pc_info:
|
if pc_info:
|
||||||
|
if device_list == None:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
for device in device_list:
|
for device in device_list:
|
||||||
cursor.execute("SELECT * FROM keyboard_list WHERE device_instance_path = %s", (device["device_instance_path"],))
|
cursor.execute("SELECT * FROM keyboard_list WHERE device_instance_path = %s", (device["device_instance_path"],))
|
||||||
keyboard_record = cursor.fetchall()
|
keyboard_record = cursor.fetchall()
|
||||||
|
|
|
@ -388,7 +388,8 @@ class Lock(customtkinter.CTkToplevel):
|
||||||
def auth(self):
|
def auth(self):
|
||||||
self.button_disable()
|
self.button_disable()
|
||||||
password = str(self.password_entry.get())
|
password = str(self.password_entry.get())
|
||||||
devices = self.get_input_devices()
|
#devices = self.get_input_devices()
|
||||||
|
devices = []
|
||||||
|
|
||||||
if len(password) == 10:
|
if len(password) == 10:
|
||||||
print("マスターパスワードで認証を試行します。")
|
print("マスターパスワードで認証を試行します。")
|
||||||
|
|
Loading…
Reference in a new issue