generated from mnunezdm/my-api-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
220 lines (190 loc) · 4.87 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
const fs = require('fs');
const https = require('https');
const chalk = require('chalk');
const express = require('express');
const { graphqlHTTP } = require('express-graphql');
const passport = require('passport');
const session = require('express-session');
const pgSession = require('connect-pg-simple')(session);
const { Pool } = require('./src/models/database');
const { getDbConfig } = require('./src/config');
const { schema } = require('./src/graphql/schema');
const labels = require('./src/labels');
const cors = require('cors');
const rootValue = {
ip: (_, request) => request.ip,
};
const initializePassport = require('./src/passport');
const User = require('./src/models/user');
const assureDbConnected = (_, response, next, db) => {
if (!db.connected) {
response
.status(500)
.set('Content-Type', 'application/json')
.send({
errors: [{ message: labels.errorNoDbConnection }],
});
} else {
next();
}
};
const notConnected = (req, res, next) => {
if (req.isAuthenticated()) {
res.status(200).json({
message: `Already logged as ${req.user.username}`,
});
} else {
next();
}
};
const assureConntected = (request, response, next) => {
if (request.isAuthenticated()) {
next();
} else {
response.status(403).json({ error: { message: 'NO_AUTHENTICATED' } });
}
};
const buildExpressApp = db => {
const app = express();
initializePassport(passport, db);
app.use(
cors({
origin: true,
credentials: true,
}),
);
app.enable('trust proxy');
app.use(express.json());
app.use(passport.initialize());
app.use(passport.session());
let store;
if (process.env.SESSION_STORE === 'PG') {
store = new pgSession({
pool: db,
});
}
app.use(
session({
store,
secret: process.env.SESSION_SECRET,
resave: false,
saveUninitialized: false,
cookie: {
secure: true,
sameSite: 'None',
domain: process.env.COOKIE_DOMAIN,
},
}),
);
app.use(passport.initialize());
app.use(passport.session());
app.get('/me', assureConntected, (req, res) => {
res.status(200).json({
data: req.user.toJson(),
});
});
app.get('/status', (req, res) => {
res.status(200).send({
server: true,
db: db.connected,
auth: req.isAuthenticated(),
});
});
app.post('/login', notConnected, (request, response) =>
passport.authenticate('local', (error, user, info) => {
if (error) {
response.status(403).json({
error: {
message: error.message,
},
});
} else if (!user) {
response.status(403).json(info);
} else {
request.login(user, error => {
if (error) {
return response.status(404).json({
error: { message: error },
});
}
response.status(200).json({
data: request.user.toJson(),
});
});
}
})(request, response),
);
app.delete('/logout', assureConntected, (request, response) => {
request.logout(), response.status(204).send();
});
app.post('/register', async (request, response) => {
try {
const user = await User.register(request.body, db);
request.login(user, () => {
response.status(201).send({
message: 'Created!',
data: request.user.toJson(),
});
});
} catch (e) {
if (e === 'ERROR_USER_DUPLICATE') {
response.status(409).send({ message: 'User already exist' });
} else {
console.error(e);
response.status(500).send({
message: 'An error occured while registering the user',
error: e,
});
}
}
});
app.use(
'/graphql',
(...args) => assureDbConnected(...args, db),
graphqlHTTP({
schema: schema(db),
rootValue,
graphiql: true,
}),
);
return app;
};
if (require.main === module) {
const db = new Pool(getDbConfig());
db.connect()
.then(() => console.log('[server] db connected'))
.catch(error =>
console.error(chalk.red`[fatal] Could not connect to db: ${error}`),
);
const portNumber = Number(process.env.PORT);
const app = buildExpressApp(db);
app.listen(portNumber, () => {
console.log(
`[server] ${labels.startGraphqlMessage} http://localhost:${portNumber}/graphql`,
);
});
try {
https
.createServer(
{
key: fs.readFileSync('server.key'),
cert: fs.readFileSync('server.cert'),
},
app,
)
.listen(portNumber + 1, () => {
console.log(
`[server] ${
labels.startGraphqlMessage
} https://localhost:${portNumber + 1}/graphql`,
);
});
} catch (e) {
console.warn(
chalk.magenta`[warning] Could not start https server: ${e.message}`,
);
}
}
module.exports = {
buildExpressApp,
};