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",
|
2020-10-12 16:10:01 +00:00
|
|
|
'measurementId': "G-EPWP2LK89Q",
|
|
|
|
'serviceAccount': 'vehicleantitheftrecognition-firebase-adminsdk-krrgw-05da515de5.json'
|
2020-10-14 14:10:37 +00:00
|
|
|
}
|
2020-10-05 20:53:40 +00:00
|
|
|
|
|
|
|
firebase = pyrebase.initialize_app(firebaseConfig)
|
|
|
|
db = firebase.database()
|
|
|
|
auth = firebase.auth()
|
|
|
|
storage = firebase.storage()
|
|
|
|
|
2020-10-12 16:10:01 +00:00
|
|
|
|
2020-10-14 14:10:37 +00:00
|
|
|
# Create account function which creates a new authentication info.
|
2020-10-14 14:17:42 +00:00
|
|
|
def create_account(username, password, confirm_password):
|
2020-10-14 14:10:37 +00:00
|
|
|
email = username + "@hotmail.com"
|
2020-10-14 14:17:42 +00:00
|
|
|
if password == confirm_password:
|
2020-10-14 14:10:37 +00:00
|
|
|
auth.create_user_with_email_and_password(email, password)
|
2020-10-14 14:17:42 +00:00
|
|
|
print("Account successfully created.")
|
2020-10-14 14:10:37 +00:00
|
|
|
else:
|
|
|
|
print("Confirmed password doesn't match to other password.")
|
|
|
|
|
|
|
|
|
|
|
|
# Login function which verifies the given authentication info.
|
|
|
|
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.
|
2020-10-14 14:17:42 +00:00
|
|
|
def upload_data(user_id, firstname, lastname, email, phone, address):
|
2020-10-14 14:10:37 +00:00
|
|
|
data = {"First Name": firstname, "Last Name": lastname, "E-Mail": email, "Phone": phone, "Address": address}
|
2020-10-14 14:17:42 +00:00
|
|
|
db.child("Users").child(user_id).set(data)
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Removes the data of specified user uploaded into firebase.
|
2020-10-14 14:17:42 +00:00
|
|
|
def remove_data(user_id):
|
|
|
|
db.child("Users").child(user_id).remove()
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Returns the first name or else an empty string.
|
2020-10-14 14:17:42 +00:00
|
|
|
def get_firstname(user_id):
|
2020-10-14 14:10:37 +00:00
|
|
|
firstname = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
2020-10-14 14:17:42 +00:00
|
|
|
if user.key() == user_id:
|
2020-10-14 14:10:37 +00:00
|
|
|
firstname = user.val()["First Name"]
|
|
|
|
return firstname
|
|
|
|
|
|
|
|
|
|
|
|
# Returns the last name or else an empty string.
|
2020-10-14 14:17:42 +00:00
|
|
|
def get_lastname(user_id):
|
2020-10-14 14:10:37 +00:00
|
|
|
lastname = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
2020-10-14 14:17:42 +00:00
|
|
|
if user.key() == user_id:
|
2020-10-14 14:10:37 +00:00
|
|
|
lastname = user.val()["Last Name"]
|
|
|
|
return lastname
|
|
|
|
|
|
|
|
|
|
|
|
# Returns the e-mail or else an empty string.
|
2020-10-14 14:17:42 +00:00
|
|
|
def get_email(user_id):
|
2020-10-14 14:10:37 +00:00
|
|
|
email = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
2020-10-14 14:17:42 +00:00
|
|
|
if user.key() == user_id:
|
2020-10-14 14:10:37 +00:00
|
|
|
email = user.val()["E-Mail"]
|
|
|
|
return email
|
|
|
|
|
|
|
|
|
|
|
|
# Returns the phone or else an empty string.
|
2020-10-14 14:17:42 +00:00
|
|
|
def get_phone(user_id):
|
2020-10-14 14:10:37 +00:00
|
|
|
phone = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
2020-10-14 14:17:42 +00:00
|
|
|
if user.key() == user_id:
|
2020-10-14 14:10:37 +00:00
|
|
|
phone = user.val()["Phone"]
|
|
|
|
return phone
|
|
|
|
|
|
|
|
|
|
|
|
# Returns the address or else an empty string.
|
2020-10-14 14:17:42 +00:00
|
|
|
def get_address(user_id):
|
2020-10-14 14:10:37 +00:00
|
|
|
address = ""
|
|
|
|
users = db.child("Users").get()
|
|
|
|
for user in users.each():
|
2020-10-14 14:17:42 +00:00
|
|
|
if user.key() == user_id:
|
2020-10-14 14:10:37 +00:00
|
|
|
address = user.val()["Address"]
|
|
|
|
return address
|
|
|
|
|
|
|
|
|
|
|
|
# Uploads the photo of user, input should be something like "example.png"
|
2020-10-14 14:17:42 +00:00
|
|
|
def upload_user_photo(user_photo):
|
|
|
|
storage.child("Photos_of_Users/" + user_photo).put("Photos_of_Users/" + user_photo)
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Uploads the photo of thief, input should be something like "example.png"
|
2020-10-14 14:17:42 +00:00
|
|
|
def upload_thief_photo(user_photo):
|
|
|
|
storage.child("Photos_of_Thieves/" + user_photo).put("Photos_of_Thieves/" + user_photo)
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
2020-11-05 17:09:20 +00:00
|
|
|
# Downloads the specified user photo.
|
|
|
|
def download_user_photo(user_photo):
|
|
|
|
storage.child("Photos_of_Users/" + str(user_photo)).download("Users_from_Database/" + str(user_photo))
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
2020-11-05 17:09:20 +00:00
|
|
|
# Downloads the specified thief photo.
|
|
|
|
def download_thief_photo(user_photo):
|
|
|
|
storage.child("Photos_of_Thieves/" + str(user_photo)).download("Thieves_from_Database/" + str(user_photo))
|
2020-10-14 14:10:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Deletes photo of the specified user.
|
2020-10-14 14:17:42 +00:00
|
|
|
def delete_user_photo(user_photo):
|
|
|
|
storage.delete('Photos_of_Users/' + user_photo)
|
2020-11-05 17:09:20 +00:00
|
|
|
|
|
|
|
# Deletes photo of the specified thief.
|
|
|
|
def delete_thief_photo(user_photo):
|
|
|
|
storage.delete('Photos_of_Thieves/' + user_photo)
|