summaryrefslogtreecommitdiffstats
path: root/girok/utils/auth.py
diff options
context:
space:
mode:
Diffstat (limited to 'girok/utils/auth.py')
-rw-r--r--girok/utils/auth.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/girok/utils/auth.py b/girok/utils/auth.py
new file mode 100644
index 0000000..083836d
--- /dev/null
+++ b/girok/utils/auth.py
@@ -0,0 +1,54 @@
+import json
+from rich import print
+
+import girok.utils.general as general_utils
+import girok.api.auth as auth_api
+
+def match_passwords(pwd, confirm_pwd):
+ if pwd != confirm_pwd:
+ print("Confirm password does not match.")
+ exit(0)
+
+
+def remove_access_token(config_path):
+ with open(config_path, 'r') as f:
+ org_data = json.load(f)
+ del org_data['access_token']
+ del org_data['email']
+
+ general_utils.write_json(config_path, org_data)
+
+
+def get_access_token_from_json(fpath):
+ with open(fpath, 'r') as f:
+ data = json.load(f)
+ if "access_token" in data:
+ return data['access_token']
+ else:
+ return None
+
+
+def get_user_email_from_json(fpath):
+ with open(fpath, 'r') as f:
+ data = json.load(f)
+ if "email" in data:
+ return data['email']
+ else:
+ return None
+
+
+def build_jwt_header(fpath):
+ return {
+ "Authorization": "Bearer " + get_access_token_from_json(fpath)
+ }
+
+
+def is_logged_in(access_token):
+ resp = auth_api.validate_access_token(access_token)
+ return True if resp.status_code == 200 else False
+
+
+def store_access_token_to_json(fpath, access_token):
+ data = {"access_token": access_token}
+ general_utils.update_json(fpath, data)
+ \ No newline at end of file