-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·117 lines (101 loc) · 3.49 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
'use strict';
const Bell = require('@hapi/bell');
const Boom = require('@hapi/boom');
const Bcrypt = require('bcrypt');
const Cookies = require('@hapi/cookie');
const Dotenv = require('dotenv');
const Fs = require('fs');
const Hapi = require('@hapi/hapi');
const Inert = require('@hapi/inert');
const Jwt = require('hapi-auth-jwt2');
const { Nanoid } = require('nanoid');
const Nunjucks = require('nunjucks');
const NunjucksHapi = require('nunjucks-hapi');
const Routes = require('./routes');
const RoutesApi = require('./routesApi');
const Utils = require('./api/utils.js');
const Vision = require('@hapi/vision');
// Sanity check modules
const Checklist = [Bell, Boom, Bcrypt, Cookies, Dotenv, Fs, Hapi, Inert, Jwt, Nanoid, Nunjucks, NunjucksHapi,
Routes, RoutesApi, Utils, Vision];
for (const o of Checklist) {
if (o.error) {
console.log(o.error.message);
process.exit(1);
}
}
// Setup environment
Dotenv.config();
//Use rookout
const rook = require('rookout');
rook.start({ token: '5a805c26b8ef89c391eb8b2f29117d93600321911dbf9cecee3fcf1ca67781d8' })
// Setup HTTPS
const server = Hapi.server({ port: process.env.BASE_PORT || 8000,
routes: { cors: true } //,
//tls: { key: Fs.readFileSync(process.env.TLS_KEY), cert: Fs.readFileSync(process.env.TLS_CERT) }
});
require('./mvc/models/db');
// Setup Rendering engine
Nunjucks.installJinjaCompat();
Nunjucks.configure('views', {
autoescape: true,
cache: false,
web: { async: true }
});
// Authentication Options
let authCookieOptions = {
password: Nanoid() + Nanoid(), // Just generate some cookie password
cookie: process.env.COOKIE_NAME,
isSecure: false, // 'true' in production (requires HTTPS)
ttl: 24 * 60 * 60 * 1000,
redirectTo: '/'
};
let bellAuthOptions = {
provider: process.env.OAUTH_PROVIDER,
password: Nanoid() + Nanoid(), // String to encrypt temp cookie during authorization
clientId: process.env.OAUTH_CLIENT_ID, // *** Replace with your app Client Id ****
clientSecret: process.env.OAUTH_CLIENT_SECRET, // *** Replace with your app Client Secret ***
isSecure: false // 'true' in production (requires HTTPS)
};
let jwtAuthOptions = {
key: process.env.JWT_SECRET_TOKEN,
validate: Utils.validate,
verifyOptions: { algorithms: ['HS256'] },
};
// View Options
let defaultView = {
engines: {
njk: NunjucksHapi // https://github.com/seldo/nunjucks-hapi
},
relativeTo: __dirname,
path: './mvc/views',
layoutPath: './mvc/views/layouts',
partialsPath: './mvc/views/partials',
isCached: false,
layout: false // warning; true renders (unwanted) raw html - nunjunks needs false.
};
async function provision() {
await server.register(Bell);
await server.register(Cookies);
await server.register(Inert);
await server.register(Jwt);
await server.register(Vision);
server.views(defaultView);
server.auth.strategy('cookie-auth', 'cookie', authCookieOptions);
server.auth.strategy('github-oauth', 'bell', bellAuthOptions);
server.auth.strategy('jwt', 'jwt', jwtAuthOptions);
server.auth.default({
mode: 'required',
strategy: 'cookie-auth'
});
server.route(Routes);
server.route(RoutesApi);
await server.start();
console.log(`server running at: ${server.info.uri}`);
}
process.on('unhandledRejection', err => {
console.log(err);
process.exit(1);
});
const result = provision();
console.log(result);