Skip to content
Permalink
7487bc39f5
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
85 lines (74 sloc) 2.4 KB
import sqlite3 as sql
from app.functions.auth import base
database_user = "app/databases/users.db"
def create_profile(data):
"""
Function to create new profile
"""
base.create()
_status = check_prof_data(data)
if _status == "success":
make_user(data)
return _status
def check_prof_data(data):
"""
Function to the validity of profile data
"""
_status = check_empty(data)
if _status == "ok":
if base.tid_exists(data['username']):
if not base.user_exists(data['username']):
if not (data['password'] == data['r_password']):
return "pass_no_match"
elif not base.check_date(data['day'],
data['month'],
data['year']):
return "wrong_date"
else:
return "success"
else:
return "user_exists"
else:
return "no_id"
return _status
def check_empty(data):
"""
Function to check if the fields are filled
"""
if data['username'] == "":
return "empty_id"
elif data['realname'] == "":
return "empty_name"
elif data['day'] == "0":
return "empty_bday"
elif data['month'] == "0":
return "empty_bday"
elif data['year'] == "0":
return "empty_bday"
elif data['weight'] == "":
return "empty_weight"
elif data['password'] == "":
return "empty_pass"
elif data['password'] == "":
return "empty_rpass"
else:
return "ok"
def make_user(data):
"""
Function to add new user to the database
"""
con = sql.connect(database_user)
cur = con.cursor()
_date = f"{data['day']}-{data['month']}-{data['year']}"
cur.execute(f"""
INSERT INTO UserDatabase
values('{data['username']}',
'{data['password']}',
'{data['realname']}',
'{_date}',
'{data['color']}',
'{data['weight']}');
""")
con.commit()
cur.close()
con.close()