Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat / add helper script for authentication #88

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions helpers/add_authemail.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import streamlit_authenticator as stauth
import ruamel.yaml as yaml
import os

# enter email address
new_email = input("Enter dashboard email >> ")

# if user enter no email address, exit setup!
if len(new_email) == 0:
print("\nNo email added, please try again!\n")
exit()

# load the YAML file
yaml_file = "../credentials.yml"
with open(yaml_file, "r") as file:
data = yaml.safe_load(file)

# append the email address to credentials.yml
data["preauthorized"]["emails"].append(new_email)

# write the updated data back to the file
with open(yaml_file, "w") as file:
yaml.dump(data, file, Dumper=yaml.RoundTripDumper)

print("Email has been successfully added!")
24 changes: 24 additions & 0 deletions helpers/edit_authadmin_password.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import streamlit_authenticator as stauth
import ruamel.yaml as yaml
import os

# enter admin password or use default t3st01
new_password = input("Enter dashboard password >> ")
new_password = new_password or "t3st01"

# extract the hash password from the List
hash_password = stauth.Hasher([new_password]).generate()[0]

# load the YAML file
yaml_file = "../credentials.yml"
with open(yaml_file, "r") as file:
data = yaml.safe_load(file)

# update the admin password on credentials.yml
data["credentials"]["usernames"]["admin"]["password"] = hash_password

# write the updated data back to the file
with open(yaml_file, "w") as file:
yaml.dump(data, file, Dumper=yaml.RoundTripDumper)

print("Admin password has been updated! ")