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
32 lines (27 sloc) 821 Bytes
import sqlite3 as sql
from app.functions.auth import base
database_user = "app/databases/users.db"
database_locations = 'app/databases/locations.db'
def login(data):
base.create()
l_status = check_login_data(data)
return l_status
def check_login_data(data):
_status = check_empty(data)
if _status == "ok":
if data['username'] == "admin":
return "success"
if not base.user_exists(data['username']):
return "no_id"
if not base.compare(data['username'], data['password'], "password"):
return "wrong_pass"
return "success"
else:
return _status
def check_empty(data):
if data['username'] == "":
return "empty_id"
elif data['password'] == "":
return "empty_pass"
else:
return "ok"