Spaces:
Sleeping
Sleeping
File size: 16,924 Bytes
ba4dd53 084a829 ba4dd53 084a829 025f225 084a829 025f225 084a829 025f225 084a829 025f225 084a829 025f225 084a829 0557a16 084a829 0557a16 ffd44f9 0557a16 ffd44f9 a80b70a ffd44f9 c0cf200 025f225 251b182 025f225 251b182 c0cf200 0557a16 1ee5aa0 def41d3 1ee5aa0 beb5144 783fd70 1ee5aa0 251b182 1b8720d def41d3 251b182 1b8720d a80b70a 1b8720d 251b182 def41d3 251b182 def41d3 1b8720d 1ee5aa0 45bc2f8 0557a16 025f225 0557a16 1b8720d 0557a16 025f225 81a86cf 0557a16 c0cf200 025f225 1b8720d 0557a16 f55abc6 0557a16 025f225 1b8720d 0557a16 7980609 45bc2f8 0557a16 | 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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | import gradio as gr
import pandas as pd
from bcrypt import hashpw, gensalt, checkpw
# Path to the Excel file for user storage
USER_FILE = "users.xlsx"
# Load users from Excel
def load_users():
try:
df = pd.read_excel(USER_FILE)
return {row['Username']: row['Password'] for _, row in df.iterrows()}
except FileNotFoundError:
df = pd.DataFrame(columns=["Username", "Password"])
df.to_excel(USER_FILE, index=False)
return {}
# Save users to Excel
def save_users(users):
df = pd.DataFrame(list(users.items()), columns=["Username", "Password"])
df.to_excel(USER_FILE, index=False)
# Signup user
def signup_user(username, password):
users = load_users()
if username in users:
return "Username already exists. Please choose a different username."
hashed_password = hashpw(password.encode(), gensalt()).decode()
users[username] = hashed_password
save_users(users)
return "Signup successful! Please log in."
# Validate login
def validate_login(username, password):
users = load_users()
if username in users and checkpw(password.encode(), users[username].encode()):
return True, "Login successful! Redirecting to the menu page..."
return False, "Invalid username or password. Please try again."
# Session management
active_sessions = {}
def login_user(username, password):
success, message = validate_login(username, password)
if success:
active_sessions[username] = True
return message
return message
def is_logged_in(username):
return active_sessions.get(username, False)
def logout_user(username):
if username in active_sessions:
del active_sessions[username]
return f"{username} has been logged out successfully."
return "No active session found for this user."
# Menu functionality: Your original code will remain here as-is
# Keeping all your existing menu, cart, modal logic intact
# Function to load the menu data
def load_menu():
menu_file = "menu.xlsx" # Ensure this file exists in the same directory
try:
return pd.read_excel(menu_file)
except Exception as e:
raise ValueError(f"Error loading menu file: {e}")
# Function to filter menu items based on preference
def filter_menu(preference):
menu_data = load_menu()
if preference == "Halal/Non-Veg":
filtered_data = menu_data[menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)]
elif preference == "Vegetarian":
filtered_data = menu_data[~menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)]
elif preference == "Guilt-Free":
filtered_data = menu_data[menu_data["Description"].str.contains(r"Fat: ([0-9]|10)g", case=False, na=False)]
else:
filtered_data = menu_data
html_content = ""
for _, item in filtered_data.iterrows():
html_content += f"""
<div style="display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin-bottom: 10px; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);">
<div style="flex: 1; margin-right: 15px;">
<h3 style="margin: 0; font-size: 18px;">{item['Dish Name']}</h3>
<p style="margin: 5px 0; font-size: 16px; color: #888;">${item['Price ($)']}</p>
<p style="margin: 5px 0; font-size: 14px; color: #555;">{item['Description']}</p>
</div>
<div style="flex-shrink: 0; text-align: center;">
<img src="{item['Image URL']}" alt="{item['Dish Name']}" style="width: 100px; height: 100px; border-radius: 8px; object-fit: cover; margin-bottom: 10px;">
<button style="background-color: #28a745; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="openModal('{item['Dish Name']}', '{item['Image URL']}', '{item['Description']}', '{item['Price ($)']}')">Add</button>
</div>
</div>
"""
return html_content
# JavaScript for modal and cart behavior
modal_and_cart_js = """
<style>
.cart-container {
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
background-color: #f9f9f9;
display: flex;
flex-direction: column;
gap: 10px;
}
.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #ddd;
padding: 10px 0;
}
.cart-item:last-child {
border-bottom: none;
}
.cart-item span {
font-size: 16px;
margin-right: 10px;
}
.cart-item .quantity-container {
display: flex;
align-items: center;
gap: 5px;
}
.cart-total {
font-size: 18px;
font-weight: bold;
text-align: right;
margin-top: 10px;
}
</style>
<script>
let cart = [];
const extrasPrices = {
"Thums up": 2,
"Sprite": 2,
"Extra Raitha": 1,
"Extra Salan": 2,
"Extra Onion & Lemon": 2,
"Chilli Chicken": 14,
"Veg Manchurian": 12
};
let finalized = false;
function openModal(name, image, description, price) {
if (finalized) {
alert("You cannot add more items after finalizing your order.");
return;
}
const modal = document.getElementById('modal');
modal.style.display = 'block';
modal.style.position = 'fixed';
if (window.innerWidth <= 768) {
modal.style.width = '90%';
} else {
modal.style.width = '30%';
}
modal.style.top = '15%';
modal.style.left = '50%';
modal.style.transform = 'translate(-50%, -50%)';
document.getElementById('modal-image').src = image;
document.getElementById('modal-name').innerText = name;
document.getElementById('modal-description').innerText = description;
document.getElementById('modal-price').innerText = price;
const extrasInputs = document.querySelectorAll('input[name="biryani-extra"]');
extrasInputs.forEach(input => input.checked = false);
document.getElementById('quantity').value = 1;
document.getElementById('special-instructions').value = '';
}
function closeModal() {
document.getElementById('modal').style.display = 'none';
}
function addToCart() {
if (finalized) {
alert("You cannot add more items after finalizing your order.");
return;
}
const name = document.getElementById('modal-name').innerText;
const price = parseFloat(document.getElementById('modal-price').innerText.replace('$', ''));
const quantity = parseInt(document.getElementById('quantity').value) || 1;
const instructions = document.getElementById('special-instructions').value;
const extras = Array.from(document.querySelectorAll('input[name="biryani-extra"]:checked')).map(extra => extra.value);
const extrasCost = extras.reduce((sum, extra) => sum + (extrasPrices[extra] || 0), 0);
const itemTotal = (price + extrasCost) * quantity;
const cartItem = { name, price, quantity, instructions, extras, itemTotal, extrasQuantities: extras.map(() => 1) };
cart.push(cartItem);
alert(`${name} added to cart!`);
updateCartDisplay();
closeModal();
}
function updateCartDisplay() {
let totalBill = 0;
let cartHTML = "<div class='cart-container'>";
cart.forEach((item, index) => {
totalBill += item.itemTotal;
const extras = item.extras.map((extra, i) => {
const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
const extraTotal = extrasPrices[extra] * extraQuantity;
totalBill += extraTotal;
return `<div class='cart-item'>
<span>${extra}</span>
<span>Price: $${extrasPrices[extra].toFixed(2)}</span>
<div class='quantity-container'>
<label for='extra-quantity-${index}-${i}'>Quantity:</label>
<input type='number' id='extra-quantity-${index}-${i}' value='${extraQuantity}' min='1' style='width: 50px;' onchange='updateExtraQuantity(${index}, ${i}, this.value)'>
</div>
<span>Total: $${extraTotal.toFixed(2)}</span>
<input type='checkbox' id='extra-remove-${index}-${i}' onclick='removeExtra(${index}, ${i})'> Remove
</div>`;
}).join('');
cartHTML += `<div class='cart-item'>
<span>${item.name}</span>
<span>Item Price: $${item.price.toFixed(2)}</span>
<div class='quantity-container'>
<label for='item-quantity-${index}'>Quantity:</label>
<input type='number' id='item-quantity-${index}' value='${item.quantity}' min='1' style='width: 50px;' onchange='updateItemQuantity(${index}, this.value)'>
</div>
<span>Total: $${(item.price * item.quantity).toFixed(2)}</span>
<input type='checkbox' id='item-remove-${index}' onclick='removeItem(${index})'> Remove
</div>
${extras}
<div class='cart-item'><strong>Instructions:</strong> ${item.instructions || "None"}</div>`;
});
cartHTML += `</div><p class='cart-total'>Total Bill: $${totalBill.toFixed(2)}</p>`;
cartHTML += `<button style='margin-top: 10px; background-color: #007bff; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%; cursor: pointer;' onclick='submitCart()'>Submit</button>`;
document.getElementById('floating-cart').innerHTML = cartHTML;
}
function updateItemQuantity(index, newQuantity) {
const quantity = parseInt(newQuantity) || 1;
cart[index].quantity = quantity;
cart[index].itemTotal = cart[index].price * quantity;
updateCartDisplay();
}
function updateExtraQuantity(cartIndex, extraIndex, newQuantity) {
const quantity = parseInt(newQuantity) || 1;
cart[cartIndex].extrasQuantities = cart[cartIndex].extrasQuantities || [];
cart[cartIndex].extrasQuantities[extraIndex] = quantity;
updateCartDisplay();
}
function removeExtra(cartIndex, extraIndex) {
cart[cartIndex].extras.splice(extraIndex, 1);
if (cart[cartIndex].extrasQuantities) {
cart[cartIndex].extrasQuantities.splice(extraIndex, 1);
}
updateCartDisplay();
}
function removeItem(index) {
cart.splice(index, 1);
updateCartDisplay();
}
function submitCart() {
let finalOrderHTML = "<h3>Final Order:</h3><ul>";
let totalBill = 0;
cart.forEach(item => {
totalBill += item.itemTotal;
const extras = item.extras.map((extra, i) => {
const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
const extraTotal = extrasPrices[extra] * extraQuantity;
totalBill += extraTotal;
return `${extra} (x${extraQuantity}) - $${extraTotal.toFixed(2)}`;
}).join(', ');
finalOrderHTML += `<li>
${item.name} (x${item.quantity}) - $${item.itemTotal.toFixed(2)}
<br>Extras: ${extras}
<br>Instructions: ${item.instructions || "None"}
</li>`;
});
finalOrderHTML += `</ul><p><strong>Total Bill: $${totalBill.toFixed(2)}</strong></p>`;
document.getElementById('final-order').innerHTML = finalOrderHTML;
alert("Your final order has been submitted!");
}
</script>
"""
# Gradio app
def app():
with gr.Blocks() as demo:
gr.Markdown("## Secure Food Ordering System")
# Login and Signup Tabs
with gr.Tabs():
with gr.Tab("Login"):
username = gr.Textbox(label="Username")
password = gr.Textbox(label="Password", type="password")
login_btn = gr.Button("Login")
login_message = gr.Label()
login_btn.click(login_user, [username, password], [login_message])
with gr.Tab("Signup"):
signup_username = gr.Textbox(label="Username")
signup_password = gr.Textbox(label="Password", type="password")
signup_btn = gr.Button("Signup")
signup_message = gr.Label()
signup_btn.click(signup_user, [signup_username, signup_password], [signup_message])
# Menu Page Tab
with gr.Tab("Menu Page"):
gr.Markdown("### Menu Page")
# Preserve your menu-related code exactly as it was
# Add your exact original menu, cart, and modal code here
selected_preference = gr.Radio(
choices=["All", "Vegetarian", "Halal/Non-Veg", "Guilt-Free"],
value="All",
label="Choose a Preference",
)
# Output area for menu items
menu_output = gr.HTML(value=filter_menu("All"))
# Floating cart display
cart_output = gr.HTML(value="Your cart is empty.", elem_id="floating-cart")
# Final order display
final_order_output = gr.HTML(value="", elem_id="final-order")
# Modal window
modal_window = gr.HTML("""
<div id="modal" style="display: none; position: fixed; background: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 20px; z-index: 1000;">
<div style="text-align: right;">
<button onclick="closeModal()" style="background: none; border: none; font-size: 18px; cursor: pointer;">×</button>
</div>
<img id="modal-image" style="width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px;" />
<h2 id="modal-name"></h2>
<p id="modal-description"></p>
<p id="modal-price"></p>
<!-- Biryani Extras -->
<label for="biryani-extras">Biryani Extras :</label>
<div id="biryani-extras-options" style="display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0;">
<label><input type="checkbox" name="biryani-extra" value="Thums up" /> Thums up + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Sprite" /> Sprite + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Raitha" /> Extra Raitha + $1.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Salan" /> Extra Salan + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Extra Onion & Lemon" /> Extra Onion & Lemon + $2.00</label>
<label><input type="checkbox" name="biryani-extra" value="Chilli Chicken" /> Chilli Chicken + $14.00</label>
<label><input type="checkbox" name="biryani-extra" value="Veg Manchurian" /> Veg Manchurian + $12.00</label>
</div>
<!-- Quantity and Special Instructions -->
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" value="1" min="1" style="width: 50px;" />
<br><br>
<textarea id="special-instructions" placeholder="Add special instructions here..." style="width: 100%; height: 60px;"></textarea>
<br><br>
<!-- Add to Cart Button -->
<button style="background-color: #28a745; color: white; border: none; padding: 10px 20px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="addToCart()">Add to Cart</button>
</div>
""")
# Update menu dynamically based on preference
selected_preference.change(filter_menu, inputs=[selected_preference], outputs=[menu_output])
# Layout
gr.Row([selected_preference])
gr.Row(menu_output)
gr.Row(cart_output)
gr.Row(modal_window)
gr.Row(final_order_output)
gr.HTML(modal_and_cart_js)
return demo
if __name__ == "__main__":
app().launch()
|