-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthAPIClient.ts
202 lines (191 loc) · 4.7 KB
/
AuthAPIClient.ts
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
import { AxiosError } from "axios";
import AUTHENTICATED_USER_KEY from "../constants/AuthConstants";
import { AuthenticatedUser, AuthError, Role, Status } from "../types/AuthTypes";
import baseAPIClient from "./BaseAPIClient";
import {
getLocalStorageObjProperty,
setLocalStorageObjProperty,
} from "../utils/LocalStorageUtils";
const login = async (
email: string,
password: string,
attemptedRole: Role,
): Promise<AuthenticatedUser | null> => {
try {
const { data } = await baseAPIClient.post(
"/auth/login",
{ email, password, attemptedRole },
{ withCredentials: true },
);
return data;
} catch (error) {
if (error instanceof AxiosError) {
throw new Error(error.response?.data.error, {
cause: error.response?.data as AuthError,
});
}
return null;
}
};
const logout = async (userId: string | undefined): Promise<boolean> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
await baseAPIClient.post(
`/auth/logout/${userId}`,
{},
{ headers: { Authorization: bearerToken } },
);
localStorage.removeItem(AUTHENTICATED_USER_KEY);
return true;
} catch (error) {
return false;
}
};
const signup = async (
firstName: string,
lastName: string,
email: string,
password: string,
role: string, // Added role parameter
): Promise<AuthenticatedUser | null> => {
try {
const { data } = await baseAPIClient.post(
"/auth/signup",
{ firstName, lastName, email, password, role }, // Added role to request body
{ withCredentials: true },
);
return data;
} catch (error) {
return null;
}
};
const resetPassword = async (email: string): Promise<boolean> => {
try {
await baseAPIClient.post(`/auth/resetPassword/${email}`, {});
return true;
} catch (error) {
return false;
}
};
const updateTemporaryPassword = async (
email: string,
newPassword: string,
role: Role,
): Promise<boolean> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
await baseAPIClient.post(
`/auth/updateTemporaryPassword`,
{ newPassword },
{ headers: { Authorization: bearerToken } },
);
const newAuthenticatedUser = await login(email, newPassword, role);
if (!newAuthenticatedUser) {
throw new Error("Unable to authenticate user after logging in.");
}
setLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
newAuthenticatedUser.accessToken,
);
return true;
} catch (error) {
return false;
}
};
const changePassword = async (
email: string,
newPassword: string,
role: Role,
): Promise<boolean> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
await baseAPIClient.put(
`/auth/changePassword`,
{ newPassword },
{ headers: { Authorization: bearerToken } },
);
const newAuthenticatedUser = await login(email, newPassword, role);
if (!newAuthenticatedUser) {
throw new Error("Unable to authenticate user after logging in.");
}
setLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
newAuthenticatedUser.accessToken,
);
return true;
} catch (error) {
return false;
}
};
const updateUserStatus = async (newStatus: Status): Promise<boolean> => {
const bearerToken = `Bearer ${getLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
)}`;
try {
await baseAPIClient.post(
`/auth/updateUserStatus`,
{ status: newStatus },
{ headers: { Authorization: bearerToken } },
);
return true;
} catch (error) {
return false;
}
};
// for testing only, refresh does not need to be exposed in the client
const refresh = async (): Promise<boolean> => {
try {
const { data } = await baseAPIClient.post(
"/auth/refresh",
{},
{ withCredentials: true },
);
setLocalStorageObjProperty(
AUTHENTICATED_USER_KEY,
"accessToken",
data.accessToken,
);
return true;
} catch (error) {
return false;
}
};
const isUserVerified = async (
email: string,
accessToken: string,
): Promise<boolean> => {
const bearerToken = `Bearer ${accessToken}`;
try {
const { data } = await baseAPIClient.post(
`/auth/isUserVerified/${email}`,
{},
{ headers: { Authorization: bearerToken } },
);
return data.isVerified;
} catch (error) {
return false;
}
};
export default {
login,
logout,
signup,
resetPassword,
updateTemporaryPassword,
changePassword,
updateUserStatus,
refresh,
isUserVerified,
};