From 7b992afe70925f244ca6e9746071ae71e497b54e Mon Sep 17 00:00:00 2001 From: Dmitrii Morozov Date: Mon, 8 Apr 2024 23:40:24 +0200 Subject: Observe status of friends --- DeviceAuth.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 DeviceAuth.py (limited to 'DeviceAuth.py') diff --git a/DeviceAuth.py b/DeviceAuth.py new file mode 100644 index 0000000..d62731c --- /dev/null +++ b/DeviceAuth.py @@ -0,0 +1,26 @@ +import json +import os + +class DeviceAuth: + + __filename__ = 'device-auth.json' + + def __init__(self): + print('DeviceAuth init') + + + def device_auth_file_exists(self): + return os.path.isfile(self.__filename__) + + def get_device_auth_details(self): + if os.path.isfile(self.__filename__): + with open(self.__filename__, 'r') as fp: + return json.load(fp) + return {} + + def store_device_auth_details(self, email, details): + existing = self.get_device_auth_details() + existing[email] = details + + with open(self.__filename__, 'w') as fp: + json.dump(existing, fp) \ No newline at end of file -- cgit v1.2.3