-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtutorial.controller.ts
126 lines (107 loc) · 3.29 KB
/
tutorial.controller.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
import { Request, Response } from "express";
import Tutorial from "../models/tutorial.model";
import tutorialRepository from "../repositories/tutorial.repository";
export default class TutorialController {
async create(req: Request, res: Response) {
if (!req.body.title) {
res.status(400).send({
message: "Content can not be empty!"
});
return;
}
try {
const tutorial: Tutorial = req.body;
const savedTutorial = await tutorialRepository.save(tutorial);
res.status(201).send(savedTutorial);
} catch (err) {
res.status(500).send({
message: "Some error occurred while retrieving tutorials."
});
}
}
async findAll(req: Request, res: Response) {
const title = typeof req.query.title === "string" ? req.query.title : "";
try {
const tutorials = await tutorialRepository.retrieveAll({ title: title });
res.status(200).send(tutorials);
} catch (err) {
res.status(500).send({
message: "Some error occurred while retrieving tutorials."
});
}
}
async findOne(req: Request, res: Response) {
const id: number = parseInt(req.params.id);
try {
const tutorial = await tutorialRepository.retrieveById(id);
if (tutorial) res.status(200).send(tutorial);
else
res.status(404).send({
message: `Cannot find Tutorial with id=${id}.`
});
} catch (err) {
res.status(500).send({
message: `Error retrieving Tutorial with id=${id}.`
});
}
}
async update(req: Request, res: Response) {
let tutorial: Tutorial = req.body;
tutorial.id = parseInt(req.params.id);
try {
const num = await tutorialRepository.update(tutorial);
if (num == 1) {
res.send({
message: "Tutorial was updated successfully."
});
} else {
res.send({
message: `Cannot update Tutorial with id=${tutorial.id}. Maybe Tutorial was not found or req.body is empty!`
});
}
} catch (err) {
res.status(500).send({
message: `Error updating Tutorial with id=${tutorial.id}.`
});
}
}
async delete(req: Request, res: Response) {
const id: number = parseInt(req.params.id);
try {
const num = await tutorialRepository.delete(id);
if (num == 1) {
res.send({
message: "Tutorial was deleted successfully!"
});
} else {
res.send({
message: `Cannot delete Tutorial with id=${id}. Maybe Tutorial was not found!`,
});
}
} catch (err) {
res.status(500).send({
message: `Could not delete Tutorial with id==${id}.`
});
}
}
async deleteAll(req: Request, res: Response) {
try {
const num = await tutorialRepository.deleteAll();
res.send({ message: `${num} Tutorials were deleted successfully!` });
} catch (err) {
res.status(500).send({
message: "Some error occurred while removing all tutorials."
});
}
}
async findAllPublished(req: Request, res: Response) {
try {
const tutorials = await tutorialRepository.retrieveAll({ published: true });
res.status(200).send(tutorials);
} catch (err) {
res.status(500).send({
message: "Some error occurred while retrieving tutorials."
});
}
}
}