|
from flask import Flask, render_template, request, jsonify, redirect, url_for, session |
|
from flask_session import Session |
|
from flask.sessions import SecureCookieSessionInterface |
|
from salesforce import get_salesforce_connection |
|
from datetime import timedelta |
|
import os |
|
import smtplib |
|
from email.mime.multipart import MIMEMultipart |
|
from email.mime.text import MIMEText |
|
from menu import menu_blueprint |
|
from cart import cart_blueprint |
|
from order import order_blueprint |
|
from orderhistory import orderhistory_blueprint |
|
|
|
|
|
print("Starting app...") |
|
app = Flask(__name__) |
|
print("Flask app initialized.") |
|
|
|
|
|
sf = get_salesforce_connection() |
|
print("Salesforce connection established.") |
|
|
|
|
|
app.secret_key = os.getenv("SECRET_KEY", "xEr0cwgsiatzrzaeFewYrVA1O") |
|
|
|
app.config["SESSION_TYPE"] = "filesystem" |
|
app.config["SESSION_COOKIE_SECURE"] = True |
|
app.config["SESSION_COOKIE_SAMESITE"] = "None" |
|
|
|
|
|
Session(app) |
|
print("Session interface configured.") |
|
|
|
|
|
app.session_interface = SecureCookieSessionInterface() |
|
print("Session interface configured.") |
|
import random |
|
import string |
|
|
|
def generate_referral_code(length=8): |
|
|
|
characters = string.ascii_letters + string.digits |
|
referral_code = ''.join(random.choice(characters) for _ in range(length)) |
|
return referral_code |
|
|
|
@app.route("/") |
|
def home(): |
|
|
|
user_email = request.args.get("email") |
|
user_name = request.args.get("name") |
|
table_number = request.args.get("table") |
|
|
|
if user_email and user_name: |
|
session["user_email"] = user_email |
|
session["user_name"] = user_name |
|
session["table_number"] = table_number |
|
print(f"User logged in: {user_email} - {user_name} - Table: {table_number}") |
|
|
|
|
|
session.modified = True |
|
return redirect(url_for("menu.menu")) |
|
|
|
return render_template("index.html") |
|
|
|
|
|
|
|
from datetime import datetime |
|
|
|
def generate_coupon_code(length=10): |
|
"""Generates a random alphanumeric coupon code""" |
|
characters = string.ascii_uppercase + string.digits |
|
return ''.join(random.choice(characters) for _ in range(length)) |
|
@app.route("/generate_custom_dish", methods=["POST"]) |
|
def generate_custom_dish(): |
|
try: |
|
data = request.form |
|
dish_name = data.get("name") |
|
description = data.get("description") |
|
item_image_url = "https://huggingface.co/spaces/nagasurendra/BiryaniHubflask30/resolve/main/static/customized.jpg" |
|
item_image_url2 = "https://huggingface.co/spaces/nagasurendra/BiryaniHubflask30/resolve/main/static/customized1.jpg" |
|
|
|
if not dish_name or not description: |
|
return jsonify({"success": False, "error": "Both fields are required"}), 400 |
|
|
|
|
|
price = random.randint(10, 30) |
|
|
|
|
|
veg_keywords = ["paneer", "vegetable", "mushroom", "cheese"] |
|
non_veg_keywords = ["chicken", "mutton", "fish", "egg"] |
|
|
|
category = "Veg" if any(word in description.lower() for word in veg_keywords) else \ |
|
"Non veg" if any(word in description.lower() for word in non_veg_keywords) else \ |
|
"both" |
|
|
|
|
|
existing_dish_query = f"SELECT Id, Name, Price__c, Image1__c, Image2__c, Description__c, Veg_NonVeg__c FROM Custom_Dish__c WHERE Name = '{dish_name}'" |
|
existing_dish_result = sf.query(existing_dish_query) |
|
|
|
if existing_dish_result['totalSize'] > 0: |
|
|
|
existing_dish = existing_dish_result['records'][0] |
|
price = existing_dish['Price__c'] |
|
item_image_url = existing_dish['Image1__c'] |
|
item_image_url2 = existing_dish['Image2__c'] |
|
category = existing_dish['Veg_NonVeg__c'] |
|
else: |
|
|
|
custom_dish = { |
|
'Name': dish_name, |
|
'Price__c': price, |
|
'Image1__c': item_image_url, |
|
'Image2__c': item_image_url2, |
|
'Description__c': description, |
|
'Veg_NonVeg__c': category, |
|
'Section__c': 'Customized dish', |
|
'Total_Ordered__c': 0 |
|
} |
|
|
|
|
|
result = sf.Custom_Dish__c.create(custom_dish) |
|
|
|
if not result.get('success'): |
|
return jsonify({"success": False, "error": "Failed to create custom dish in Salesforce"}), 500 |
|
|
|
|
|
email = session.get('user_email') |
|
|
|
|
|
cart_item_query = f"SELECT Id, Quantity__c, Price__c, Base_Price__c FROM Cart_Item__c WHERE Customer_Email__c = '{email}' AND Name = '{dish_name}'" |
|
cart_item_result = sf.query(cart_item_query) |
|
|
|
if cart_item_result['totalSize'] > 0: |
|
|
|
cart_item = cart_item_result['records'][0] |
|
new_quantity = cart_item['Quantity__c'] + 1 |
|
new_price = price * new_quantity |
|
|
|
|
|
updated_cart_item = { |
|
'Quantity__c': new_quantity, |
|
'Price__c': new_price |
|
} |
|
|
|
cart_item_update = sf.Cart_Item__c.update(cart_item['Id'], updated_cart_item) |
|
|
|
else: |
|
|
|
cart_item = { |
|
'Name': dish_name, |
|
'Price__c': price, |
|
'Base_Price__c': price, |
|
'Image1__c': item_image_url, |
|
'Quantity__c': 1, |
|
'Add_Ons__c': '', |
|
'Add_Ons_Price__c': 0, |
|
'Customer_Email__c': email |
|
} |
|
|
|
|
|
cart_result = sf.Cart_Item__c.create(cart_item) |
|
|
|
|
|
return redirect(url_for("cart")) |
|
|
|
except Exception as e: |
|
return jsonify({"success": False, "error": str(e)}), 500 |
|
|
|
@app.route("/customer_details", methods=["GET"]) |
|
def customer_details(): |
|
email = session.get('user_email') |
|
if not email: |
|
return redirect(url_for("login")) |
|
|
|
try: |
|
|
|
customer_record = sf.query(f""" |
|
SELECT Id, Name, Email__c, Phone_Number__c, Referral__c, Reward_Points__c |
|
FROM Customer_Login__c |
|
WHERE Email__c = '{email}' |
|
LIMIT 1 |
|
""") |
|
|
|
if not customer_record.get("records"): |
|
flash("Customer not found", "danger") |
|
return redirect(url_for("login")) |
|
|
|
customer = customer_record["records"][0] |
|
|
|
|
|
customer_data = { |
|
"name": customer.get("Name", ""), |
|
"email": customer.get("Email__c", ""), |
|
"phone": customer.get("Phone_Number__c", ""), |
|
"referral_code": customer.get("Referral__c", ""), |
|
"reward_points": customer.get("Reward_Points__c", 0) |
|
} |
|
|
|
return render_template("customer_details.html", customer=customer_data) |
|
|
|
except Exception as e: |
|
flash(f"Error fetching customer details: {str(e)}", "danger") |
|
return redirect(url_for("login")) |
|
|
|
@app.route("/update_profile", methods=["POST"]) |
|
def update_profile(): |
|
email = session.get('user_email') |
|
if not email: |
|
return jsonify({'status': 'error', 'message': 'User not logged in'}) |
|
|
|
try: |
|
|
|
result = sf.query(f""" |
|
SELECT Id, Name, Email__c, Phone_Number__c, Referral__c, Reward_Points__c |
|
FROM Customer_Login__c |
|
WHERE Email__c = '{email}' |
|
""") |
|
|
|
if not result['records']: |
|
return jsonify({'status': 'error', 'message': 'User not found'}) |
|
|
|
user = result['records'][0] |
|
user_id = user.get("Id") |
|
|
|
|
|
new_name = request.form.get('customerName') |
|
new_email = request.form.get('email') |
|
new_phone = request.form.get('phone') |
|
new_referral_code = request.form.get('referralCode') |
|
new_reward_points = request.form.get('rewardPoints') |
|
|
|
|
|
update_data = { |
|
'Name': new_name, |
|
'Email__c': new_email, |
|
'Phone_Number__c': new_phone, |
|
'Referral__c': new_referral_code, |
|
'Reward_Points__c': new_reward_points |
|
} |
|
|
|
|
|
sf.Customer_Login__c.update(user_id, update_data) |
|
|
|
return jsonify({ |
|
'status': 'success', |
|
'message': 'Profile updated successfully!', |
|
'data': update_data |
|
}) |
|
|
|
except Exception as e: |
|
return jsonify({'status': 'error', 'message': str(e)}) |
|
|
|
|
|
|
|
|
|
app.permanent_session_lifetime = timedelta(minutes=5) |
|
@app.before_request |
|
def check_session_timeout(): |
|
if "last_activity" in session: |
|
last_activity_time = session["last_activity"] |
|
now = datetime.now().timestamp() |
|
|
|
|
|
if now - last_activity_time > 300: |
|
session.clear() |
|
return redirect(url_for("logout")) |
|
|
|
|
|
session["last_activity"] = datetime.now().timestamp() |
|
|
|
@app.route("/dashboard") |
|
def dashboard(): |
|
return render_template("dashboard.html") |
|
@app.route("/logout") |
|
def logout(): |
|
|
|
table_number = session.get('table_number', '') |
|
|
|
|
|
session.pop('name', None) |
|
session.pop('email', None) |
|
session.pop('rewardPoints', None) |
|
session.pop('coupon', None) |
|
|
|
|
|
return render_template("redirect_page.html", table_number=table_number) |
|
|
|
@app.route("/signup", methods=["GET", "POST"]) |
|
def signup(): |
|
if request.method == "POST": |
|
name = request.form.get("name") |
|
phone = request.form.get("phone") |
|
email = request.form.get("email").strip() |
|
password = request.form.get("password") |
|
referral_code = request.form.get("referral") |
|
generated_referral_code = generate_referral_code() |
|
|
|
try: |
|
ref = 0 |
|
|
|
|
|
email_query = "SELECT Id, Email__c FROM Customer_Login__c" |
|
email_result = sf.query(email_query) |
|
|
|
|
|
existing_emails = {record["Email__c"].lower() for record in email_result["records"]} |
|
if email.lower() in existing_emails: |
|
return render_template("signup.html", error="Email already in use! Please use a different email.") |
|
|
|
|
|
if referral_code: |
|
referral_query = f"SELECT Id, Email__c, Name FROM Customer_Login__c WHERE Referral__c = '{referral_code}'" |
|
referral_result = sf.query(referral_query) |
|
|
|
if not referral_result['records']: |
|
return render_template("signup.html", error="Invalid referral code!") |
|
|
|
|
|
referrer = referral_result['records'][0] |
|
referrer_email = referrer.get('Email__c') |
|
referrer_name = referrer.get('Name') |
|
|
|
|
|
new_coupon_code = generate_coupon_code() |
|
|
|
|
|
existing_coupon_query = f"SELECT Id, Coupon_Code__c FROM Referral_Coupon__c WHERE Referral_Email__c = '{referrer_email}'" |
|
existing_coupon_result = sf.query(existing_coupon_query) |
|
|
|
if existing_coupon_result['records']: |
|
referral_record = existing_coupon_result['records'][0] |
|
referral_id = referral_record['Id'] |
|
existing_coupons = referral_record.get('Coupon_Code__c', '') |
|
|
|
updated_coupons = f"{existing_coupons}\n{new_coupon_code}".strip() |
|
|
|
|
|
sf.Referral_Coupon__c.update(referral_id, { |
|
"Coupon_Code__c": updated_coupons |
|
}) |
|
else: |
|
|
|
sf.Referral_Coupon__c.create({ |
|
"Name": referrer_name, |
|
"Referral_Email__c": referrer_email, |
|
"Coupon_Code__c": new_coupon_code |
|
}) |
|
|
|
|
|
sf.Customer_Login__c.create({ |
|
"Name": name, |
|
"Phone_Number__c": phone, |
|
"Email__c": email, |
|
"Password__c": password, |
|
"Reward_Points__c": ref, |
|
"Referral__c": generated_referral_code |
|
}) |
|
|
|
return redirect(url_for("login")) |
|
|
|
except Exception as e: |
|
return render_template("signup.html", error=f"Error: {str(e)}") |
|
|
|
return render_template("signup.html") |
|
|
|
|
|
|
|
|
|
@app.route("/login", methods=["GET", "POST"]) |
|
def login(): |
|
if request.method == "POST": |
|
email = request.form.get("email") |
|
password = request.form.get("password") |
|
print(f"Login attempt with email: {email}") |
|
|
|
try: |
|
|
|
query = f"SELECT Id, Name, Email__c, Reward_Points__c FROM Customer_Login__c WHERE Email__c='{email}' AND Password__c='{password}'" |
|
result = sf.query(query) |
|
|
|
if result["records"]: |
|
user = result["records"][0] |
|
session['user_id'] = user['Id'] |
|
|
|
|
|
if 'user_email' not in session or session['user_email'] != email: |
|
session['user_email'] = email |
|
session['user_name'] = user.get("Name", "") |
|
print(f"✅ Session email updated: {session['user_email']}") |
|
|
|
reward_points = user.get("Reward_Points__c") or 0 |
|
|
|
|
|
if reward_points >= 500: |
|
new_coupon_code = generate_coupon_code() |
|
coupon_query = sf.query(f"SELECT Id, Coupon_Code__c FROM Referral_Coupon__c WHERE Referral_Email__c = '{email}'") |
|
|
|
if coupon_query["records"]: |
|
coupon_record = coupon_query["records"][0] |
|
referral_coupon_id = coupon_record["Id"] |
|
existing_coupons = coupon_record.get("Coupon_Code__c", "") |
|
|
|
updated_coupons = f"{existing_coupons}\n{new_coupon_code}".strip() |
|
sf.Referral_Coupon__c.update(referral_coupon_id, {"Coupon_Code__c": updated_coupons}) |
|
else: |
|
sf.Referral_Coupon__c.create({ |
|
"Referral_Email__c": email, |
|
"Name": user.get("Name", ""), |
|
"Coupon_Code__c": new_coupon_code |
|
}) |
|
|
|
new_reward_points = reward_points - 500 |
|
sf.Customer_Login__c.update(user['Id'], {"Reward_Points__c": new_reward_points}) |
|
|
|
return redirect(url_for("menu.menu")) |
|
|
|
else: |
|
print("Invalid credentials!") |
|
return render_template("login.html", error="Invalid credentials!") |
|
|
|
except Exception as e: |
|
print(f"Error during login: {str(e)}") |
|
return render_template("login.html", error=f"Error: {str(e)}") |
|
|
|
return render_template("login.html") |
|
|
|
app.register_blueprint(menu_blueprint, url_prefix='/menu') |
|
app.register_blueprint(cart_blueprint, url_prefix='/cart') |
|
|
|
app.register_blueprint(order_blueprint) |
|
app.register_blueprint(orderhistory_blueprint, url_prefix='/orderhistory') |
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
app.run(debug=True, host="0.0.0.0", port=7860) |