forked from alan2207/bulletproof-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.ts
115 lines (98 loc) · 2.66 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
import { rest } from 'msw';
import { nanoid } from 'nanoid';
import { API_URL } from '@/config';
import { db, persistDb } from '../db';
import { authenticate, delayedResponse, hash, requireAuth } 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 = [
rest.post<RegisterBody>(`${API_URL}/auth/register`, (req, res, ctx) => {
try {
const userObject = req.body;
const existingUser = db.user.findFirst({
where: {
email: {
equals: userObject.email,
},
},
});
if (existingUser) {
throw new Error('The user already exists');
}
let teamId;
let role;
if (!userObject.teamId) {
const team = db.team.create({
id: nanoid(),
name: userObject.teamName ?? `${userObject.firstName} Team`,
createdAt: Date.now(),
});
persistDb('team');
teamId = team.id;
role = 'ADMIN';
} else {
const existingTeam = db.team.findFirst({
where: {
id: {
equals: userObject.teamId,
},
},
});
if (!existingTeam) {
throw new Error('The team you are trying to join does not exist!');
}
teamId = userObject.teamId;
role = 'USER';
}
db.user.create({
...userObject,
id: nanoid(),
createdAt: Date.now(),
role,
password: hash(userObject.password),
teamId,
});
persistDb('user');
const result = authenticate({ email: userObject.email, password: userObject.password });
return delayedResponse(ctx.json(result));
} catch (error: any) {
return delayedResponse(
ctx.status(400),
ctx.json({ message: error?.message || 'Server Error' })
);
}
}),
rest.post<LoginBody>(`${API_URL}/auth/login`, (req, res, ctx) => {
try {
const credentials = req.body;
const result = authenticate(credentials);
return delayedResponse(ctx.json(result));
} catch (error: any) {
return delayedResponse(
ctx.status(400),
ctx.json({ message: error?.message || 'Server Error' })
);
}
}),
rest.get(`${API_URL}/auth/me`, (req, res, ctx) => {
try {
const user = requireAuth(req);
return delayedResponse(ctx.json(user));
} catch (error: any) {
return delayedResponse(
ctx.status(400),
ctx.json({ message: error?.message || 'Server Error' })
);
}
}),
];