Skip to content
Permalink
491cf944a3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
76 lines (64 sloc) 1.95 KB
import sqlite3 as sql
from app.functions.auth import base
database_user = "app/databases/users.db"
def change_password(data):
"""
Takes in data for password change and checks if
data matches the one in the database, then
returns 'success' or an error message
"""
base.create()
_status = check_pass_data(data)
if _status == "success":
update_password(data)
return _status
def check_pass_data(data):
"""
Compares dates of birth and if the new passwords match,
then returns 'success' or an error message
"""
_status = check_empty(data)
if _status == "ok":
if base.tid_exists(data['username']):
_date = f"{data['day']}-{data['month']}-{data['year']}"
if not base.compare(data['username'], _date, "dob"):
return "wrong_date"
if not (data['password'] == data['r_password']):
return "pass_no_match"
return "success"
return "no_id"
else:
return _status
def check_empty(data):
"""
Checks if all the fields in the dictionary are filled,
if not tells which one is missing
"""
if data['username'] == "":
return "empty_id"
elif data['day'] == "0":
return "empty_bday"
elif data['month'] == "0":
return "empty_bday"
elif data['year'] == "0":
return "empty_bday"
elif data['password'] == "":
return "empty_pass"
elif data['password'] == "":
return "empty_rpass"
else:
return "ok"
def update_password(data):
"""
Updates the password for the user
"""
con = sql.connect(database_user)
cur = con.cursor()
cur.execute(f"""
UPDATE UserDatabase
SET password='{data['password']}'
WHERE username='{data['username']}';
""")
con.commit()
cur.close()
con.close()