Spaces:
Runtime error
Runtime error
File size: 6,557 Bytes
9aaec2c | 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 | /**
* ChefCode API Layer - Connected to FastAPI Backend
* Gestisce tutte le chiamate al backend (port 8000)
*/
class ChefCodeAPI {
constructor(baseURL = 'http://localhost:8000') {
this.baseURL = baseURL;
this.apiKey = null; // MUST be set via setMobileConfig() or setApiKey()
console.log('π ChefCode API connected to:', this.baseURL);
console.log('β οΈ API Key authentication required - set via setApiKey() or setMobileConfig()');
}
// Set API Key (must be called before making authenticated requests)
setApiKey(apiKey) {
if (!apiKey) {
console.error('β API Key cannot be empty');
throw new Error('API Key is required');
}
this.apiKey = apiKey;
console.log('β
API Key configured');
}
// Configurazione per mobile (React Native / Flutter)
setMobileConfig(config) {
this.baseURL = config.baseURL || this.baseURL;
if (config.apiKey) {
this.setApiKey(config.apiKey);
}
this.token = config.token; // Per autenticazione future (deprecated)
console.log('π± API URL updated to:', this.baseURL);
}
// Get headers with authentication
getHeaders() {
if (!this.apiKey) {
console.error('β API Key not set. Call setApiKey() first.');
throw new Error('API Key not configured. Call setApiKey() before making requests.');
}
return {
'Content-Type': 'application/json',
'X-API-Key': this.apiKey
};
}
// ===== SYNC DATA =====
async syncData(data) {
try {
const response = await fetch(`${this.baseURL}/api/sync-data`, {
method: 'POST',
headers: this.getHeaders(),
body: JSON.stringify(data)
});
if (response.status === 401) {
throw new Error('Authentication failed. Check API Key configuration.');
}
if (!response.ok) {
const error = await response.json();
throw new Error(error.detail || 'Sync failed');
}
return await response.json();
} catch (error) {
console.error('β Sync error:', error);
throw error;
}
}
// ===== CHATGPT AI =====
async sendChatMessage(prompt, language = 'en') {
try {
const response = await fetch(`${this.baseURL}/api/chatgpt-smart`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' }, // Chat endpoint doesn't require auth for now
body: JSON.stringify({ prompt, language })
});
if (!response.ok) {
const error = await response.json();
throw new Error(error.detail || 'ChatGPT request failed');
}
return await response.json();
} catch (error) {
console.error('β ChatGPT error:', error);
throw error;
}
}
// ===== INVENTORY =====
async getInventory() {
try {
const response = await fetch(`${this.baseURL}/api/data`);
const data = await response.json();
return data.inventory || [];
} catch (error) {
console.error('β Get inventory error:', error);
throw error;
}
}
async addInventoryItem(item) {
try {
const response = await fetch(`${this.baseURL}/api/action`, {
method: 'POST',
headers: this.getHeaders(),
body: JSON.stringify({
action: 'add-inventory',
data: item
})
});
if (response.status === 401) {
throw new Error('Authentication failed. Check API Key configuration.');
}
if (!response.ok) {
const error = await response.json();
throw new Error(error.detail || 'Failed to add inventory item');
}
return await response.json();
} catch (error) {
console.error('β Add inventory error:', error);
throw error;
}
}
// ===== RECIPES =====
async getRecipes() {
try {
const response = await fetch(`${this.baseURL}/api/data`);
const data = await response.json();
return data.recipes || {};
} catch (error) {
console.error('β Get recipes error:', error);
throw error;
}
}
async saveRecipe(name, recipe) {
try {
const response = await fetch(`${this.baseURL}/api/action`, {
method: 'POST',
headers: this.getHeaders(),
body: JSON.stringify({
action: 'save-recipe',
data: { name, recipe }
})
});
if (response.status === 401) {
throw new Error('Authentication failed. Check API Key configuration.');
}
if (!response.ok) {
const error = await response.json();
throw new Error(error.detail || 'Failed to save recipe');
}
return await response.json();
} catch (error) {
console.error('β Save recipe error:', error);
throw error;
}
}
// ===== TASKS =====
async getTasks() {
try {
const response = await fetch(`${this.baseURL}/api/data`);
const data = await response.json();
return data.tasks || [];
} catch (error) {
console.error('β Get tasks error:', error);
throw error;
}
}
async addTask(task) {
try {
const response = await fetch(`${this.baseURL}/api/action`, {
method: 'POST',
headers: this.getHeaders(),
body: JSON.stringify({
action: 'add-task',
data: task
})
});
if (response.status === 401) {
throw new Error('Authentication failed. Check API Key configuration.');
}
if (!response.ok) {
const error = await response.json();
throw new Error(error.detail || 'Failed to add task');
}
return await response.json();
} catch (error) {
console.error('β Add task error:', error);
throw error;
}
}
// ===== HEALTH CHECK =====
async ping() {
try {
const response = await fetch(`${this.baseURL}/health`);
return response.ok;
} catch (error) {
return false;
}
}
}
// Export per Web (browser)
if (typeof window !== 'undefined') {
window.ChefCodeAPI = ChefCodeAPI;
}
// Export per Mobile (React Native / Node.js)
if (typeof module !== 'undefined' && module.exports) {
module.exports = ChefCodeAPI;
}
// Export per ES6 modules
if (typeof exports !== 'undefined') {
exports.ChefCodeAPI = ChefCodeAPI;
}
|