feature/rbac y perfiles implementados

This commit is contained in:
2026-05-21 08:00:43 -06:00
parent 546a411df8
commit dc5f9fd6ce
29 changed files with 2007 additions and 977 deletions

View File

@@ -1,56 +1,42 @@
const API_URL = import.meta.env.VITE_EFC_API_URL || 'http://localhost:8000';
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth } from '../fetchWithAuth';
import { extractApiError } from './apiError';
// Función helper para manejar respuestas
async function handleResponse(response, operation = 'operación') {
if (response.status === 401) {
throw new Error('SESSION_EXPIRED');
}
if (!response.ok) {
const errorText = await response.text();
throw new Error(`Error ${response.status}: ${response.statusText}`);
}
async function handleResponse(response) {
if (response.status === 401) throw new Error('SESSION_EXPIRED');
if (!response.ok) throw new Error(await extractApiError(response));
const contentType = response.headers.get('content-type');
if (!contentType || !contentType.includes('application/json')) {
throw new Error('El servidor no devolvió JSON válido');
}
if (!contentType || !contentType.includes('application/json')) return null;
return response.json();
}
export async function fetchUsers() {
const url = `${API_URL}/user/users/`;
const res = await fetchWithAuth(url);
return handleResponse(res, 'Fetch Users');
const res = await fetchWithAuth(`${API_URL}/user/users/`);
return handleResponse(res);
}
export async function createUser(userData) {
const url = `${API_URL}/user/users/`;
const res = await postWithAuth(url, userData);
return handleResponse(res, 'Create User');
const res = await postWithAuth(`${API_URL}/user/users/`, userData);
return handleResponse(res);
}
export async function updateUser(id, userData) {
const url = `${API_URL}/user/users/${id}/`;
const res = await putWithAuth(url, userData);
return handleResponse(res, 'Update User');
const res = await putWithAuth(`${API_URL}/user/users/${id}/`, userData);
return handleResponse(res);
}
export async function deleteUser(id) {
const url = `${API_URL}/user/users/${id}/`;
const res = await deleteWithAuth(url);
if (!res.ok) throw new Error(`Error ${res.status}: ${res.statusText}`);
return true;
const res = await deleteWithAuth(`${API_URL}/user/users/${id}/`);
return handleResponse(res);
}
export async function getCurrentUser(token) {
const url = `${API_URL}/user/users/me/`;
const res = await fetch(url, {
const res = await fetch(`${API_URL}/user/users/me/`, {
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',
'Accept': 'application/json',
},
});
return handleResponse(res, 'Get Current User');
return handleResponse(res);
}