-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
54 lines (43 loc) · 1.53 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
const getCsv = require('./lib/get-csv')
const splitRows = require('./lib/split-rows')
const splitColumns = require('./lib/split-columns')
const withParsedStatusCode = require('./lib/with-parsed-status-code')
const withOriginalAsKey = require('./lib/with-original-as-key')
// Errors
const MissingCsvError = require('./lib/error/missing-csv.error')
const UnsupportedInputError = require('./lib/error/unsupported-input.error')
/**
* @param {string} csv
*/
function csvRedirect(csv) {
if (csv == null) {
throw new MissingCsvError()
}
const csvData = getCsv()(csv)
const lf = '\n'
const sep = '\t'
const parsed = splitRows(lf)(csvData)
.map(splitColumns(sep))
.filter(([source, , target]) => target !== source)
.map(withParsedStatusCode())
.reduce(withOriginalAsKey(), {})
function csvRedirectMiddlewareHandler(req, res, next) {
const matched = parsed[req.url]
if (matched && (matched[0] || matched[1])) {
const [statusCode, newUrl] = matched;
if (newUrl) {
return res.redirect(statusCode, newUrl)
} else if (!newUrl && statusCode) {
res.status(statusCode)
return res.send()
}
}
next()
}
csvRedirectMiddlewareHandler.csv = csvData
csvRedirectMiddlewareHandler.parsed = parsed
return csvRedirectMiddlewareHandler
}
csvRedirect.MissingCsvError = MissingCsvError
csvRedirect.UnsupportedInputError = UnsupportedInputError
module.exports = csvRedirect