-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.js
93 lines (81 loc) · 2.21 KB
/
website.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
const fastify = require('fastify')({
logger: true,
});
const got = require('got');
const fs = require('fs').promises;
const util = require('util');
const addErrorHandler = require('./6_error_handler');
// Validate incoming data
const opts = {
schema: {
body: {
type: 'object',
properties: {
password: { type: 'string' },
email: { type: 'string' },
},
},
},
};
fastify.register(require('fastify-formbody'));
fastify.register(require('fastify-cookie'));
fastify.register(require('fastify-session'), {
cookieName: 'sessionId',
secret: 'a secret with minimum length of 32 characters',
cookie: { secure: false },
expires: 1800000,
});
// Add a login route that returns a login page
fastify.get('/login', async (request, reply) => {
try {
reply.type('text/html');
return fs.readFile('./login.html');
} catch (error) {
console.log(error);
process.exit(1);
}
});
// Add a login route that handles the actual login
fastify.post('/login', opts, async (request, reply) => {
const { email, password } = request.body;
console.log(email, typeof password);
if (password === '42') {
request.session.authenticated = true;
reply.redirect('/');
} else {
reply.redirect('/login');
}
});
// Add a logout route
fastify.get('/logout', async (request, reply) => {
if (request.session.authenticated) {
await util.promisify(request.destroySession).call(request);
}
reply.redirect('/');
});
fastify.get('/picture', async (request, reply) => {
// Add repeat logic
const res = await got('https://picsum.photos/600', { encoding: null });
reply.type('image/jpeg');
return res.body;
});
fastify.get('/', async (request, reply) => {
// The new part
reply.type('text/html');
if (request.session.authenticated) {
return 'Logged in<br><br><a href="/logout">Logout</a>';
}
return 'Please login<br><br><a href="/login">Login</a>';
});
addErrorHandler(fastify);
const start = async () => {
try {
await fastify.listen(3000);
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
};
start();
// Task: Split the setup here into logical parts: Schemas, routes and a plugin
// folder. Make sure that everything is still working as expected.