1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/scripts/maintain/reset_admin_password.py

56 lines
1.7 KiB
Python
Raw Normal View History

2022-05-09 00:12:04 +00:00
from flask_security import admin_change_password
2022-05-16 16:12:53 +00:00
from sqlalchemy import select
2022-05-09 00:12:04 +00:00
from ... import app, db
2022-05-29 17:03:54 +00:00
from ...model_independent_funs import randomPassword
2022-05-09 00:12:04 +00:00
from ...models import Admin, User
2022-07-03 15:11:33 +00:00
from ..terminal_utils import box, validating_input
2022-05-09 00:12:04 +00:00
def main():
2022-06-17 20:24:33 +00:00
print("This script will generate a new random password for a chosen admin.")
2022-05-09 00:12:04 +00:00
print()
with app.app_context():
with db.session.begin():
2022-05-16 16:12:53 +00:00
admins = db.session.execute(select(Admin).join(User).where(User.active == True)).scalars().all()
2022-05-09 00:12:04 +00:00
activate_user = False
2022-05-16 16:12:53 +00:00
if len(admins) == 0:
2022-06-17 20:24:33 +00:00
print("There is no admin with an active user. The user of the chosen admin will be activated")
2022-05-16 16:12:53 +00:00
admins = db.session.execute(select(Admin)).scalars().all()
2022-05-09 00:12:04 +00:00
activate_user = True
num_admins = len(admins)
prompt = "Admins:\n"
for ind, admin in enumerate(admins):
user = admin.user
prompt += f"[{ind}] {user.first_name} {user.last_name}: {user.email}\n"
prompt += "Enter number"
admin_index = validating_input(
prompt,
options=[str(ind) for ind in range(num_admins)],
format_function=lambda ans: int(ans),
)
2022-06-17 20:24:33 +00:00
chosen_admin_user = admins[admin_index].user
2022-05-09 00:12:04 +00:00
new_password = randomPassword()
admin_change_password(
2022-06-17 20:24:33 +00:00
chosen_admin_user, new_password, notify=False
2022-05-09 00:12:04 +00:00
) # Password is automatically hashed with this function
2022-05-16 16:12:53 +00:00
if activate_user:
2022-06-17 20:24:33 +00:00
chosen_admin_user.active = True
2022-05-16 16:12:53 +00:00
2022-05-09 00:12:04 +00:00
box(new_password, "New password")
print("Done!")
if __name__ == "__main__":
main()