Skip to content
Permalink
eb31da7601
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
29 lines (25 sloc) 728 Bytes
import sqlite3 as sql
from app.functions.auth import base
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"