2020-10-05 20:53:40 +00:00
|
|
|
import pyrebase
|
|
|
|
|
|
|
|
firebaseConfig = {
|
|
|
|
'apiKey': "AIzaSyAdL0W5HscjEDFPK4BDi6Cnc7FLa30GPYY",
|
|
|
|
'authDomain': "vehicleantitheftrecognition.firebaseapp.com",
|
|
|
|
'databaseURL': "https://vehicleantitheftrecognition.firebaseio.com",
|
|
|
|
'projectId': "vehicleantitheftrecognition",
|
|
|
|
'storageBucket': "vehicleantitheftrecognition.appspot.com",
|
|
|
|
'messagingSenderId': "163692530359",
|
|
|
|
'appId': "1:163692530359:web:b6dc7ccfc56a79afb11b32",
|
|
|
|
'measurementId': "G-EPWP2LK89Q"
|
|
|
|
}
|
|
|
|
|
|
|
|
firebase = pyrebase.initialize_app(firebaseConfig)
|
|
|
|
db = firebase.database()
|
|
|
|
auth = firebase.auth()
|
|
|
|
storage = firebase.storage()
|
|
|
|
|
|
|
|
class DBHelper:
|
|
|
|
|
2020-10-05 20:59:54 +00:00
|
|
|
# Create account function which creates a new authentication info.
|
2020-10-05 20:53:40 +00:00
|
|
|
def createaccount(username, password, confirmpassword):
|
|
|
|
email = username + "@hotmail.com"
|
|
|
|
if password == confirmpassword:
|
|
|
|
auth.create_user_with_email_and_password(email,password)
|
|
|
|
print("Account sucessfully created.")
|
|
|
|
else:
|
|
|
|
print("Confirmed password doesn't match to other password.")
|
|
|
|
|
2020-10-05 20:59:54 +00:00
|
|
|
# Login function which verifies the given authentication info.
|
2020-10-05 20:53:40 +00:00
|
|
|
def login(username, password):
|
|
|
|
email = username + "@hotmail.com"
|
|
|
|
try:
|
|
|
|
auth.sign_in_with_email_and_password(email, password)
|
|
|
|
print("Successfully Logged in.")
|
|
|
|
except:
|
|
|
|
print("Invalid username or password.")
|
|
|
|
|
|
|
|
# Uploads the data of specified user uploaded into firebase.
|
|
|
|
def uploadData(userID, firstname, lastname, email, phone, address):
|
|
|
|
data = {"First Name": firstname, "Last Name": lastname, "E-Mail": email, "Phone": phone, "Address": address}
|
|
|
|
db.child("Users").child(userID).set(data)
|
|
|
|
|
|
|
|
# Removes the data of specified user uploaded into firebase.
|
|
|
|
def removeData(userID):
|
|
|
|
db.child("Users").child(userID).remove()
|
|
|
|
|
|
|
|
# Returns the first name or else an empty string.
|
|
|
|
def getfirstname(userID):
|
|
|
|
firstname = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
|
|
|
if user.key() == userID:
|
|
|
|
firstname = user.val()["First Name"]
|
|
|
|
return firstname
|
|
|
|
|
|
|
|
# Returns the last name or else an empty string.
|
|
|
|
def getlastname(userID):
|
|
|
|
lastname = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
|
|
|
if user.key() == userID:
|
|
|
|
lastname = user.val()["Last Name"]
|
|
|
|
return lastname
|
|
|
|
|
|
|
|
# Returns the e-mail or else an empty string.
|
|
|
|
def getemail(userID):
|
|
|
|
email = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
|
|
|
if user.key() == userID:
|
|
|
|
email = user.val()["E-Mail"]
|
|
|
|
return email
|
|
|
|
|
|
|
|
# Returns the phone or else an empty string.
|
|
|
|
def getphone(userID):
|
|
|
|
phone = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
|
|
|
if user.key() == userID:
|
|
|
|
phone = user.val()["Phone"]
|
|
|
|
return phone
|
|
|
|
|
|
|
|
# Returns the address or else an empty string.
|
|
|
|
def getaddress(userID):
|
|
|
|
address = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
|
|
|
if user.key() == userID:
|
|
|
|
address = user.val()["Address"]
|
|
|
|
return address
|
|
|
|
|
2020-10-05 20:59:54 +00:00
|
|
|
# Uploads the photo, input should be something like "Photos_of_Users/example.png"
|
|
|
|
# or something like "Photos_of_Thieves/example.png" for the thieves.
|
2020-10-05 20:53:40 +00:00
|
|
|
def uploadphoto(userphoto):
|
|
|
|
userphoto_str = str(userphoto)
|
|
|
|
storage.child(userphoto_str).put(userphoto)
|
|
|
|
|
|
|
|
|
|
|
|
|