-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
233 lines (201 loc) · 7.11 KB
/
app.js
File metadata and controls
233 lines (201 loc) · 7.11 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
/**
* Module dependencies.
*/
const express = require('express');
const compression = require('compression');
const session = require('express-session');
const bodyParser = require('body-parser');
const logger = require('morgan');
const chalk = require('chalk');
const errorHandler = require('errorhandler');
const lusca = require('lusca');
const dotenv = require('dotenv');
const flash = require('express-flash');
const path = require('path');
const passport = require('passport');
const sass = require('node-sass-middleware');
// additional dependencies
const fs = require('fs');
const util = require('util');
fs.readFileAsync = util.promisify(fs.readFile);
/**
* Load environment variables from .env file, where API keys and passwords are configured.
*/
dotenv.config({ path: '.env' });
/**
* Create Express server.
*/
const app = express();
/**
* Express configuration.
*/
app.set('port', process.env.PORT || 3000);
app.set('view engine', 'pug');
app.set('views', path.join(__dirname, 'views'));
// Compresses all responses: Compression decreases the downloadable amount of data that is served to users. Through the use of compression, we can improve the performance of the Node.js application as our payload size is reduced drastically.
app.use(compression());
// https://www.npmjs.com/package/node-sass-middleware Put JS, CSS, HTML files below the public directory, and they will be compressed.
app.use(sass({
src: path.join(__dirname, 'public'),
dest: path.join(__dirname, 'public')
}));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
// Define our session.
app.use(session({
resave: true,
saveUninitialized: true,
secret: 'secret_key',
cookie: { maxAge: 1209600000 }, // two weeks in milliseconds
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());
app.use((req, res, next) => {
if (req.path === '/api/upload') {
// Multer multipart/form-data handling needs to occur before the Lusca CSRF check.
next();
} else {
lusca.csrf()(req, res, next);
}
});
// security settings in our http header
app.use(lusca.xframe('SAMEORIGIN'));
app.use(lusca.xssProtection(true));
app.disable('x-powered-by');
// All of our static files that express will automatically server for us.
app.use('/', express.static(path.join(__dirname, 'public'), { maxAge: 31557600000 }));
app.use('/semantic', express.static(path.join(__dirname, 'semantic'), { maxAge: 31557600000 }));
/**
* Primary app routes.
* (In alphabetical order)
*/
// Main route is the landing page
app.get('/', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
res.render('home', {
title: 'Home',
headerInfo
});
});
// route for resources
app.get('/resources', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
let resourcesInfo;
const resourcesData = await fs.readFileSync(`${__dirname}/public/json/resourcesInfo.json`);
resourcesInfo = JSON.parse(resourcesData.toString());
const categoryKeys = Object.keys(resourcesInfo["tags"]);
const menu = {
"Topics": ["Federal Benefits", "New York State Benefits", "Public Charge", "COVID-19", "Legal Services", "Medical Services", "Immigration Law", "Domestic Workers", "Pregnancy"],
"Eligibility": ["Immigrant Eligibility", "State Eligibility"],
};
for (const categoryKey of categoryKeys) {
if (categoryKey === "topics" || categoryKey === "eligibility") {
continue;
}
menu[resourcesInfo["tags"][categoryKey]] = resourcesInfo["content"].reduce(function(newArray, item) {
let ls = item["tags"][categoryKey];
if (categoryKey === "languages") {
ls = Object.keys(ls);
}
for (const i of ls) {
if (!newArray.includes(i)) {
newArray.push(i);
}
}
return newArray;
}, []).sort();
}
res.render('resources', {
title: 'Resources',
headerInfo,
resourcesInfo,
menu
});
});
// route for resources
app.get('/resources-2/:sectionValue?', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
let resourcesInfo;
const resourcesData = await fs.readFileSync(`${__dirname}/public/json/resources-original.json`);
resourcesInfo = JSON.parse(resourcesData.toString());
const sectionTitles = [
'Topic'
];
// if sub_section is not defined, it is defaulted to the first subsection value
const activeSubsection = req.params.sectionValue || 'general_resources_for_immigrant_communities';
res.render('resources-original', {
title: 'Resources',
headerInfo,
sectionTitles,
resourcesInfo,
activeSubsection
});
});
// route for Questions and Answers
app.get('/QandA/:sectionValue?', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
let faqsInfo;
const faqsData = await fs.readFileAsync(`${__dirname}/public/json/faqsInfo.json`);
faqsInfo = JSON.parse(faqsData.toString());
const activeSubsection = req.params.sectionValue || faqsInfo[0]["value"];
res.render('QandA', {
title: 'Questions and Answers',
headerInfo,
faqsInfo,
activeSubsection
});
});
// route for Infographics page
app.get('/infographics', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
let infographicsInfo;
const infographicsData = await fs.readFileAsync(`${__dirname}/public/json/infographicsInfo.json`);
infographicsInfo = JSON.parse(infographicsData.toString());
res.render('infographics', {
title: 'Infographics',
headerInfo,
infographicsInfo
});
})
// route for Team page
app.get('/team', async function(req, res) {
let headerInfo;
const headerData = await fs.readFileAsync(`${__dirname}/public/json/headerInfo.json`);
headerInfo = JSON.parse(headerData.toString());
res.render('team', {
title: 'Team',
headerInfo
});
})
/**
* Error Handler.
*/
if (process.env.NODE_ENV === 'development') {
// only use in development
app.use(errorHandler());
} else {
app.use((err, req, res, next) => {
console.error(err);
res.status(500).send('Server Error');
});
}
/**
* Start Express server.
*/
app.listen(app.get('port'), () => {
console.log('%s App is running at http://localhost:%d in %s mode', chalk.green('✓'), app.get('port'), app.get('env'));
console.log(' Press CTRL-C to stop\n');
});
module.exports = app;