-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
auth.ts
165 lines (141 loc) · 3.86 KB
/
auth.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
import Cookies from 'js-cookie';
import { HttpResponse, http } from 'msw';
import { env } from '@/config/env';
import { db, persistDb } from '../db';
import {
authenticate,
hash,
requireAuth,
AUTH_COOKIE,
networkDelay,
} from '../utils';
type RegisterBody = {
firstName: string;
lastName: string;
email: string;
password: string;
teamId?: string;
teamName?: string;
};
type LoginBody = {
email: string;
password: string;
};
export const authHandlers = [
http.post(`${env.API_URL}/auth/register`, async ({ request }) => {
await networkDelay();
try {
const userObject = (await request.json()) as RegisterBody;
const existingUser = db.user.findFirst({
where: {
email: {
equals: userObject.email,
},
},
});
if (existingUser) {
return HttpResponse.json(
{ message: 'The user already exists' },
{ status: 400 },
);
}
let teamId;
let role;
if (!userObject.teamId) {
const team = db.team.create({
name: userObject.teamName ?? `${userObject.firstName} Team`,
});
await persistDb('team');
teamId = team.id;
role = 'ADMIN';
} else {
const existingTeam = db.team.findFirst({
where: {
id: {
equals: userObject.teamId,
},
},
});
if (!existingTeam) {
return HttpResponse.json(
{
message: 'The team you are trying to join does not exist!',
},
{ status: 400 },
);
}
teamId = userObject.teamId;
role = 'USER';
}
db.user.create({
...userObject,
role,
password: hash(userObject.password),
teamId,
});
await persistDb('user');
const result = authenticate({
email: userObject.email,
password: userObject.password,
});
// todo: remove once tests in Github Actions are fixed
Cookies.set(AUTH_COOKIE, result.jwt, { path: '/' });
return HttpResponse.json(result, {
headers: {
// with a real API servier, the token cookie should also be Secure and HttpOnly
'Set-Cookie': `${AUTH_COOKIE}=${result.jwt}; Path=/;`,
},
});
} catch (error: any) {
return HttpResponse.json(
{ message: error?.message || 'Server Error' },
{ status: 500 },
);
}
}),
http.post(`${env.API_URL}/auth/login`, async ({ request }) => {
await networkDelay();
try {
const credentials = (await request.json()) as LoginBody;
const result = authenticate(credentials);
// todo: remove once tests in Github Actions are fixed
Cookies.set(AUTH_COOKIE, result.jwt, { path: '/' });
return HttpResponse.json(result, {
headers: {
// with a real API servier, the token cookie should also be Secure and HttpOnly
'Set-Cookie': `${AUTH_COOKIE}=${result.jwt}; Path=/;`,
},
});
} catch (error: any) {
return HttpResponse.json(
{ message: error?.message || 'Server Error' },
{ status: 500 },
);
}
}),
http.post(`${env.API_URL}/auth/logout`, async () => {
await networkDelay();
// todo: remove once tests in Github Actions are fixed
Cookies.remove(AUTH_COOKIE);
return HttpResponse.json(
{ message: 'Logged out' },
{
headers: {
'Set-Cookie': `${AUTH_COOKIE}=; Path=/;`,
},
},
);
}),
http.get(`${env.API_URL}/auth/me`, async ({ cookies }) => {
await networkDelay();
try {
const { user } = requireAuth(cookies);
return HttpResponse.json({ data: user });
} catch (error: any) {
return HttpResponse.json(
{ message: error?.message || 'Server Error' },
{ status: 500 },
);
}
}),
];