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
61 lines (55 sloc) 2 KB
import sqlite3 as sql # Imports sql for use within database
from app.functions.auth import base
database_user = "app/databases/users.db"
def create_profile(data): # Creating new data for a new user
base.create()
_status = check_prof_data(data)
if _status == "success":
make_user(data)
return _status
def check_prof_data(data): # Checking new
print(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):
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):
con = sql.connect(database_user)
cur = con.cursor()
_date = f"{data['day']}-{data['month']}-{data['year']}"
com = f"INSERT INTO UserDatabase values('{data['username']}','{data['password']}','{data['realname']}','{_date}','{data['weight']}');"
print(com)
cur.execute(com)
con.commit()
cur.close()
con.close()