Spaces:
Sleeping
Sleeping
File size: 18,434 Bytes
e327f0d 41449fe e327f0d 41449fe e327f0d | 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 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | import axios, {
AxiosError,
type AxiosInstance,
type InternalAxiosRequestConfig,
} from 'axios';
import type {
HealthResponse,
InspectionCreateResponse,
InspectionStatusResponse,
SyncInspectionResponse,
InspectionListResponse,
InspectionStatus,
} from '@arac-hasar/types';
import { isJwtExpired } from './jwt';
import { getSelectedModelId } from './models';
const API_URL =
process.env.NEXT_PUBLIC_API_URL?.replace(/\/+$/, '') ?? 'http://localhost:8000';
export const API_BASE_URL = API_URL;
export const TOKEN_STORAGE_KEY = 'arac_hasar_access_token';
export const REFRESH_STORAGE_KEY = 'arac_hasar_refresh_token';
export const TOKEN_COOKIE = 'access_token';
// Cross-tab coordination for refresh-token rotation. Each tab attempts to
// acquire a short-lived lock; if another tab is already refreshing, the
// follower waits for the new access token to land in localStorage instead
// of hitting /auth/refresh in parallel (refresh tokens are single-use, so
// the loser of the race would otherwise invalidate the winner).
const REFRESH_LOCK_KEY = 'arac_hasar_refresh_lock';
const REFRESH_LOCK_TTL_MS = 10_000;
const REFRESH_FOLLOWER_TIMEOUT_MS = 8_000;
/* ---------- token storage helpers ---------- */
function isBrowser(): boolean {
return typeof window !== 'undefined';
}
export function setStoredTokens(access: string, refresh?: string) {
if (!isBrowser()) return;
localStorage.setItem(TOKEN_STORAGE_KEY, access);
if (refresh) localStorage.setItem(REFRESH_STORAGE_KEY, refresh);
// Cookie for SSR middleware (decode-only). 7 days; renew on each login.
const maxAge = 60 * 60 * 24 * 7;
document.cookie = `${TOKEN_COOKIE}=${encodeURIComponent(
access,
)}; path=/; max-age=${maxAge}; samesite=lax`;
}
export function clearStoredTokens() {
if (!isBrowser()) return;
localStorage.removeItem(TOKEN_STORAGE_KEY);
localStorage.removeItem(REFRESH_STORAGE_KEY);
document.cookie = `${TOKEN_COOKIE}=; path=/; max-age=0; samesite=lax`;
}
export function getStoredAccessToken(): string | null {
if (!isBrowser()) return null;
return localStorage.getItem(TOKEN_STORAGE_KEY);
}
export function getStoredRefreshToken(): string | null {
if (!isBrowser()) return null;
return localStorage.getItem(REFRESH_STORAGE_KEY);
}
/* ---------- axios instance with interceptors ---------- */
let _client: AxiosInstance | null = null;
let _refreshPromise: Promise<string | null> | null = null;
let _onUnauthorized: (() => void) | null = null;
export function setUnauthorizedHandler(handler: (() => void) | null) {
_onUnauthorized = handler;
}
function buildClient(): AxiosInstance {
const instance = axios.create({
baseURL: API_URL,
timeout: 60_000,
withCredentials: false,
});
instance.interceptors.request.use((config: InternalAxiosRequestConfig) => {
const token = getStoredAccessToken();
if (token) {
config.headers.set('Authorization', `Bearer ${token}`);
}
return config;
});
instance.interceptors.response.use(
(r) => r,
async (error: AxiosError) => {
const status = error.response?.status;
const original = error.config as
| (InternalAxiosRequestConfig & { _retry?: boolean })
| undefined;
if (status === 401 && original && !original._retry) {
original._retry = true;
const refreshed = await runRefresh();
if (refreshed) {
original.headers?.set?.('Authorization', `Bearer ${refreshed}`);
return instance.request(original);
}
clearStoredTokens();
_onUnauthorized?.();
}
return Promise.reject(error);
},
);
return instance;
}
export function client(): AxiosInstance {
if (_client) return _client;
_client = buildClient();
return _client;
}
/** Try to claim the cross-tab refresh lock. Returns true if we own it. */
function tryAcquireRefreshLock(): boolean {
if (!isBrowser()) return true;
try {
const now = Date.now();
const raw = localStorage.getItem(REFRESH_LOCK_KEY);
if (raw) {
const ts = parseInt(raw, 10);
// Stale lock (tab crashed) → steal it.
if (Number.isFinite(ts) && now - ts < REFRESH_LOCK_TTL_MS) {
return false;
}
}
localStorage.setItem(REFRESH_LOCK_KEY, String(now));
// Re-read to confirm we won the race (best-effort; localStorage writes
// are synchronous within a tab, so the second writer in another tab
// overwrites us — but we'll detect that when our refresh response either
// succeeds or fails, and in the failure path we fall back to waiting).
return localStorage.getItem(REFRESH_LOCK_KEY) === String(now);
} catch {
return true; // localStorage unavailable: behave as single-tab.
}
}
function releaseRefreshLock() {
if (!isBrowser()) return;
try {
localStorage.removeItem(REFRESH_LOCK_KEY);
} catch {
/* ignore */
}
}
/**
* Wait for another tab to publish a fresh access token. Resolves with the
* new token, or `null` if the leader did not publish within the timeout
* (caller should then treat the session as dead).
*/
function waitForLeaderRefresh(previousToken: string | null): Promise<string | null> {
if (!isBrowser()) return Promise.resolve(null);
return new Promise((resolve) => {
const start = Date.now();
let done = false;
const finish = (token: string | null) => {
if (done) return;
done = true;
window.removeEventListener('storage', onStorage);
clearInterval(poll);
resolve(token);
};
const onStorage = (e: StorageEvent) => {
if (e.key === TOKEN_STORAGE_KEY && e.newValue && e.newValue !== previousToken) {
finish(e.newValue);
}
};
window.addEventListener('storage', onStorage);
// Fallback poll for same-tab edge cases (storage events do not fire in
// the writing tab) and for browsers that batch them.
const poll = setInterval(() => {
const current = getStoredAccessToken();
if (current && current !== previousToken) {
finish(current);
return;
}
if (Date.now() - start >= REFRESH_FOLLOWER_TIMEOUT_MS) {
finish(null);
}
}, 200);
});
}
async function runRefresh(): Promise<string | null> {
// In-tab dedup: while one request is refreshing, others await the same
// promise instead of firing a second /auth/refresh.
if (_refreshPromise) return _refreshPromise;
const refresh = getStoredRefreshToken();
if (!refresh) return null;
const previousAccess = getStoredAccessToken();
const isLeader = tryAcquireRefreshLock();
_refreshPromise = (async () => {
try {
if (!isLeader) {
// Follower: wait for the leader tab to write the new token.
const token = await waitForLeaderRefresh(previousAccess);
return token;
}
const res = await axios.post<{
access_token: string;
refresh_token?: string;
}>(`${API_URL}/auth/refresh`, { refresh_token: refresh });
const { access_token, refresh_token } = res.data;
setStoredTokens(access_token, refresh_token ?? refresh);
return access_token;
} catch {
return null;
} finally {
if (isLeader) releaseRefreshLock();
_refreshPromise = null;
}
})();
return _refreshPromise;
}
/* ---------- auth ---------- */
export interface User {
id: string;
email: string;
full_name?: string;
role?: 'admin' | 'user' | string;
created_at?: string;
is_active?: boolean;
}
export interface AuthTokens {
access_token: string;
refresh_token?: string;
}
export interface LoginResponse extends AuthTokens {
user?: User;
}
export interface RegisterResponse extends AuthTokens {
user: User;
}
export const auth = {
async login(email: string, password: string): Promise<LoginResponse> {
const res = await client().post<LoginResponse>('/auth/login', {
email,
password,
});
return res.data;
},
async register(
email: string,
password: string,
full_name: string,
): Promise<RegisterResponse> {
const res = await client().post<RegisterResponse>('/auth/register', {
email,
password,
full_name,
});
return res.data;
},
async me(): Promise<User> {
const res = await client().get<User>('/auth/me');
return res.data;
},
async refresh(): Promise<string | null> {
return runRefresh();
},
async changePassword(current: string, next: string): Promise<void> {
await client().post('/auth/change-password', {
current_password: current,
new_password: next,
});
},
async updateProfile(input: { full_name?: string }): Promise<User> {
const res = await client().patch<User>('/auth/me', input);
return res.data;
},
hasValidSession(): boolean {
const t = getStoredAccessToken();
if (!t) return false;
return !isJwtExpired(t, 5);
},
};
/* ---------- inspections ---------- */
export interface CreateInspectionOptions {
/** sync = inline (max 3 files), async = queued */
mode?: 'sync' | 'async';
apiKey?: string;
signal?: AbortSignal;
onUploadProgress?: (loaded: number, total: number) => void;
}
export interface ListInspectionsOptions {
page?: number;
pageSize?: number;
status?: InspectionStatus;
dateFrom?: string; // ISO
dateTo?: string; // ISO
query?: string;
apiKey?: string;
signal?: AbortSignal;
}
export const inspections = {
async create(
files: File[],
opts: CreateInspectionOptions = {},
): Promise<InspectionCreateResponse | SyncInspectionResponse> {
const { mode = 'async', apiKey, signal, onUploadProgress } = opts;
if (!files || files.length === 0) {
throw new Error('NO_FILES');
}
const form = new FormData();
// IMPORTANT:
// - /api/v1/inspect expects field name 'files' (List[UploadFile])
// - /api/v1/inspect/sync expects field name 'file' (single UploadFile)
// Always use the multi-file endpoint so the same code path supports 1..N
// images. We pass ?mode=sync|async on the query string.
files.forEach((f) => form.append('files', f, f.name));
// Append the user-selected model (header dropdown) so the backend can
// route the request to either the pre-trained weights or the
// fine-tuned custom checkpoint. Falls back to the documented default
// when the header has not initialized yet (SSR / first paint).
const modelId = getSelectedModelId();
const params = new URLSearchParams();
params.set('mode', mode === 'sync' ? 'sync' : 'async');
if (modelId) params.set('model', modelId);
const path = `/api/v1/inspect?${params.toString()}`;
// CRITICAL: do NOT set Content-Type manually. axios/the browser must add
// it automatically so that the multipart boundary token is included in
// the header. Setting `Content-Type: multipart/form-data` here strips the
// boundary and the backend rejects the upload as malformed.
// CPU-only HF Spaces: tek inference 9-36s; N foto * 45s + upload süresi
// global 60s timeout'u aşar → "Bağlantı zaman aşımı" yanlış göstergesi.
// Per-call uzatma: en az 5dk, foto başına 60s. Sync mode'da kritik.
const dynamicTimeout = mode === 'sync'
? Math.max(300_000, files.length * 60_000)
: 120_000;
const res = await client().post<
InspectionCreateResponse | SyncInspectionResponse
>(path, form, {
headers: apiKey ? { 'X-API-Key': apiKey } : undefined,
signal,
timeout: dynamicTimeout,
onUploadProgress: (evt) => {
if (onUploadProgress && evt.total) {
onUploadProgress(evt.loaded, evt.total);
}
},
});
return res.data;
},
async get(
inspectionId: string,
opts: { apiKey?: string; signal?: AbortSignal } = {},
): Promise<InspectionStatusResponse> {
const res = await client().get<InspectionStatusResponse>(
`/api/v1/inspect/${encodeURIComponent(inspectionId)}`,
{
headers: opts.apiKey ? { 'X-API-Key': opts.apiKey } : undefined,
signal: opts.signal,
},
);
return res.data;
},
async list(opts: ListInspectionsOptions = {}): Promise<InspectionListResponse> {
const {
page = 1,
pageSize = 20,
status,
dateFrom,
dateTo,
query,
apiKey,
signal,
} = opts;
const res = await client().get<InspectionListResponse>(`/api/v1/inspect`, {
params: {
page,
page_size: pageSize,
status,
date_from: dateFrom,
date_to: dateTo,
q: query || undefined,
},
headers: apiKey ? { 'X-API-Key': apiKey } : undefined,
signal,
});
return res.data;
},
async delete(inspectionId: string): Promise<void> {
await client().delete(`/api/v1/inspect/${encodeURIComponent(inspectionId)}`);
},
visualization(
inspectionId: string,
type: 'annotated' | 'parts' | 'damages',
): string {
return `${API_URL}/api/v1/inspect/${encodeURIComponent(inspectionId)}/visualization/${type}`;
},
};
/* ---------- api keys ---------- */
export interface ApiKey {
id: string;
name: string;
prefix: string;
created_at: string;
last_used_at?: string | null;
revoked: boolean;
}
export interface ApiKeyCreateResponse {
key: ApiKey;
/** Plaintext key returned ONCE on creation. */
secret: string;
}
export const apiKeys = {
async list(): Promise<ApiKey[]> {
const res = await client().get<ApiKey[]>('/auth/api-keys');
return res.data;
},
async create(name: string): Promise<ApiKeyCreateResponse> {
const res = await client().post<ApiKeyCreateResponse>('/auth/api-keys', {
name,
});
return res.data;
},
async revoke(id: string): Promise<void> {
await client().delete(`/auth/api-keys/${encodeURIComponent(id)}`);
},
};
/* ---------- admin: users ---------- */
export const adminUsers = {
async list(): Promise<User[]> {
const res = await client().get<User[]>('/admin/users');
return res.data;
},
async setRole(userId: string, role: 'admin' | 'user'): Promise<User> {
const res = await client().patch<User>(
`/admin/users/${encodeURIComponent(userId)}/role`,
{ role },
);
return res.data;
},
async setActive(userId: string, is_active: boolean): Promise<User> {
const res = await client().patch<User>(
`/admin/users/${encodeURIComponent(userId)}/active`,
{ is_active },
);
return res.data;
},
};
/* ---------- misc ---------- */
export async function getHealth(): Promise<HealthResponse> {
const res = await client().get<HealthResponse>('/health');
return res.data;
}
/* ---------- backward-compat exports (existing pages still use these) ---------- */
export async function createInspection(
files: File[],
opts: CreateInspectionOptions = {},
): Promise<InspectionCreateResponse | SyncInspectionResponse> {
return inspections.create(files, opts);
}
export async function getInspectionStatus(
inspectionId: string,
opts: { apiKey?: string; signal?: AbortSignal } = {},
): Promise<InspectionStatusResponse> {
return inspections.get(inspectionId, opts);
}
export async function listInspections(
opts: ListInspectionsOptions = {},
): Promise<InspectionListResponse> {
return inspections.list(opts);
}
export function inspectionVisualizationUrl(
inspectionId: string,
type: 'annotated' | 'parts' | 'damages',
): string {
return inspections.visualization(inspectionId, type);
}
export function isSyncResponse(
r: InspectionCreateResponse | SyncInspectionResponse,
): r is SyncInspectionResponse {
return 'result' in r && 'processed_at' in r;
}
/* ---------- error extraction ---------- */
/**
* Classify an axios/fetch error into a stable kind plus the first available
* human-readable detail string. Callers translate the kind via next-intl;
* `detail` (when present) is the raw server message (e.g. FastAPI HTTPException
* detail) which is usually already localized server-side.
*/
export interface ApiErrorInfo {
kind:
| 'network'
| 'cancelled'
| 'timeout'
| 'badRequest'
| 'unauthorized'
| 'forbidden'
| 'notFound'
| 'tooLarge'
| 'unsupportedMedia'
| 'validation'
| 'rateLimited'
| 'server'
| 'unknown';
status?: number;
detail?: string;
/** Field-level errors from FastAPI 422 (RequestValidationError). */
fieldErrors?: Array<{ field: string; message: string }>;
}
export function classifyApiError(err: unknown): ApiErrorInfo {
if (axios.isCancel(err)) return { kind: 'cancelled' };
if (!axios.isAxiosError(err)) return { kind: 'unknown' };
if (err.code === 'ECONNABORTED' || err.code === 'ETIMEDOUT') {
return { kind: 'timeout' };
}
if (!err.response) return { kind: 'network' };
const { status, data } = err.response;
// FastAPI: { detail: string } or { detail: [{ loc, msg, type }, ...] }
let detail: string | undefined;
let fieldErrors: Array<{ field: string; message: string }> | undefined;
if (data && typeof data === 'object') {
const d = (data as { detail?: unknown }).detail;
if (typeof d === 'string') {
detail = d;
} else if (Array.isArray(d)) {
fieldErrors = d
.map((e) => {
if (!e || typeof e !== 'object') return null;
const loc = (e as { loc?: unknown[] }).loc;
const msg = (e as { msg?: unknown }).msg;
const field = Array.isArray(loc)
? loc.filter((p) => p !== 'body' && p !== 'query').join('.')
: '';
return typeof msg === 'string'
? { field: field || '_', message: msg }
: null;
})
.filter((x): x is { field: string; message: string } => x !== null);
detail = fieldErrors[0]?.message;
}
}
const base: ApiErrorInfo = { kind: 'unknown', status, detail, fieldErrors };
if (status === 400) return { ...base, kind: 'badRequest' };
if (status === 401) return { ...base, kind: 'unauthorized' };
if (status === 403) return { ...base, kind: 'forbidden' };
if (status === 404) return { ...base, kind: 'notFound' };
if (status === 413) return { ...base, kind: 'tooLarge' };
if (status === 415) return { ...base, kind: 'unsupportedMedia' };
if (status === 422) return { ...base, kind: 'validation' };
if (status === 429) return { ...base, kind: 'rateLimited' };
if (status && status >= 500) return { ...base, kind: 'server' };
return base;
}
|