Skip to content
Permalink
51ff405960
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
53 lines (46 sloc) 1.8 KB
import sqlite3 as sql
from app.functions.auth import base # Imports base for later use
database_user = "app/databases/users.db"
def change_password(data): # Changing password
base.create()
_status = check_pass_data(data)
if _status == "success":
new_password(data)
return _status
def check_pass_data(data): # Checking password data
_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 the entry to see if empty
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 new_password(data): # Updates database with new password
con = sql.connect(database_user)
cur = con.cursor()
com = f"UPDATE UserDatabase SET password='{data['password']}' WHERE username='{data['username']}';"
print(com)
cur.execute(com)
con.commit()
cur.close()
con.close()