Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 2x 2x 2x 2x 2x 1x 1x 1x 2x 2x 1x 2x 2x 1x 2x 2x 1x 2x 2x 1x | import axios from 'axios'; import { API_BASE_URL } from '../config'; import type { ApiResponse } from '../types/apiResponse'; import type { ResendResponse } from '../types/apiResponse'; export interface RegisterPayload { firstname: string; lastname: string; email: string; password: string; password_confirmation: string; captcha_token: string; accept_terms: boolean; }; export async function loginUser( email: string, password: string, remember: boolean, twofa_code: string, lang: string, guestCartId: string | null ): Promise<ApiResponse> { const headers: Record<string, string> = { 'Content-Type': 'application/json', 'Accept-Language': lang, }; if (guestCartId) headers['X-Guest-Cart-Id'] = guestCartId; const payload = { email, password, remember, twofa_code }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/login`, payload, { headers } ); return response.data; } export async function resendVerificationEmail( email: string, lang: string ): Promise<ResendResponse> { const headers: Record<string, string> = { 'Content-Type': 'application/json', 'Accept-Language': lang, }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/email/resend`, { email }, { headers } ); return { status: response.status, data: response.data, }; }; /** * Révoque le token côté serveur. * * @param token Token JWT à révoquer */ export async function logoutUser( token: string ): Promise<ResendResponse> { const headers: Record<string, string> = { 'Content-Type': 'application/json', 'Authorization': `Bearer ${token}`, }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/logout`, {}, { headers } ); return { status: response.status, data: response.data, }; }; /** * Enregistre un nouvel utilisateur. * * @param payload Données du formulaire d'inscription * @param lang Code de langue pour l'en-tête Accept-Language */ export async function registerUser( payload: RegisterPayload, lang: string ): Promise<ResendResponse> { const headers: Record<string, string> = { 'Content-Type': 'application/json', 'Accept-Language': lang, }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/register`, payload, { headers } ); return { status: response.status, data: response.data, }; } export async function passwordForgottenDemand( email: string, lang: string ): Promise<ResendResponse> { const headers: Record<string, string> = { 'Content-Type': 'application/json', 'Accept-Language': lang, }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/password/forgot`, { email }, { headers } ); return { status: response.status, data: response.data, }; }; export async function resetPassword( token: string, email: string, password: string, password_confirmation: string, lang: string ): Promise<{ status: number; data: ApiResponse }> { const headers: Record<string,string> = { 'Content-Type': 'application/json', 'Accept-Language': lang, }; const response = await axios.post<ApiResponse>( `${API_BASE_URL}/api/auth/password/reset`, { token, email, password, password_confirmation }, { headers } ); return { status: response.status, data: response.data }; } |