-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.ts
More file actions
381 lines (332 loc) · 8.31 KB
/
server.ts
File metadata and controls
381 lines (332 loc) · 8.31 KB
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
import express, { Request, Response } from "express";
import { PrismaClient } from "@prisma/client";
import bodyParser from "body-parser";
const app = express();
app.use(bodyParser.json());
const prisma = new PrismaClient();
const PORT = 3000;
//USERS
app.get("/users", async (req: Request, res: Response) => {
try {
const users = await prisma.user.findMany({
//You can also use the where to filter using the equals and not method
where: {
//name: { equals: "David" },
//in or notIn accepts an array when filtering
//name: {in: ["David"]},
//Passing 2 fields is more like passing an AND operator or you can use the AND operator at once or other types of operators
//eg
//email: {startsWith: "1@2"},
//you can also query on one to many relationships like this on a post
// posts: {
// every: {
// title: "TEST",
// },
// },
},
select: {
id: true,
email: true,
posts: true,
role: true,
name: true,
jokes: {
include: {
creator: true,
},
},
},
// include: {
// posts: true,
// jokes: true,
// },
//for Pagination
//distinct: ["name", "email"],
//distinct works when we are filtering so many users with identical values
//take: 2,
//take works by returning the specified amount eg 2
//skip: 1
//skips a certain amount
});
return res.json({ users });
} catch (err: any) {
console.log(err);
}
});
app.get("/user/:id", async (req: Request, res: Response) => {
try {
const user = await prisma.user.findUnique({
where: {
id: req.params.id,
},
include: {
posts: true,
jokes: true,
},
});
return res.json({ user });
} catch (err: any) {
console.log(err);
}
});
app.post("/user", async (req: Request, res: Response) => {
try {
//you can also use the connect method when creating a user to another existing field
const user = await prisma.user.create({
data: {
name: req.body.name,
email: req.body.email,
},
});
return res.json({ user });
} catch (err: any) {
console.log(err);
}
});
app.put("/user/:id", async (req: Request, res: Response) => {
try {
const user = await prisma.user.update({
where: { id: req.params.id },
data: req.body,
//you can also add the include methods
//update has special features when working with numbers in a field eg incrementing, decrementing, dividing and multiplication
//you can also use the connect{connect: {id: "...."}} or the disconnect{disconnect: true} to add or to remove fields to already existing models, eg a particular user to an existing post
});
return res.json({ user });
} catch (err: any) {
console.log(err.message);
}
});
app.delete("/users", async (req: Request, res: Response) => {
try {
const users = await prisma.user.deleteMany();
if (!users) {
return res.status(404).json({ message: "no user found" });
}
return res.json({ users });
} catch (err: any) {
console.log(err.message);
}
});
app.delete("/user/:id", async (req: Request, res: Response) => {
try {
const user = await prisma.user.findUnique({
where: {
id: req.params.id,
},
});
if (!user) {
return res.status(404).json({ message: "no user found" });
}
await prisma.user.delete({
where: {
id: user.id,
},
});
return res.json({ user });
} catch (err: any) {
console.log(err.message);
}
});
//Jokes
app.get("/jokes", async (req: Request, res: Response) => {
try {
const jokes = await prisma.joke.findMany({
//filtering deeper
// where: {
// creator: {
// email: {
// startsWith: "1@2",
// },
// },
// },
//if the where is not included so it can populate the creators
include: {
creator: true,
},
});
return res.json({ jokes });
} catch (err: any) {
console.log(err);
}
});
app.get("/joke/:id", async (req: Request, res: Response) => {
try {
const joke = await prisma.joke.findUnique({
where: {
id: req.params.id,
},
include: {
creator: true,
},
});
return res.json({ joke });
} catch (err: any) {
console.log(err);
}
});
app.post("/joke", async (req: Request, res: Response) => {
//5c24de4b-f27a-4732-9644-016d522116f1
try {
const joke = await prisma.joke.create({
data: {
text: req.body.text,
//userId: req.body.user,
//Usage of the connect
creator: {
connect: {
id: "5c24de4b-f27a-4732-9644-016d522116f1",
},
},
},
});
return res.json({ joke });
} catch (err: any) {
console.log(err);
}
});
app.put("/joke/:id", async (req: Request, res: Response) => {
try {
const joke = await prisma.joke.update({
where: {
id: req.params.id,
},
data: {
creator: {
//note connecting this joke reassigns the particular joke to another user
connect: {
id: "30257770-b139-4268-ba00-dcbae8628d24",
},
},
text: req.body.text,
},
});
return res.json({ joke });
} catch (err) {
console.log(err);
}
});
app.delete("/jokes", async (req: Request, res: Response) => {
const jokes = await prisma.joke.deleteMany();
if (!jokes) {
return res.status(404).json({ message: "no joke found" });
}
return res.json({ message: "jokes deleted", jokes });
});
app.delete("/joke/:id", async (req: Request, res: Response) => {
try {
const joke = await prisma.joke.findUnique({
where: {
id: req.params.id,
},
});
if (!joke) {
return res.status(404).json({ message: "no joke found" });
}
await prisma.joke.delete({
where: {
id: joke.id,
},
});
return res.json({ joke });
} catch (err: any) {
console.log(err.message);
}
});
///POSTS
app.get("/posts", async (req: Request, res: Response) => {
try {
const posts = await prisma.post.findMany({
include: {
creator: true,
},
});
return res.json({ posts });
} catch (err: any) {
console.log(err);
}
});
app.get("/post/:id", async (req: Request, res: Response) => {
try {
const post = await prisma.post.findUnique({
where: {
id: req.params.id,
},
include: {
creator: true,
},
});
return res.json({ post });
} catch (err: any) {
console.log(err);
}
});
app.post("/post", async (req: Request, res: Response) => {
try {
const post = await prisma.post.create({
data: {
title: req.body.title,
//creator: req.body.user,
content: req.body.content,
creator: {
connect: {
id: "5c24de4b-f27a-4732-9644-016d522116f1",
},
},
},
});
return res.json({ post });
} catch (err: any) {
console.log(err);
}
});
app.put("/post/:id", async (req: Request, res: Response) => {
try {
const post = await prisma.post.update({
//IN A REAL APP CHECK IF THE POST BELONGS TO THE USER BEFORE UPDATING
where: {
id: req.params.id,
},
data: {
title: req.body.title,
content: req.body.content,
published: {
set: true,
},
},
});
return res.json({ post });
} catch (err: any) {
console.log(err);
}
});
app.delete("/posts", async (req: Request, res: Response) => {
const posts = await prisma.post.deleteMany();
if (!posts) {
return res.status(404).json({ message: "no post found" });
}
return res.json({ message: "jokes deleted", posts });
});
app.delete("/post/:id", async (req: Request, res: Response) => {
try {
const post = await prisma.post.findUnique({
where: {
id: req.params.id,
},
});
if (!post) {
return res.status(404).json({ message: "no post found" });
}
await prisma.post.delete({
where: {
id: post.id,
},
});
return res.json({ post });
} catch (err: any) {
console.log(err.message);
}
});
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});