-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
481 lines (401 loc) · 12.6 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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
require('dotenv').config()
const express = require('express')
const nunjucks = require('nunjucks')
const axios = require('axios')
const dateFilter = require('nunjucks-date-filter')
const markdown = require('nunjucks-markdown')
const marked = require('marked')
const GovukHTMLRenderer = require('govuk-markdown')
const bodyParser = require('body-parser')
const fs = require('fs')
const path = require('path')
const config = require('./app/config')
const forceHttps = require('express-force-https')
const compression = require('compression')
const routes = require('./app/routes')
const session = require('express-session')
const favicon = require('serve-favicon')
const PageIndex = require('./middleware/pageIndex')
const pageIndex = new PageIndex(config)
const app = express()
app.use(compression())
app.use(
session({
secret: process.env.sessionkey,
resave: false,
saveUninitialized: true,
cookie: { secure: false } // Note: `secure: true` in a production environment with HTTPS
})
)
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
app.use(favicon(path.join(__dirname, 'public/assets/images', 'favicon.ico')))
app.set('view engine', 'html')
app.locals.serviceName = 'Design manual'
// Set up Nunjucks as the template engine
const nunjuckEnv = nunjucks.configure(
[
'app/views',
'node_modules/govuk-frontend/dist/',
'node_modules/dfe-frontend/packages/components'
],
{
autoescape: true,
express: app
}
)
nunjuckEnv.addFilter('date', dateFilter)
marked.setOptions({
renderer: new GovukHTMLRenderer()
})
markdown.register(nunjuckEnv, marked.parse)
nunjuckEnv.addFilter('formatNumber', function (number) {
return number.toLocaleString()
})
nunjuckEnv.addFilter('hyphen', function (str) {
return str.replace(/[A-Z]/g, (letter) => `-${letter.toLowerCase()}`)
})
app.use(forceHttps)
// Set up static file serving for the app's assets
app.use('/assets', express.static('public/assets'))
app.use((req, res, next) => {
if (req.url.endsWith('/') && req.url.length > 1) {
const canonicalUrl = req.url.slice(0, -1)
res.set('Link', `<${canonicalUrl}>; rel="canonical"`)
}
next()
})
app.use('/', routes)
// Render sitemap.xml in XML format
app.get('/sitemap.xml', (_, res) => {
res.set({ 'Content-Type': 'application/xml' })
res.render('sitemap.xml')
})
app.get('/robots.txt', (_, res) => {
res.set({ 'Content-Type': 'text/plain' })
res.render('robots.txt')
})
// app.get('/downloads/:filename', (req, res) => {
// const filename = req.params.filename
// const filePath = path.join(__dirname, '/app/assets/downloads/' + filename)
// // Set appropriate headers
// // res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document');
// res.setHeader('Content-Disposition', `attachment; filename=${filename}`)
// // Send the file
// res.sendFile(filePath)
// })
app.get('/downloads/:filename', (req, res) => {
const filename = req.params.filename
if (!/^[a-zA-Z0-9-_]+\.(docx|pdf|xlsx)$/.test(filename)) {
return res.status(400).send('Invalid file name')
}
const filePath = path.join(__dirname, 'app/assets/downloads', filename)
if (!filePath.startsWith(path.join(__dirname, 'app/assets/downloads'))) {
return res.status(400).send('Invalid file path')
}
res.setHeader('Content-Disposition', `attachment; filename=${filename}`)
// Send the file
res.sendFile(filePath, (err) => {
if (err) {
console.error('File send error:', err)
res.status(500).send('Server error')
}
})
})
app.get('/search', (req, res) => {
console.log(req.query.searchterm)
const query = req.query.searchterm || ''
const resultsPerPage = 10
let currentPage = parseInt(req.query.page, 10)
const results = pageIndex.search(query)
console.log('Results: ' + results)
console.log('Query: ' + query)
const maxPage = Math.ceil(results.length / resultsPerPage)
if (!Number.isInteger(currentPage)) {
currentPage = 1
} else if (currentPage > maxPage || currentPage < 1) {
currentPage = 1
}
const startingIndex = resultsPerPage * (currentPage - 1)
const endingIndex = startingIndex + resultsPerPage
res.render('search.html', {
currentPage,
maxPage,
query,
results: results.slice(startingIndex, endingIndex),
resultsLen: results.length
})
})
if (config.env !== 'development') {
setTimeout(() => {
pageIndex.init()
}, 2000)
}
// Your custom middleware to automatically save form data to session
function saveFormDataToSession (req, res, next) {
if (req.method === 'POST') {
req.session.data = {
...req.session.data, // Existing session data
...req.body // New form data
}
}
next()
}
// Middleware to make formData globally available to all views
function makeFormDataGlobal (req, res, next) {
// Perform a shallow merge of existing res.locals.data and session data
res.locals.data = {
...res.locals.data, // Existing data
...req.session.data // Data from the session
}
next()
}
// Register the middlewares globally
app.use(saveFormDataToSession)
app.use(makeFormDataGlobal)
app.get('/learn/how-many-users', function (req, res) {
res.redirect(301, '/tools/how-many-users')
})
app.get('/learn/how-many-users/:number', function (req, res) {
const number = req.params.number
res.redirect(301, '/tools/how-many-users/' + number)
})
app.get('/design-ops/design-maturity/september-2022', function (req, res) {
res.redirect('/inside-design/maturity/results/september-2022', 301)
})
app.get('/design-ops/maturity/results/september-2023', function (req, res) {
const data = require('./app/data/dm_2023.json')
res.render('design-ops/maturity/results/september-2023', { data })
})
app.get(
'/design-system/dfe-frontend',
function (req, res, next) {
const packageName = 'dfe-frontend'
axios
.get(`https://registry.npmjs.org/${packageName}`)
.then((response) => {
const version = response.data['dist-tags'].latest
const lastUpdatedv = new Date(
response.data.time.modified
).toISOString()
res.render('design-system/dfe-frontend/index.html', {
version,
lastUpdatedv
})
})
.catch((error) => {
console.error(error)
})
}
)
app.get(
'/design-system/installation',
function (req, res, next) {
const packageName = 'dfe-frontend'
axios
.get(`https://registry.npmjs.org/${packageName}`)
.then((response) => {
const version = response.data['dist-tags'].latest
const lastUpdatedv = new Date(
response.data.time.modified
).toISOString()
res.render('design-system/installation/index.html', {
version,
lastUpdatedv
})
})
.catch((error) => {
console.error(error)
})
}
)
app.get(
'/design-system/dfe-frontend/whats-new',
function (req, res, next) {
const packageName = 'dfe-frontend'
axios
.get(`https://registry.npmjs.org/${packageName}`)
.then((response) => {
const version = response.data['dist-tags'].latest
const sortedFilteredVersions = Object.entries(response.data.time)
.filter(([version, _]) => version.includes('.') && version.startsWith('2'))
.sort(([versionA, _a], [versionB, _b]) => versionB.localeCompare(versionA))
const lastUpdatedv = new Date(
response.data.time.modified
).toISOString()
res.render('design-system/dfe-frontend/whats-new.html', {
version,
lastUpdatedv,
sortedFilteredVersions
})
})
.catch((error) => {
console.error(error)
})
}
)
app.get('/tools/how-many-users/:number', (req, res) => {
const number = parseInt(req.params.number | 0)
if (number) {
fs.readFile('./app/data/stats.json', 'utf8', (err, data) => {
if (err) {
console.error('Error reading data.json:', err)
res.sendStatus(500)
return
}
try {
const jsonData = JSON.parse(data)
const calculatedData = calculateValues(jsonData, number)
res.render('tools/how-many-users/index.html', {
number,
calculatedData
})
} catch (err) {
console.error('Error parsing data.json:', err)
res.sendStatus(500)
}
})
} else {
res.redirect('/tools/how-many-users')
}
})
app.post('/tools/how-many-users', (req, res) => {
const number = req.body.numberOfUsers
if (number) {
res.redirect('/tools/how-many-users/' + number)
} else {
res.redirect('/tools/how-many-users')
}
})
app.get('/tools/jd-generator', (req, res) => {
res.render('tools/jd-generator/index.html')
})
app.get('/tools/proposition-checker/question1', (req, res) => {
console.log(req.session.data)
res.render('tools/proposition-checker/question1')
})
app.post('/tools/proposition-checker/question1', (req, res) => {
console.log(req.session.data)
if (req.body.question1 === 'No') {
res.redirect('/tools/proposition-checker/nongovuk')
} else {
res.redirect('/tools/proposition-checker/question2')
}
})
app.post('/tools/proposition-checker/question2', (req, res) => {
if (req.body.question2 === 'No') {
res.redirect('/tools/proposition-checker/nongovuk')
} else {
res.redirect('/tools/proposition-checker/question3')
}
})
app.post('/tools/proposition-checker/question3', (req, res) => {
if (req.body.question3 === 'Yes') {
res.redirect('/tools/proposition-checker/mainstream')
} else {
res.redirect('/tools/proposition-checker/question4')
}
})
app.post('/tools/proposition-checker/question4', (req, res) => {
if (req.body.question4 === 'Yes') {
res.redirect('/tools/proposition-checker/question4a')
} else {
res.redirect('/tools/proposition-checker/question6')
}
})
app.post('/tools/proposition-checker/question4a', (req, res) => {
if (req.session.data.question4 === 'Yes') {
res.redirect('/tools/proposition-checker/question5')
} else {
res.redirect('/tools/proposition-checker/question6')
}
})
app.post('/tools/proposition-checker/question5', (req, res) => {
console.log(req.session.data)
res.redirect('/tools/proposition-checker/question6')
})
app.post('/tools/proposition-checker/question6', (req, res) => {
if (req.session.data.question6 === 'Yes') {
res.redirect('/tools/proposition-checker/nongovuk')
} else {
res.redirect('/tools/proposition-checker/uncertain')
}
})
app.get('/tools/proposition-checker', (req, res) => {
req.session.data = {}
console.log('indexpage')
res.render('tools/proposition-checker/index')
})
app.get('/tools/proposition-checker/result', (req, res) => {
console.log(req.session.data)
res.render('tools/proposition-checker/result')
})
function calculateValues (data, number) {
const calculatedData = []
data.forEach((item) => {
const numberresult = Math.ceil((item.percent / 100) * number) // Round up to the nearest whole number so we can account for sub 1 %'s on low user numbers.
calculatedData.push({
measure: item.measure,
number: numberresult,
source: item.source,
summary: item.summary,
type: item.type
})
})
calculatedData.sort((a, b) => b.number - a.number)
return calculatedData
}
app.get(/\.html?$/i, function (req, res) {
let path = req.path
const parts = path.split('.')
parts.pop()
path = parts.join('.')
res.redirect(path)
})
app.get(/^([^.]+)$/, function (req, res, next) {
matchRoutes(req, res, next)
})
// Handle 404 errors
app.use(function (req, res, next) {
res.status(404).render('error.html')
})
// Handle 500 errors
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(500).render('error.html')
})
// Try to match a request to a template, for example a request for /test
// would look for /app/views/test.html
// and /app/views/test/index.html
function renderPath (path, res, next) {
// Try to render the path
res.render(path, function (error, html) {
if (!error) {
// Success - send the response
res.set({ 'Content-type': 'text/html; charset=utf-8' })
res.end(html)
return
}
if (!error.message.startsWith('template not found')) {
// We got an error other than template not found - call next with the error
next(error)
return
}
if (!path.endsWith('/index')) {
// Maybe it's a folder - try to render [path]/index.html
renderPath(path + '/index', res, next)
return
}
// We got template not found both times - call next to trigger the 404 page
next()
})
}
function matchRoutes (req, res, next) {
let path = req.path
path = path.substr(1)
if (path === '') {
path = 'index'
}
renderPath(path, res, next)
}
app.listen(config.port)