-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
495 lines (419 loc) · 13.8 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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
import http from 'node:http'
import zlib from 'node:zlib'
import tinyParams from 'tiny-params'
const port = process.env.PORT || process.env.port || 8091
const defaultTimeout = 120000
const checkId = { read: true, update: true, delete: true }
const useFirstRecord = { create: true, read: true, update: true }
const hasBody = { POST: true, PUT: true }
const isPool = { Pool: true, BoundPool: true }
const firstRecord = (d) => Promise.resolve(d[0])
const noop = () => {}
const dummyRes = {
addTrailers: noop,
end: noop,
getHeader: noop,
getHeaderNames: noop,
getHeaders: noop,
hasHeader: noop,
removeHeader: noop,
setHeader: noop,
setTimeout: noop,
write: noop,
writeContinue: noop,
writeHead: noop
}
const scrud = {
GET: 'search',
'GET?': 'search',
POST: 'create',
'POST/': 'create',
'POST?': 'search',
'GET/': 'read',
'PUT/': 'update',
'DELETE/': 'delete'
}
const wlSign = [
'algorithm',
'expiresIn',
'notBefore',
'audience',
'issuer',
'jwtid',
'subject',
'noTimestamp',
'header'
]
let server
let jsonwebtoken
let logger
let pgPool
let xxhash
let jwtOpts
let authTrans
let pgPrefix = ''
let base = '/'
let baseChars = base.length
let maxBodyBytes = 1e6
const resources = {}
const allowOrigins = {}
let gzipThreshold = 1000
let getIp
let setScrudHeader
const logIt = (e, level = 'fatal') => {
typeof logger === 'function' ? logger(e, level) : console.log(e)
}
const parseUrl = (req) => {
const url = decodeURIComponent(req.url).slice(baseChars)
const sIdx = url.indexOf('/')
const qIdx = url.indexOf('?')
const modIdx = (sIdx === -1 || (qIdx !== -1 && sIdx > qIdx)) ? qIdx : sIdx
const lastIdx = url.length - 1
let id
if (sIdx === modIdx) {
const postMod = url.slice(sIdx + 1)
if (postMod) {
let nextMod = postMod.indexOf('/')
if (nextMod === -1) nextMod = postMod.indexOf('?')
id = nextMod === -1 ? postMod : postMod.slice(0, nextMod)
}
}
const noMod = modIdx === -1
const name = noMod ? url : url.slice(0, modIdx)
const modifier = noMod || modIdx === lastIdx ? '' : url.charAt(modIdx)
const action = scrud[`${req.method}${modifier}`]
const params = tinyParams(req.url)
const data = { url, name, action, id, params }
return data
}
const callPgFunc = (name, params, req, altPgPool) => {
const q = `SELECT * FROM ${name}($1);`
const pool = altPgPool || pgPool
if (!pool) return Promise.reject(new Error('No database configured'))
return pool.connect().then((client) => {
let released
const release = (fauxErr) => {
if (!client || !client.release || released) return
released = true
client.release(fauxErr)
}
const close = () => release(true)
if (req && req.once) req.once('close', close)
return client.query(q, [params]).then((data) => {
if (req && req.removeListener) req.removeListener('close', close)
release()
return Promise.resolve((data.rows[0] || {})[name] || [])
}).catch((err) => {
if (req && req.removeListener) req.removeListener('close', close)
release()
return Promise.reject(err)
})
}).catch((err) => {
try {
err.meta = err.meta || {}
err.meta.pgFunction = name
const errObj = JSON.parse(err.message)
err.message = errObj.error ? errObj.error : errObj
} catch (ex) {}
return Promise.reject(err)
})
}
const bodyParse = (req) => new Promise((resolve, reject) => {
let body = ''
const ondata = (d, start, end) => {
if (start !== undefined && end !== undefined) {
body += d.slice(start, start + end).toString('utf8')
} else {
body += d.toString('utf8')
}
if (body.length > maxBodyBytes) return reject(new Error('Body too large'))
}
const parse = () => {
try {
resolve(body ? JSON.parse(body) : {})
} catch (ex) {
logIt(ex, 'warn')
reject(new Error('Error parsing JSON request body'))
}
}
req.on('data', ondata)
req.on('end', parse)
})
const filterObj = (obj, ary) => {
const base = {}
ary.forEach((o) => { if (o in obj) base[o] = obj[o] })
return base
}
const handlers = {}
const find = handlers.read = (rsrc, req) => pgActions(rsrc, 'read', req)
const findAll = handlers.search = (rsrc, req) => pgActions(rsrc, 'search', req)
const create = handlers.create = (rsrc, req) => pgActions(rsrc, 'create', req)
const save = handlers.update = (rsrc, req) => pgActions(rsrc, 'update', req)
const destroy = handlers.delete = (rsrc, req) => pgActions(rsrc, 'delete', req)
const aliasRead = (rsrc, req) => actionHandler(req, null, rsrc, 'read', true)
const aliasCreate = (rsrc, req) => actionHandler(req, null, rsrc, 'create', true)
const aliasSearch = (rsrc, req) => actionHandler(req, null, rsrc, 'search', true)
const aliasUpdate = (rsrc, req) => actionHandler(req, null, rsrc, 'update', true)
const aliasDelete = (rsrc, req) => actionHandler(req, null, rsrc, 'delete', true)
export {
resources,
register,
start,
shutdown,
sendData,
sendErr,
logIt,
fourOhOne,
fourOhFour,
genToken,
authenticate,
find,
findAll,
create as insert,
save,
destroy,
callPgFunc,
aliasRead as read,
aliasCreate as create,
aliasSearch as search,
aliasUpdate as update,
aliasDelete as delete
}
function register (name, opts = {}) {
if (!name) throw new Error('No name specified in register')
const r = resources[name] = Object.assign({}, opts, { name })
if (Array.isArray(r.skipAuth)) {
const skippers = {}
r.skipAuth.forEach((a) => { skippers[a] = true })
r.skipAuth = skippers
}
return r
}
async function start (opts = {}) {
if (Array.isArray(opts.registerAPIs)) {
for (const api of opts.registerAPIs) {
if (typeof api === 'string') register(api)
else if (api.name) register(api.name, api.handlers)
else return Promise.reject(new Error('No name specified in registerAPIs'))
}
}
if (opts.namespace) pgPrefix = `${opts.namespace.toLowerCase()}_`
if (opts.maxBodyBytes) maxBodyBytes = opts.maxBodyBytes
if (opts.jsonwebtoken) {
jsonwebtoken = (await import('jsonwebtoken')).default
jwtOpts = opts.jsonwebtoken
}
if (opts.logger) logger = opts.logger
if (opts.base) {
base = `/${opts.base}/`.replace(/\/+/g, '/')
baseChars = base.length
}
if (opts.getIp) getIp = true
if (opts.setScrudHeader) setScrudHeader = true
if (opts.authTrans) authTrans = opts.authTrans
if (opts.gzipThreshold) gzipThreshold = opts.gzipThreshold
if (Array.isArray(opts.allowOrigins)) {
opts.allowOrigins.forEach((k) => { allowOrigins[k] = true })
}
if (opts.useNotModified) {
try {
const hashWasm = await import('hash-wasm')
xxhash = hashWasm.xxhash64
} catch (ex) {
logIt(ex, 'warn')
}
}
server = http.createServer(handleRequest)
if (server.setTimeout) server.setTimeout(opts.timeout || defaultTimeout)
server.listen(opts.port || port)
if (opts.postgres) {
const pg = (await import('pg')).default
pgPool = new pg.Pool(opts.postgres)
}
return server
}
function shutdown () {
if (server && typeof server.close === 'function') server.close()
if (server && typeof server.unref === 'function') server.unref()
if (pgPool && typeof pgPool.end === 'function') pgPool.end()
}
function handleRequest (req, res) {
res.setHeader('Content-Type', 'application/json; charset=utf-8')
const header = (k) => req.headers[k]
const origin = header('origin')
if (origin) {
if (!allowOrigins[origin]) return rejectPreflight(res, origin)
res.setHeader('Access-Control-Allow-Origin', origin)
}
if (req.method === 'OPTIONS' && header('access-control-request-method')) {
return ackPreflight(res, origin, header('access-control-request-headers'))
}
const { name, action, id, params } = parseUrl(req)
const resource = resources[name]
if (!resource || !action) return fourOhFour(res)
res.useGzip = (header('accept-encoding') || '').indexOf('gzip') !== -1
if (setScrudHeader) res.setHeader('SCRUD', `${name}:${action}`)
if (checkId[action]) req.id = id
req.params = params
if (getIp) {
const connection = req.connection || {}
req.params.ip = header('x-forwarded-for') || connection.remoteAddress
}
req.once('error', (err) => sendErr(res, err))
const callHandler = () => {
if (!hasBody[req.method]) return actionHandler(req, res, name, action)
return bodyParse(req).then((body) => {
req.params = Object.assign({}, body, req.params)
return actionHandler(req, res, name, action)
}).catch((e) => sendErr(res, e))
}
const noAuth = !jwtOpts || (resource.skipAuth && resource.skipAuth[action])
if (noAuth) return callHandler()
const jwt = (header('authorization') || '').replace(/^Bearer\s/, '')
authenticate(jwt).then((authData) => {
req.auth = req.params.auth = authTrans ? authTrans(authData) : authData
return callHandler()
}).catch((err) => fourOhOne(res, err))
}
async function sendData (res, data = null, req) {
if (res.headersSent || res.headerSent) {
logIt(new Error('Can\'t send data after headers sent'), 'warn')
return Promise.resolve()
}
const out = Buffer.from(JSON.stringify({ data, error: null }), 'utf8')
if (xxhash && data) {
try {
const hash = await xxhash(out)
res.setHeader('ETag', hash)
res.setHeader('Cache-Control', 'public, max-age=0')
const lastHash = req && req.headers['if-none-match']
if (lastHash && hash === lastHash) {
res.statusCode = 304
return res.end()
}
} catch (ex) {
logIt(ex, 'fatal')
}
}
res.statusCode = 200
return new Promise((resolve, reject) => {
const big = out.length > gzipThreshold
if (!res.useGzip || !big) {
res.end(out)
return resolve()
}
res.setHeader('Content-Encoding', 'gzip')
zlib.gzip(out, (err, zipd) => {
if (err) return reject(sendErr(res, err))
res.end(zipd)
return resolve()
})
})
}
function sendErr (res, err, code = 500) {
res.statusCode = code
if (res.headersSent || res.headerSent) {
logIt(err || new Error('Can\'t send error after headers sent'), 'warn')
return Promise.resolve()
} else {
if (res.removeHeader) res.removeHeader('content-encoding')
}
if (!err) {
res.end(JSON.stringify({ data: null, error: 'Unspecified error' }))
return Promise.resolve()
}
return new Promise((resolve, reject) => {
logIt(err, 'fatal')
err = err instanceof Error ? (err.message || err.name) : err.toString()
res.end(JSON.stringify({ data: null, error: err }))
return resolve()
})
}
function fourOhOne (res, err = new Error('Unable to authenticate request')) {
return sendErr(res, err, 401)
}
function fourOhFour (res, err = new Error('No match for requested route')) {
return sendErr(res, err, 404)
}
function ackPreflight (res, origin, allowHeaders) {
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE')
if (allowHeaders) res.setHeader('Access-Control-Allow-Headers', allowHeaders)
res.statusCode = 200
res.end()
}
function rejectPreflight (res, origin) {
res.setHeader('Origin', origin || '')
res.statusCode = 403
res.end(JSON.stringify({ data: null, error: 'Origin not allowed' }))
}
function genToken (payload = {}, opts) {
opts = opts ? Object.assign({}, jwtOpts, opts) : jwtOpts
const key = opts.secret || opts.privateKey
const noOpts = () => new Error('Missing required jsonwebtoken opts')
if (!opts || !key) return Promise.reject(noOpts())
const signOpts = filterObj(opts, wlSign)
return new Promise((resolve, reject) => {
jsonwebtoken.sign(payload, key, signOpts, (err, token) => {
return err ? reject(err) : resolve(token)
})
})
}
function authenticate (jwt, opts) {
opts = opts ? Object.assign({}, jwtOpts, opts) : jwtOpts
const key = (opts || {}).secret || (opts || {}).publicKey
if (!opts || !key) return Promise.resolve()
return new Promise((resolve, reject) => {
jsonwebtoken.verify(jwt, key, opts, (err, d = {}) => {
return err ? reject(err) : resolve(d)
})
})
}
function pgActions (resource, action, req) {
const rsrc = resources[resource] || {}
const { id, params } = req
let pgConn = rsrc.pg || {}
if (!isPool[(pgConn.constructor || {}).name]) pgConn = pgConn[action] || {}
if (!isPool[(pgConn.constructor || {}).name]) pgConn = undefined
if (checkId[action]) {
if (!id && id !== 0) return Promise.reject(new Error('No id passed'))
if (action === 'read') params.id_array = [id]
params.id = id
}
if (action === 'search') {
Object.keys(params).forEach((k) => {
if (!Array.isArray(params[k])) return
params[`${k}_array`] = params[k]
})
}
const funcName = `${pgPrefix}${resource}_${action}`
if (!useFirstRecord[action]) return callPgFunc(funcName, params, req, pgConn)
return callPgFunc(funcName, params, req, pgConn).then(firstRecord)
}
function actionHandler (req, res, name, action, skipRes) {
const rsrc = resources[name]
res = res || dummyRes
let bq = rsrc.beforeQuery || {} // (req, res)
if (typeof bq !== 'function') bq = bq[action]
let onErr = rsrc.onError || {} // (req, res, error)
if (typeof onErr !== 'function') onErr = onErr[action]
const handleErr = (e) => {
if (onErr) return onErr(req, res, e)
return skipRes ? Promise.reject(e) : sendErr(res, e)
}
const act = () => {
if (!rsrc[action]) return handlers[action](name, req).catch(handleErr)
try {
return rsrc[action](req, res, name, action, skipRes).catch(handleErr)
} catch (ex) {
return handleErr(ex)
}
}
if (rsrc[action]) return bq ? bq(req, res).then(act) : act()
// prep beforeSend handler
let bs = rsrc.beforeSend || {} // (req, res, data)
if (typeof bs !== 'function') bs = bs[action]
const send = (d) => skipRes ? Promise.resolve(d) : sendData(res, d, req)
const finish = (d) => bs ? bs(req, res, d).then(send) : send(d)
const run = () => bq ? bq(req, res).then(act).then(finish) : act().then(finish)
return run().catch(handleErr)
}