Skip to content
Permalink
65da860d28
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
54 lines (47 sloc) 1.49 KB
import sqlite3 as sql
from app.functions.auth import base
database_user = "app/databases/users.db"
database_locations = 'app/databases/locations.db'
def change_password(data):
base.create()
_status = check_pass_data(data)
if _status == "success":
new_password(data)
return _status
def check_pass_data(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):
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):
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()