Spaces:
Sleeping
Sleeping
File size: 1,205 Bytes
09a5796 | 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 | import { apiFetch } from './client'
import type { AuthResponse } from '../types'
export async function login(email: string, password: string): Promise<AuthResponse> {
const res = await apiFetch('/api/auth/login', {
method: 'POST',
body: JSON.stringify({ email, password }),
})
if (!res.ok) {
const err = await res.json()
throw new Error(err.detail ?? 'Login failed')
}
return res.json()
}
export async function signup(
full_name: string,
email: string,
password: string,
role: string,
class_code?: string
): Promise<AuthResponse> {
const res = await apiFetch('/api/auth/signup', {
method: 'POST',
body: JSON.stringify({ full_name, email, password, role, class_code }),
})
if (!res.ok) {
const err = await res.json()
throw new Error(err.detail ?? 'Signup failed')
}
return res.json()
}
export async function logout(): Promise<void> {
await apiFetch('/api/auth/logout', { method: 'POST' })
}
export async function refreshToken(): Promise<{ access_token: string }> {
const res = await fetch('/api/auth/refresh', {
method: 'POST',
credentials: 'include',
})
if (!res.ok) throw new Error('Refresh failed')
return res.json()
}
|