218 lines
7.0 KiB
Python
218 lines
7.0 KiB
Python
from flask import Blueprint, session, request, jsonify
|
|
from werkzeug.security import generate_password_hash, check_password_hash
|
|
from flask_cors import cross_origin
|
|
from database.database import Database
|
|
from blueprints.utils import login_required, sanitizer
|
|
from blueprints.email import send_email
|
|
from blueprints.user import get_user_id
|
|
from secrets import token_hex
|
|
|
|
auth_bp = Blueprint("auth", __name__)
|
|
|
|
|
|
@auth_bp.route("/signup", methods=["POST"])
|
|
@cross_origin(supports_credentials=True)
|
|
def signup():
|
|
"""
|
|
Route that allows a user to sign up by providing a `username`, `email` and `password`.
|
|
"""
|
|
# ensure a JSON request is made to contact this route
|
|
if not request.is_json:
|
|
return jsonify({"message": "Expected JSON data"}), 400
|
|
|
|
# Extract data from request via JSON
|
|
data = request.get_json()
|
|
username = data.get('username')
|
|
email = data.get('email')
|
|
password = data.get('password')
|
|
|
|
# Validation - ensure all fields exist, users cannot have an empty field
|
|
if not all([username, email, password]):
|
|
error_fields = get_error_fields([username, email, password]) #!←← find the error_fields, to highlight them in red to the user on the frontend
|
|
return jsonify({
|
|
"account_created": False,
|
|
"error_fields": error_fields,
|
|
"message": "Missing required fields"
|
|
}), 400
|
|
|
|
# Sanitize the inputs - helps to prevent SQL injection
|
|
try:
|
|
username = sanitizer(username, "username")
|
|
email = sanitizer(email, "email")
|
|
password = sanitizer(password, "password")
|
|
except ValueError as e:
|
|
error_fields = get_error_fields([username, email, password])
|
|
return jsonify({
|
|
"account_created": False,
|
|
"error_fields": error_fields,
|
|
"message": "Invalid input received"
|
|
}), 400
|
|
|
|
# Create a connection to the database
|
|
db = Database()
|
|
|
|
try:
|
|
# Check for duplicate email/username, no two users can have the same
|
|
dup_email = db.fetchone(
|
|
"SELECT * FROM users WHERE email = ?",
|
|
(email,)
|
|
)
|
|
|
|
dup_username = db.fetchone(
|
|
"SELECT * FROM users WHERE username = ?",
|
|
(username,)
|
|
)
|
|
|
|
if dup_email is not None:
|
|
return jsonify({
|
|
"account_created": False,
|
|
"error_fields": ["email"],
|
|
"message": f"Email already taken: {email}"
|
|
}), 400
|
|
|
|
if dup_username is not None:
|
|
return jsonify({
|
|
"account_created": False,
|
|
"error_fields": ["username"],
|
|
"message": "Username already taken"
|
|
}), 400
|
|
|
|
# Create new user once input is validated
|
|
db.execute(
|
|
"""INSERT INTO users
|
|
(username, password, email, num_followers, stream_key, is_partnered, bio, current_stream_title, current_selected_category_id)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)""",
|
|
(
|
|
username,
|
|
generate_password_hash(password),
|
|
email,
|
|
0,
|
|
token_hex(32),
|
|
0,
|
|
"This user does not have a Bio.",
|
|
"My Stream",
|
|
None
|
|
)
|
|
)
|
|
|
|
# Create session for new user, to avoid them having unnecessary state info
|
|
session.clear()
|
|
session["username"] = username
|
|
session["user_id"] = get_user_id(username)
|
|
print(f"Logged in as {username}. session: {session.get('username')}. user_id: {session.get('user_id')}", flush=True)
|
|
# send_email(username)
|
|
|
|
return jsonify({
|
|
"account_created": True,
|
|
"message": "Account created successfully"
|
|
}), 201
|
|
|
|
except Exception as e:
|
|
print(f"Error during signup: {e}") # Log the error
|
|
return jsonify({
|
|
"account_created": False,
|
|
"message": "Server error occurred: " + str(e)
|
|
}), 500
|
|
|
|
finally:
|
|
db.close_connection()
|
|
|
|
|
|
|
|
@auth_bp.route("/login", methods=["POST"])
|
|
@cross_origin(supports_credentials=True)
|
|
def login():
|
|
"""
|
|
Login to the web app with existing credentials.
|
|
"""
|
|
|
|
# ensure a JSON request is made to contact this route
|
|
if not request.is_json:
|
|
return jsonify({"message": "Expected JSON data"}), 400
|
|
|
|
# Extract data from request via JSON
|
|
data = request.get_json()
|
|
username = data.get('username')
|
|
password = data.get('password')
|
|
|
|
# Validation - ensure all fields exist, users cannot have an empty field
|
|
if not all([username, password]):
|
|
return jsonify({
|
|
"logged_in": False,
|
|
"message": "Missing required fields"
|
|
}), 400
|
|
|
|
# Sanitize the inputs - helps to prevent SQL injection
|
|
try:
|
|
username = sanitizer(username, "username")
|
|
password = sanitizer(password, "password")
|
|
except ValueError as e:
|
|
return jsonify({
|
|
"account_created": False,
|
|
"error_fields": [username, password],
|
|
"message": "Invalid input received"
|
|
}), 400
|
|
|
|
# Create a connection to the database
|
|
db = Database()
|
|
|
|
try:
|
|
# Check if user exists, only existing users can be logged in
|
|
user = db.fetchone(
|
|
"SELECT * FROM users WHERE username = ?",
|
|
(username,)
|
|
)
|
|
|
|
if not user:
|
|
return jsonify({
|
|
"logged_in": False,
|
|
"error_fields": ["username", "password"],
|
|
"message": "Invalid username or password"
|
|
}), 401
|
|
|
|
# Verify password matches the password associated with that user
|
|
if not check_password_hash(user["password"], password):
|
|
return jsonify({
|
|
"logged_in": False,
|
|
"error_fields": ["username", "password"],
|
|
"message": "Invalid username or password"
|
|
}), 401
|
|
|
|
# Set up session to avoid having unncessary state information
|
|
session.clear()
|
|
session["username"] = username
|
|
session["user_id"] = get_user_id(username)
|
|
print(f"Logged in as {username}. session: {session.get('username')}. user_id: {session.get('user_id')}", flush=True)
|
|
|
|
# User has been logged in, let frontend know that
|
|
return jsonify({
|
|
"logged_in": True,
|
|
"message": "Login successful",
|
|
"username": username
|
|
}), 200
|
|
|
|
except Exception as e:
|
|
print(f"Error during login: {e}") # Log the error
|
|
return jsonify({
|
|
"logged_in": False,
|
|
"message": "Server error occurred"
|
|
}), 500
|
|
|
|
finally:
|
|
db.close_connection()
|
|
|
|
|
|
@auth_bp.route("/logout")
|
|
@login_required
|
|
def logout() -> dict:
|
|
"""
|
|
Log out and clear the users session.
|
|
|
|
Can only be accessed by a logged in user.
|
|
"""
|
|
session.clear()
|
|
return {"logged_in": False}
|
|
|
|
def get_error_fields(values: list):
|
|
fields = ["username", "email", "password"]
|
|
return [fields[i] for i, v in enumerate(values) if not v] |