-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
70 lines (61 loc) · 1.46 KB
/
index.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
import "dotenv/config";
// Module pour connection pg avec hapi
import HapiPostgresConnection from "hapi-postgres-connection";
import Hapi from "@hapi/hapi";
import mainController from "./controllers/mainController.js";
const port = process.env.PORT || 3000;
const host = process.env.HOST || "localhost";
const init = async () => {
// Creation du serveur avec hapi
const server = Hapi.server({
port,
routes: {
cors: true,
},
});
try {
await server.register({
plugin: HapiPostgresConnection,
});
} catch (error) {
console.error(error);
}
// Connection a la db pgsql
// Demarrage du serveur hapi
await server.start();
console.log(`Server running on ${server.info.uri}`);
// Creation de la route "/"
server.route({
method: "GET",
path: "/",
handler: () => {
return "Bienvenue sur /";
},
});
// CRUD sur les todos
// Recuperer tous les todos stockées en BDD
server.route({
method: "GET",
path: "/todos",
handler: mainController.getTodos,
});
// Ajout d'un nouveau todo en BDD
server.route({
method: "POST",
path: "/addTodo",
handler: mainController.addTodo,
});
// Supression d'un todo avec son id
server.route({
method: "DELETE",
path: "/todos/{id}",
handler: mainController.deleteTodo,
});
// Mise a jour de l'état fait/non fait
server.route({
method: "PATCH",
path: "/todos/{id}",
handler: mainController.updateTodo,
});
};
init();