File size: 13,931 Bytes
a7abf85 d3245ed 36d2eb6 b12f5e4 9bf1d7d b12f5e4 5324aa9 8369d3e 386c140 1b60c3d a7abf85 01b8424 a7abf85 01b8424 a7abf85 01b8424 a7abf85 c10dd2e 098997e d831144 a69087c d3245ed 1b60c3d 13d210d 98089df 145b38f 3ad292c a7abf85 c096c2c 4ad81b7 c096c2c 4ad81b7 c096c2c 1fd9c90 c096c2c 7136825 4ad81b7 c096c2c 444fe60 5e4ad36 ffe3bd5 425a7d1 509b124 425a7d1 b531c61 f358ba9 b531c61 53027ce b531c61 daf672f ca21363 127463e daf672f f358ba9 daf672f b531c61 daf672f 425a7d1 f358ba9 b531c61 f358ba9 d7eda21 f358ba9 d7eda21 b531c61 f358ba9 d7eda21 f358ba9 d7eda21 f358ba9 b531c61 425a7d1 6bbfc57 ab37374 2c776f8 ab37374 5c3223b 6bbfc57 5c3223b 6bbfc57 5c3223b 6bbfc57 5c3223b 6bbfc57 5c3223b 6bbfc57 1f420d9 5c3223b d316910 1f420d9 dc5e8d2 1f420d9 9de76b8 1f420d9 9de76b8 1f420d9 dc5e8d2 702fa63 5c3223b 6bbfc57 1f420d9 820dc7a 80bae4f 9bf1d7d f62a0a9 80f989c 0270ecb 80f989c 9de76b8 b97f93a 494fc19 a60e6aa 494fc19 9fec724 494fc19 b95cfbd 9fec724 b95cfbd 9fec724 494fc19 9fec724 494fc19 9fec724 494fc19 9fec724 494fc19 9fec724 494fc19 9fec724 a60e6aa 84ab1db a60e6aa 494fc19 a60e6aa 494fc19 098997e 494fc19 5324aa9 9fefa73 145b38f 9fee670 9fefa73 a7abf85 fcdec6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
from flask import Flask, render_template, request, jsonify, redirect, url_for, session
from flask_session import Session # Import the Session class
from flask.sessions import SecureCookieSessionInterface # Import the class
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 # Make sure this import is correct
from cart import cart_blueprint # Same for other blueprints
from order import order_blueprint # Same for user blueprint
from user_details import user_details_blueprint
# Initialize Flask app and Salesforce connection
print("Starting app...")
app = Flask(__name__)
print("Flask app initialized.")
# Add debug logs in Salesforce connection setup
sf = get_salesforce_connection()
print("Salesforce connection established.")
# Set the secret key to handle sessions securely
app.secret_key = os.getenv("SECRET_KEY", "xEr0cwgsiatzrzaeFewYrVA1O") # Replace with a secure key
app.config["SESSION_TYPE"] = "filesystem" # Storing sessions in filesystem
app.config["SESSION_COOKIE_SECURE"] = True # Enabling secure cookies (ensure your app is served over HTTPS)
app.config["SESSION_COOKIE_SAMESITE"] = "None" # Cross-site cookies allowed
# Initialize the session
Session(app) # Correctly initialize the Session object
print("Session interface configured.")
app.register_blueprint(user_details_blueprint, url_prefix='/user')
# Ensure secure session handling for environments like Hugging Face
app.session_interface = SecureCookieSessionInterface()
print("Session interface configured.")
import random
import string
app.register_blueprint(cart_blueprint, url_prefix='/cart')
@app.route("/")
def home():
# Fetch user details from URL parameters
user_email = request.args.get("email")
user_name = request.args.get("name")
table_number = request.args.get("table") # Capture table number
if user_email and user_name:
session["user_email"] = user_email
session["user_name"] = user_name
session["table_number"] = table_number # Store table number in session
print(f"User logged in: {user_email} - {user_name} - Table: {table_number}")
# Ensure session is saved before redirecting
session.modified = True
return redirect(url_for("menu.menu")) # Redirect to menu directly
return render_template("index.html")
from datetime import datetime
@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
# Generate a random price for the custom dish
price = random.randint(10, 30) # Example logic for price setting
# Determine Veg/Non-Veg
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"
# Query to check if the dish already exists in Salesforce (Custom_Dish__c object)
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:
# If the dish exists, use the existing details
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:
# If the dish does not exist, create a new custom dish
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
}
# Insert the custom dish into Salesforce (Custom_Dish__c object)
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
# After ensuring the dish exists, check if it's already in the Cart_Item__c
email = session.get('user_email') # Assuming you have the user's email in session
# Query to check if the custom dish already exists in the cart for the logged-in user
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:
# If the custom dish is already in the cart, update the quantity and price
cart_item = cart_item_result['records'][0]
new_quantity = cart_item['Quantity__c'] + 1 # Increase quantity by 1
new_price = price * new_quantity # Update price based on new quantity
# Update the cart item in Salesforce
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:
# If the custom dish is not in the cart, create a new cart item
cart_item = {
'Name': dish_name,
'Price__c': price,
'Base_Price__c': price,
'Image1__c': item_image_url,
'Quantity__c': 1, # Default quantity is 1
'Add_Ons__c': '', # Set Add_ons__c to empty
'Add_Ons_Price__c': 0, # Set Add_ons_Price__c to 0
'Customer_Email__c': email # Associate the custom dish with the logged-in user
}
# Insert the custom dish as a Cart_Item__c record in Salesforce
cart_result = sf.Cart_Item__c.create(cart_item)
# Redirect to the cart page after successfully adding or updating the cart item
return redirect(url_for("cart"))
except Exception as e:
return jsonify({"success": False, "error": str(e)}), 500
from datetime import datetime
import pytz # Library to handle timezone conversions
@app.route("/order-history", methods=["GET"])
def order_history():
email = session.get('user_email') # Get logged-in user's email
if not email:
return redirect(url_for("login"))
try:
# Fetch past orders for the user
result = sf.query(f"""
SELECT Id, Customer_Name__c, Customer_Email__c, Total_Amount__c,
Order_Details__c, Order_Status__c, Discount__c, Total_Bill__c, CreatedDate
FROM Order__c
WHERE Customer_Email__c = '{email}'
ORDER BY CreatedDate DESC
""")
print(f"Salesforce query result: {result}") # Debugging line
orders = result.get("records", []) # Fetch all orders
if not orders:
print("No orders found for this email.") # Debugging line
# Format the order details for better readability
for order in orders:
order_details = order.get("Order_Details__c", "")
items = order_details.split("\n") # Assuming each item is separated by a new line
formatted_items = []
# Loop through the items and format them as "item name * quantity"
for item in items:
item_details = item.split(" | ")
if len(item_details) > 1:
name = item_details[0].strip()
quantity = item_details[1].strip()
formatted_items.append(f"{name} * {quantity}")
# Join the formatted items into a single string
order['formatted_items'] = ", ".join(formatted_items)
# Get the order date and time from CreatedDate
created_date = order.get("CreatedDate", "")
if created_date:
# Convert CreatedDate to datetime object in UTC
utc_datetime = datetime.strptime(created_date, '%Y-%m-%dT%H:%M:%S.000+0000')
utc_datetime = utc_datetime.replace(tzinfo=pytz.UTC)
# Convert UTC datetime to the desired timezone (e.g., IST)
local_timezone = pytz.timezone('Asia/Kolkata') # Replace with your timezone
local_datetime = utc_datetime.astimezone(local_timezone)
# Format the date and time in the desired format
order['formatted_date'] = local_datetime.strftime('%B %d, %I:%M %p')
order_status = order.get("Order_Status__c", "N/A") # Default to "N/A" if no status
order['order_status'] = order_status
return render_template("order_history.html", orders=orders)
except Exception as e:
print(f"Error fetching order history: {str(e)}")
return render_template("order_history.html", orders=[], error=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()
# Check if inactivity time has exceeded 5 minutes (300 seconds)
if now - last_activity_time > 300:
session.clear() # Clear session
return redirect(url_for("logout"))
# Update last activity timestamp on every request
session["last_activity"] = datetime.now().timestamp()
@app.route("/dashboard")
def dashboard():
return render_template("dashboard.html")
@app.route("/logout")
def logout():
# Retrieve table number before clearing session
table_number = session.get('table_number', '')
# Clear session variables
session.pop('name', None)
session.pop('email', None)
session.pop('rewardPoints', None)
session.pop('coupon', None)
# Pass table number to redirect page
return render_template("redirect_page.html", table_number=table_number)
@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}") # Debug log
try:
# Fetch user details from Salesforce
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']
# ✅ Always store or update session email
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
# Coupon generation logic (if reward points >= 500)
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")
# Register Blueprints for each functionality
app.register_blueprint(menu_blueprint)
# Register the cart blueprint with URL prefix
app.register_blueprint(order_blueprint)
if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0", port=7860) |