Spaces:
Sleeping
Sleeping
File size: 16,294 Bytes
5e870e6 c4da317 5e870e6 | 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 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | // API client configuration
// Use the backend API URL from environment variable
// In development, fallback to localhost
const API_URL = 'https://tahasaif3-ai-taskflow-backend.hf.space';
// Import types
import { Task, TaskListResponse, Project, ProjectCreate, ProjectUpdate, ProjectProgress, User } from './types';
// API client functions that work with Better Auth and httpOnly cookies
// The backend handles JWT in httpOnly cookies, so we don't need to manually manage tokens
interface RegisterCredentials {
email: string;
password: string;
}
interface LoginCredentials {
email: string;
password: string;
}
interface RegisterResponse {
id: string;
email: string;
name?: string;
created_at?: string;
message?: string;
}
interface LoginResponse {
access_token: string;
token_type: string;
user: User;
}
export async function register(credentials: RegisterCredentials): Promise<RegisterResponse> {
const response = await fetch(`${API_URL}/api/auth/register`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(credentials),
// Include credentials (cookies) in the request
credentials: 'include',
});
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Registration failed';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Registration failed with status ${response.status}`;
}
throw new Error(errorMessage);
}
const result = await response.json();
// Store the token in localStorage for cross-origin compatibility if returned
if (result.access_token) {
localStorage.setItem('auth_token', result.access_token);
}
return result;
}
export async function login(credentials: LoginCredentials): Promise<LoginResponse> {
const response = await fetch(`${API_URL}/api/auth/login`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(credentials),
// Include credentials (cookies) in the request
credentials: 'include',
});
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Login failed';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Login failed with status ${response.status}`;
}
throw new Error(errorMessage);
}
const result = await response.json();
// Store the token in localStorage for cross-origin compatibility
if (result.access_token) {
localStorage.setItem('auth_token', result.access_token);
}
return result;
}
// Function to logout user
export async function logout(): Promise<void> {
try {
// Make a request to the backend to clear the cookie
await fetch(`${API_URL}/api/auth/logout`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
credentials: 'include',
});
} catch (error) {
console.error('Error during logout:', error);
}
// Clear any client-side storage
// Note: The httpOnly cookie can't be cleared from JavaScript, but the backend should handle this
localStorage.removeItem('user');
localStorage.removeItem('rememberMe');
localStorage.removeItem('auth_token');
}
// Function to request password reset
export async function forgotPassword(email: string): Promise<{ message: string }> {
const response = await fetch(`${API_URL}/api/auth/forgot-password`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ email }),
});
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Failed to send reset link';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Failed to send reset link with status ${response.status}`;
}
throw new Error(errorMessage);
}
return response.json();
}
// Function to reset password
export async function resetPassword(email: string, newPassword: string): Promise<{ message: string }> {
const response = await fetch(`${API_URL}/api/auth/reset-password`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ email, new_password: newPassword }),
});
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Failed to reset password';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Failed to reset password with status ${response.status}`;
}
throw new Error(errorMessage);
}
return response.json();
}
// Function to check if user is authenticated
export async function getCurrentUser(): Promise<User | null> {
try {
console.log('Making request to /api/auth/me');
// Try to get stored user data first as a fallback
const storedUser = localStorage.getItem('user');
// Get the stored JWT token
const storedToken = localStorage.getItem('auth_token');
const response = await fetch(`${API_URL}/api/auth/me`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
...(storedToken ? { 'Authorization': `Bearer ${storedToken}` } : {}),
},
});
console.log('Me endpoint response status:', response.status);
console.log('Me endpoint response headers:', [...response.headers.entries()]);
if (!response.ok) {
console.log('Me endpoint response not ok:', response.status);
console.log('Response text:', await response.text());
// If we have stored user data, use it as fallback
if (storedUser) {
console.log('Using stored user data as fallback');
return JSON.parse(storedUser);
}
return null;
}
const userData = await response.json();
console.log('Me endpoint user data:', userData);
// Store user data for future use
if (userData) {
localStorage.setItem('user', JSON.stringify(userData));
}
return userData;
} catch (error) {
console.error('Error checking authentication status:', error);
// Try to return stored user data as a last resort
const storedUser = localStorage.getItem('user');
if (storedUser) {
console.log('Returning stored user data as fallback');
return JSON.parse(storedUser);
}
return null;
}
}
// Function to get task statistics for a user
export async function getUserTaskStats(userId: string): Promise<any> {
try {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/stats`);
if (!response.ok) {
const contentType = response.headers.get('content-type');
let errorMessage = 'Failed to fetch task stats';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
const errorText = await response.text();
errorMessage = `Failed to fetch stats with status ${response.status}`;
}
throw new Error(errorMessage);
}
return await response.json();
} catch (error) {
console.error('Error fetching task stats:', error);
throw error;
}
}
// Global error handling for authenticated requests using JWT token
export async function makeAuthenticatedRequest(endpoint: string, options: RequestInit = {}) {
// Get the stored JWT token
const storedToken = localStorage.getItem('auth_token');
const response = await fetch(`${API_URL}${endpoint}`, {
...options,
headers: {
'Content-Type': 'application/json',
...(storedToken ? { 'Authorization': `Bearer ${storedToken}` } : {}),
...options.headers,
},
});
// Handle different status codes
if (response.status === 401) {
// Invalid session, redirect to login
throw new Error('Authentication required');
}
if (response.status === 404) {
throw new Error('Resource not found');
}
if (response.status >= 500) {
throw new Error('Server error, please try again later');
}
return response;
}
// Task-related API functions
export async function getTasks(userId: string): Promise<Task[]> {
console.log(`Fetching tasks for user ID: ${userId}`);
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/`);
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Failed to fetch tasks';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Failed to fetch tasks with status ${response.status}`;
}
console.error('Error fetching tasks:', errorMessage);
throw new Error(errorMessage);
}
const data: TaskListResponse = await response.json();
console.log('Tasks fetched successfully:', data);
return data.tasks;
}
export async function getTask(userId: string, taskId: number): Promise<Task> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/${taskId}`);
if (!response.ok) {
// Check if response is JSON before parsing
const contentType = response.headers.get('content-type');
let errorMessage = 'Failed to fetch task';
if (contentType && contentType.includes('application/json')) {
const errorData = await response.json();
errorMessage = errorData.detail || errorMessage;
} else {
// If not JSON, get the text response
const errorText = await response.text();
console.error('Non-JSON response:', errorText);
errorMessage = `Failed to fetch task with status ${response.status}`;
}
throw new Error(errorMessage);
}
return response.json();
}
export async function createTask(userId: string, taskData: Omit<Task, 'id' | 'user_id' | 'created_at' | 'updated_at'>): Promise<Task> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks`, {
method: 'POST',
body: JSON.stringify({
title: taskData.title,
description: taskData.description,
completed: taskData.completed || false,
project_id: taskData.project_id,
due_date: taskData.due_date
}),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to create task');
}
return response.json();
}
export async function updateTask(userId: string, taskId: number, taskData: Partial<Task>): Promise<Task> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/${taskId}`, {
method: 'PUT',
body: JSON.stringify(taskData),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to update task');
}
return response.json();
}
// Specific function for partial updates (PATCH)
export async function patchTask(userId: string, taskId: number, taskData: Partial<Task>): Promise<Task> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/${taskId}`, {
method: 'PATCH',
body: JSON.stringify(taskData),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to partially update task');
}
return response.json();
}
export async function deleteTask(userId: string, taskId: number): Promise<void> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/${taskId}`, {
method: 'DELETE',
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to delete task');
}
}
export async function toggleTaskCompletion(userId: string, taskId: number): Promise<Task> {
const response = await makeAuthenticatedRequest(`/api/${userId}/tasks/${taskId}/toggle`, {
method: 'PATCH',
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to toggle task completion');
}
return response.json();
}
// Project-related API functions
export async function getProjects(userId: string): Promise<Project[]> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/`);
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to fetch projects');
}
return response.json();
}
export async function getProject(userId: string, projectId: string): Promise<Project> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/${projectId}`);
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to fetch project');
}
return response.json();
}
export async function createProject(userId: string, projectData: ProjectCreate): Promise<Project> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects`, {
method: 'POST',
body: JSON.stringify(projectData),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to create project');
}
return response.json();
}
export async function updateProject(userId: string, projectId: string, projectData: ProjectUpdate): Promise<Project> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/${projectId}`, {
method: 'PUT',
body: JSON.stringify(projectData),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to update project');
}
return response.json();
}
export async function deleteProject(userId: string, projectId: string): Promise<void> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/${projectId}`, {
method: 'DELETE',
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to delete project');
}
}
export async function getProjectTasks(userId: string, projectId: string): Promise<Task[]> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/${projectId}/tasks`);
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to fetch project tasks');
}
// Backend returns List[Task] directly, not TaskListResponse
const data: Task[] = await response.json();
return Array.isArray(data) ? data : [];
}
export async function getProjectProgress(userId: string, projectId: string): Promise<ProjectProgress> {
const response = await makeAuthenticatedRequest(`/api/${userId}/projects/${projectId}/progress`);
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.detail || 'Failed to fetch project progress');
}
return response.json();
} |