-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.js
150 lines (141 loc) · 3.24 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
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
const Joi = require('joi')
const Sequelize = require('sequelize')
const Hapi = require('hapi');
const Inert = require("inert");
const Vision = require("vision");
const HapiSwagger = require("hapi-swagger");
const port = process.env.PORT || 3000;
const server = new Hapi.Server(
{
port
}
);
const failAction = async (request, h, err) => {
console.error('err', err)
throw err;
}
(async () => {
if (!process.env.POSTGRES_HOST) {
throw Error(
"process.env.POSTGRES_HOST must be a: user:pass@ipService:port ",
);
}
const sequelize = new Sequelize(
`postgres://${process.env.POSTGRES_HOST}/${process.env.POSTGRES_DB || "heroes"}`,
{
ssl: process.env.POSTGRES_SSL,
dialectOptions: {
ssl: process.env.POSTGRES_SSL,
},
}
);
await sequelize.authenticate();
console.log("postgres is running");
const Hero = sequelize.define("hero", {
name: Sequelize.STRING,
power: Sequelize.STRING,
});
await Hero.sync({ force: true });
await server.register([
Inert,
Vision,
{
plugin: HapiSwagger,
options: {
info: {
title: "Node.js with Postgres Example - Erick Wendel",
version: "1.0",
},
}
},
]);
server.route([
{
method: "GET",
path: "/heroes",
handler: () => {
return Hero.findAll();
},
config: {
description: "List All heroes",
notes: "heroes from database",
tags: ["api"],
},
},
{
method: "GET",
path: "/heroes/{id}",
handler: (req) => {
return Hero.findAll({ where: { id: req.params.id } });
},
config: {
description: "Get a hero",
notes: "heroes from database",
tags: ["api"],
},
},
{
method: "POST",
path: "/heroes",
config: {
handler: (req) => {
const { payload } = req;
return Hero.create(payload);
},
description: "Create a hero",
notes: "create a hero",
tags: ["api"],
validate: {
failAction,
payload: {
name: Joi.string().required(),
power: Joi.string().required(),
},
},
},
},
{
method: "PUT",
path: "/heroes/{id}",
config: {
handler: (req) => {
const { payload } = req;
return Hero.update(payload, { where: { id: req.params.id } });
},
description: "Create a hero",
notes: "create a hero",
tags: ["api"],
validate: {
failAction,
params: {
id: Joi.string().required(),
},
payload: {
name: Joi.string(),
power: Joi.string(),
},
},
},
},
{
method: "DELETE",
path: "/heroes/{id}",
config: {
handler: (req) => {
return Hero.destroy({ where: { id: req.params.id } });
},
description: "Delete a hero",
notes: "Delete a hero",
tags: ["api"],
validate: {
failAction,
params: {
id: Joi.string().required(),
},
},
},
},
]);
await server.start();
console.log("server running at", server.info.port);
})();