-
Notifications
You must be signed in to change notification settings - Fork 3
/
server.js
286 lines (235 loc) · 6.95 KB
/
server.js
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
import cors from "cors";
import express from "express";
import { PrismaClient } from "@prisma/client"; // Prisma
import jwt from "jsonwebtoken";
import bodyParser from "body-parser"
const app = express();
const prisma = new PrismaClient(); // Prisma
const PORT = 8081
app.use(express.json());
app.use(bodyParser.json());
app.use(cors());
const SECRET = "seu_segredo_aqui";
//const users = []; // Comentar se for usar Prisma
/*
app.use('/', (req,res) => {
res.json({
status: "API working fine",
code: 200
})
})*/
app.post('/login/google', async (req, res) => {
const { email, name } = req.body;
try {
// Verifique se o usuário já existe
let user = await prisma.user.findUnique({ where: { email } });
if (!user) {
// Cria o usuário automaticamente se não existir
user = await prisma.user.create({
data: { email, name, password: '' }, // Password pode ser vazio
});
}
// Gere o token JWT para autenticação
const token = jwt.sign({ id: user.id, email: user.email }, SECRET, { expiresIn: '1h' });
res.status(200).json({ message: 'Login com Google bem-sucedido', token, userId: user.id });
} catch (error) {
res.status(500).json({ message: 'Erro ao autenticar com Google', error: error.message });
}
});
app.post('/login', async (req, res) => {
const { email, password } = req.body;
try {
const user = await prisma.User.findUnique({
where: { email: email }
});
if (!user) {
console.log(`Usuário não encontrado: ${email}`);
return res.status(406).json({ message: 'Usuário não encontrado' });
}
if (user.password !== password) {
return res.status(401).json({ message: 'Senha incorreta' });
}
const token = jwt.sign({ id: user.id, email: user.email }, SECRET, { expiresIn: '1h' });
res.status(200).json({ message: 'Login bem-sucedido', token: token });
} catch (error) {
res.status(500).json({ message: 'Erro no servidor', error: error.message });
}
});
// **USUÁRIOS**
// Criar usuário
app.post('/users', async (req,res) => {
//users.push(req.body);
await prisma.user.create({ // Prisma
data: {
email: req.body.email,
name: req.body.name,
password: req.body.password
}
});
res.status(201).json(req.body);
})
// Consultar apenas um usuário pelo ID
app.get('/users/:id', async (req, res) => {
try {
const user = await prisma.user.findUnique({
where: { id: req.params.id },
});
if (user) {
// Criando as iniciais caso não tenha imagem
const initials = user.name.split(' ').map(word => word[0]).join(' ');
res.status(200).json({ ...user, initials });
} else {
res.status(404).json({ message: 'Usuário não encontrado' });
}
} catch (error) {
res.status(500).json({ message: 'Erro no servidor', error: error.message });
}
});
// Consultar usuário
app.get('/users', async (req,res) => {
let users = [];
if(req.query){
users = await prisma.user.findMany({
where: {
email: req.query.email,
}
}); // Prisma
} else {
users = await prisma.user.findMany();
}
res.status(200).json(users);
});
// Editar usuário
app.put('/users/:id', async (req,res) => {
//users.push(req.body);
await prisma.user.update({ // Prisma
where: {
id: req.params.id
},
data: {
email: req.body.email,
name: req.body.name,
password: req.body.password
}
});
res.status(201).json(req.body);
})
// Deletar usuário
app.delete('/users/:id', async (req,res) => {
//users.push(req.body);
await prisma.user.delete({ // Prisma
where: {
id: req.params.id
}
});
res.status(200).json({message: 'Usuário deletado com Sucesso!'});
})
// **CURSOS**
// Criar curso
app.post('/courses', async (req,res) => {
await prisma.course.create({ // Prisma
data: {
name: req.body.name,
duration: req.body.duration,
description: req.body.description
}
});
res.status(201).json(req.body);
})
// Consultar curso
app.get('/courses', async (req,res) => {
let courses = [];
if(req.query){
courses = await prisma.course.findMany({
where: {
id: req.query.id
}
}); // Prisma
} else {
courses = await prisma.course.findMany();
}
res.status(200).json(courses);
});
// Editar curso
app.put('/courses/:id', async (req,res) => {
//users.push(req.body);
await prisma.course.update({ // Prisma
data: {
name: req.body.name,
duration: req.body.duration,
description: req.body.description
}
});
res.status(201).json(req.body);
})
// Deletar courso
app.delete('/courses/:id', async (req,res) => {
//users.push(req.body);
await prisma.course.delete({ // Prisma
where: {
id: req.params.id
}
});
res.status(200).json({message: 'Curso deletado com Sucesso!'});
})
// **MATRÍCULAS**
// Criar matrícula
app.post('/matriCourse', async (req,res) => {
await prisma.matriCourse.create({ // Prisma
data: {
userId: req.body.userId,
courseId: req.body.courseId
}
});
res.status(201).json(req.body);
})
// Consultar matrícula
app.get('/matriCourse', async (req,res) => {
let matriCourses = [];
if(req.query){
matriCourses = await prisma.matriCourse.findMany({
where: {
userId: req.query.userId
},
include: {
course: {
select: {
name: true,
duration: true,
description: true
}
},
user: {
select: {
name: true
}
}
}
}); // Prisma
} else {
matriCourses = await prisma.matriCourse.findMany();
}
res.status(200).json(matriCourses);
});
// Editar matrícula
app.put('/matriCourse/:id', async (req,res) => {
//users.push(req.body);
await prisma.matriCourse.update({ // Prisma
data: {
userId: req.body.userId,
courseId: req.body.courseId
}
});
res.status(201).json(req.body);
})
// Deletar matrícula
app.delete('/matriCourse/:id', async (req,res) => {
//users.push(req.body);
await prisma.matriCourse.delete({ // Prisma
where: {
id: req.params.id
}
});
res.status(200).json({message: 'Matrícula deletada com Sucesso!'});
})
app.listen(() => app.listen(PORT, () => console.log(`Running on port ${PORT}`)));