File size: 10,146 Bytes
9a92a42 | 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 | import api from './axiosInstance.api';
import type {
User,
LoginRequest,
LoginResponse,
SignupOrganizationRequest,
SignupTrainerRequest,
SignupTraineeRequest,
ChangePasswordRequest,
ResetPasswordRequest,
ForgotPasswordRequest,
UpdateUserRequest,
VerifyTrainerRequest,
VerifyOrganizationRequest,
Organization,
PendingOrganization,
PendingTrainer
} from '../Types'
/**
* Google OAuth authentication
* Exchanges the auth code for a token via the backend
*/
export const googleLogin = async (code: string, role: string = 'trainee'): Promise<LoginResponse> => {
const response = await api.get<LoginResponse>(`/users/auth/google?code=${code}&state=${role}`);
return response.data;
};
/**
* Regular login with email and password
*/
export const login = async (credentials: LoginRequest & { otp?: string }): Promise<LoginResponse> => {
const response = await api.post<LoginResponse>('/users/login', credentials);
return response.data;
};
/**
* Trainee registration
*/
export const signupTrainee = async (userData: SignupTraineeRequest): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>('/users/signup/trainee', userData);
return response.data;
};
/**
* Trainer registration
*/
export const signupTrainer = async (userData: SignupTrainerRequest): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>('/users/signup/trainer', userData);
return response.data;
};
/**
* Organization registration
*/
export const signupOrganization = async (userData: SignupOrganizationRequest): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>('/users/signup/organization', userData);
return response.data;
};
/**
* Get current user profile
*/
export const getCurrentUser = async (): Promise<User> => {
const response = await api.get<User>('/users/me');
return response.data;
};
/**
* Update user profile
*/
export const updateUser = async (userData: UpdateUserRequest): Promise<User> => {
const response = await api.put<User>('/users/me', userData);
return response.data;
};
/**
* Delete user account
*/
export const deleteUser = async (): Promise<{ message: string }> => {
const response = await api.delete<{ message: string }>('/users/me');
return response.data;
};
/**
* Change password
*/
export const changePassword = async (passwordData: ChangePasswordRequest): Promise<{ message: string }> => {
const response = await api.put<{ message: string }>('/users/change-password', passwordData);
return response.data;
};
/**
* Upload profile photo
*/
export const uploadProfilePhoto = async (file: File): Promise<{ message: string; profilePhoto: string }> => {
const formData = new FormData();
formData.append('profilePhoto', file);
const response = await api.post<{ message: string; profilePhoto: string }>(
'/users/upload-photo',
formData,
{
headers: {
'Content-Type': 'multipart/form-data',
},
}
);
return response.data;
};
/**
* Upload organization documents
*/
export const uploadOrganizationDocuments = async (files: {
profilePhoto?: File;
registrationCertificate?: File;
gstCertificate?: File;
authorizationLetter?: File;
additionalDocs?: File[];
}): Promise<{ message: string; documents: any }> => {
const formData = new FormData();
if (files.profilePhoto) formData.append('profilePhoto', files.profilePhoto);
if (files.registrationCertificate) formData.append('registrationCertificate', files.registrationCertificate);
if (files.gstCertificate) formData.append('gstCertificate', files.gstCertificate);
if (files.authorizationLetter) formData.append('authorizationLetter', files.authorizationLetter);
if (files.additionalDocs) {
files.additionalDocs.forEach((file) => {
formData.append('additionalDocs', file);
});
}
const response = await api.post<{ message: string; documents: any }>(
'/users/upload-documents',
formData,
{
headers: {
'Content-Type': 'multipart/form-data',
},
}
);
return response.data;
};
/**
* Request password reset
*/
export const forgotPassword = async (emailData: ForgotPasswordRequest): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>('/users/forgot-password', emailData);
return response.data;
};
/**
* Reset password with token
*/
export const resetPassword = async (token: string, passwordData: ResetPasswordRequest): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>(`/users/reset-password/${token}`, passwordData);
return response.data;
};
/**
* Setup 2FA
*/
export const setup2FA = async (): Promise<{ secret: string; qrCode: string }> => {
const response = await api.post<{ secret: string; qrCode: string }>('/users/auth/2fa/setup');
return response.data;
};
/**
* Verify 2FA
*/
export const verify2FA = async (token: string): Promise<{ message: string }> => {
const response = await api.post<{ message: string }>('/users/auth/2fa/verify', { token });
return response.data;
};
// ==================== ORGANIZATION-SPECIFIC FUNCTIONS ====================
/**
* Verify/reject a trainer (organization only)
*/
export const verifyTrainer = async (verificationData: VerifyTrainerRequest): Promise<{
message: string;
trainer: {
_id: string;
username: string;
email: string;
organizationVerificationStatus: string;
}
}> => {
const response = await api.put<{
message: string;
trainer: {
_id: string;
username: string;
email: string;
organizationVerificationStatus: string;
}
}>('/users/verify-trainer', verificationData);
return response.data;
};
/**
* Get pending trainers for organization
*/
export const getPendingTrainers = async (): Promise<{
count: number;
trainers: PendingTrainer[]
}> => {
const response = await api.get<{
count: number;
trainers: PendingTrainer[]
}>('/users/pending-trainers');
return response.data;
};
// ==================== ADMIN-ONLY FUNCTIONS ====================
/**
* Verify/reject an organization (admin only)
*/
export const verifyOrganization = async (verificationData: VerifyOrganizationRequest): Promise<{
message: string;
organization: {
_id: string;
username: string;
email: string;
verificationStatus: string;
}
}> => {
const response = await api.put<{
message: string;
organization: {
_id: string;
username: string;
email: string;
verificationStatus: string;
}
}>('/users/verify-organization', verificationData);
return response.data;
};
/**
* Get pending organizations for admin
*/
export const getPendingOrganizations = async (): Promise<{
count: number;
organizations: PendingOrganization[]
}> => {
const response = await api.get<{
count: number;
organizations: PendingOrganization[]
}>('/users/pending-organizations');
return response.data;
};
/**
* Get all users (admin only)
*/
export const getAllUsers = async (params: {
role?: string;
search?: string;
limit?: number;
skip?: number;
userId?: string;
}): Promise<{
count: number;
total: number;
users: User[];
}> => {
const response = await api.get<{
count: number;
total: number;
users: User[];
}>('/users/all', { params });
return response.data;
};
// ==================== PUBLIC FUNCTIONS ====================
/**
* Get all verified organizations (public)
*/
export const getAllOrganizations = async (): Promise<{
count: number;
organizations: Organization[]
}> => {
const response = await api.get<{
count: number;
organizations: Organization[]
}>('/users/organizations');
return response.data;
};
// ==================== AUTH UTILITIES ====================
/**
* Store token in localStorage
*/
export const storeToken = (token: string): void => {
localStorage.setItem('token', token);
};
/**
* Remove token from localStorage (logout)
*/
export const removeToken = (): void => {
localStorage.removeItem('token');
};
/**
* Get token from localStorage
*/
export const getToken = (): string | null => {
return localStorage.getItem('token');
};
/**
* Check if user is authenticated
*/
export const isAuthenticated = (): boolean => {
return !!getToken();
};
/**
* Store user data in localStorage
*/
export const storeUser = (user: User): void => {
localStorage.setItem('user', JSON.stringify(user));
};
/**
* Get stored user data from localStorage
*/
export const getStoredUser = (): User | null => {
const userStr = localStorage.getItem('user');
return userStr ? JSON.parse(userStr) : null;
};
/**
* Remove user data from localStorage
*/
export const removeUser = (): void => {
localStorage.removeItem('user');
};
/**
* Logout user - clear token and user data
*/
export const logout = (): void => {
removeToken();
removeUser();
};
export default {
// Auth functions
googleLogin,
login,
signupTrainee,
signupTrainer,
signupOrganization,
// User management
getCurrentUser,
updateUser,
deleteUser,
changePassword,
uploadProfilePhoto,
uploadOrganizationDocuments,
// Password reset
forgotPassword,
resetPassword,
setup2FA,
verify2FA,
// Organization functions
verifyTrainer,
getPendingTrainers,
// Admin functions
verifyOrganization,
getPendingOrganizations,
getAllUsers,
// Public functions
getAllOrganizations,
// Utilities
storeToken,
removeToken,
getToken,
isAuthenticated,
storeUser,
getStoredUser,
removeUser,
logout,
}; |