This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.js
106 lines (97 loc) · 2.66 KB
/
app.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
const createError = require('http-errors');
require('dotenv').config();
const express = require('express');
const csp = require('helmet-csp');
const path = require('path');
const cookieParser = require('cookie-parser');
const logger = require('morgan');
const sassMiddleware = require('node-sass-middleware');
const { v4: uuidv4 } = require('uuid');
const utils = require('./utils');
const indexRouter = require('./routes/index');
const app = express();
app.locals.title = 'Submit your profile to Hackerinnen.space';
app.locals.env = process.env.NODE_ENV;
app.locals.recaptchaKey = process.env.RECAPTCHA_KEY;
(async () => {
try {
// clone hackerinnen repo into tmp folder
await utils.cloneRepo();
console.log('Cloning repo success');
} catch (error) {
console.log(error);
process.exit(1);
}
})();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(logger('dev'));
app.use(function(req, res, next) {
res.locals.nonce = uuidv4();
next();
});
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(
csp({
useDefaults: true,
directives: {
'img-src': [
"'self'",
'https://hackerinnen.space',
'https://www.hackerinnen.space',
],
'script-src': [
"'self'",
"'strict-dynamic'",
(req, res) => `'nonce-${res.locals.nonce}'`,
],
'style-src': [
"'self'",
'https://www.hackerinnen.space',
'https://hackerinnen.space',
'https://cdn.jsdelivr.net',
'https://maxcdn.bootstrapcdn.com',
],
'frame-src': ["'self'", 'https://www.google.com'],
},
})
);
app.use(
sassMiddleware({
src: path.join(__dirname, 'public'),
dest: path.join(__dirname, 'public'),
indentedSyntax: true, // true = .sass and false = .scss
sourceMap: true,
})
);
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', indexRouter);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
next(createError(404));
});
// error handler
app.use(function(err, req, res, next) {
console.log(`Oh snap! The server responded with this error: ${err}`);
if (req.body) {
res.render('index', {
fullname: req.body.fullname,
email: req.body.email,
markdown_de: req.body.markdown_de,
markdown_en: req.body.markdown_en,
error: `Oh snap! The server responded with this error: ${err}`,
});
} else {
res.render('error', {
message: `Oh snap! The server responded with this error: ${err}`,
error: {
status: '',
stack: '',
},
});
}
});
module.exports = app;