Spaces:
Sleeping
Sleeping
from flask import Flask, render_template, request, jsonify | |
from simple_salesforce import Salesforce | |
from dotenv import load_dotenv | |
import os | |
import logging | |
# Load environment variables from .env file | |
load_dotenv() | |
# Set up logging | |
logging.basicConfig(level=logging.INFO) | |
logger = logging.getLogger(__name__) | |
app = Flask(__name__, template_folder='templates', static_folder='static') | |
# Function to get Salesforce connection | |
def get_salesforce_connection(): | |
try: | |
sf = Salesforce( | |
username=os.getenv('SFDC_USERNAME'), | |
password=os.getenv('SFDC_PASSWORD'), | |
security_token=os.getenv('SFDC_SECURITY_TOKEN'), | |
domain=os.getenv('SFDC_DOMAIN', 'login') | |
) | |
logger.info("Successfully connected to Salesforce") | |
return sf | |
except Exception as e: | |
logger.error(f"Error connecting to Salesforce: {e}") | |
return None | |
# Initialize Salesforce connection | |
sf = get_salesforce_connection() | |
def index(): | |
return render_template('index.html') | |
def get_ingredients(): | |
global sf | |
if not sf: | |
sf = get_salesforce_connection() | |
if not sf: | |
return jsonify({"error": "Failed to connect to Salesforce"}), 500 | |
dietary_preference = request.json.get('dietary_preference', '').lower() | |
# Map dietary preference to SOQL condition | |
preference_map = { | |
'vegetarian': "Category__c = 'Veg'", | |
'non-vegetarian': "Category__c = 'Non-Veg'", | |
'both': None # No condition to fetch all records | |
} | |
condition = preference_map.get(dietary_preference) | |
try: | |
# Construct the base query | |
soql = "SELECT Name, Image_URL__c FROM Sector_Detail__c" | |
if condition: | |
soql += f" WHERE {condition}" | |
soql += " LIMIT 200" | |
logger.info(f"Executing SOQL query: {soql}") | |
result = sf.query(soql) | |
ingredients = [ | |
{"name": record['Name'], "image_url": record.get('Image_URL__c', '')} | |
for record in result['records'] if 'Name' in record | |
] | |
logger.info(f"Fetched {len(ingredients)} ingredients: {ingredients}") | |
return jsonify({"ingredients": ingredients}) | |
except Exception as e: | |
logger.error(f"Failed to fetch ingredients: {str(e)}") | |
return jsonify({"error": f"Failed to fetch ingredients: {str(e)}"}), 500 | |
if __name__ == '__main__': | |
app.run(debug=True, host='0.0.0.0', port=7860) |