2024-01-19 11:57:53 +00:00
|
|
|
from models.users.user import User
|
|
|
|
from controllers.database.user import UserController
|
|
|
|
|
|
|
|
from flask import redirect, Blueprint, session
|
2023-12-27 21:36:53 +00:00
|
|
|
|
2024-01-05 18:20:56 +00:00
|
|
|
from . import user
|
|
|
|
from . import product
|
2023-12-31 19:03:29 +00:00
|
|
|
|
2024-01-05 18:20:56 +00:00
|
|
|
blueprint = Blueprint('main', __name__)
|
2023-12-31 19:03:29 +00:00
|
|
|
|
2024-01-05 18:20:56 +00:00
|
|
|
blueprint.register_blueprint(user.blueprint)
|
|
|
|
blueprint.register_blueprint(product.blueprint)
|
2023-12-31 19:03:29 +00:00
|
|
|
|
2024-01-19 11:57:53 +00:00
|
|
|
|
|
|
|
### CONTEXTS ###
|
|
|
|
|
|
|
|
# Function that returns a given user class based on the ID in the session
|
|
|
|
@blueprint.context_processor
|
|
|
|
def get_user() -> dict[User|None]:
|
|
|
|
# Get the user based on the user ID
|
|
|
|
user_id = session.get('user_id')
|
|
|
|
user = None
|
|
|
|
|
|
|
|
if user_id != None:
|
|
|
|
db = UserController()
|
|
|
|
user = db.read_id(user_id)
|
|
|
|
|
|
|
|
return dict(user=user)
|
|
|
|
|
|
|
|
|
2024-01-05 18:20:56 +00:00
|
|
|
# Function responsible for displaying the main landing page of the site
|
|
|
|
@blueprint.route('/')
|
|
|
|
def index():
|
|
|
|
return redirect("/products")
|