-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfn-fdk.js
727 lines (645 loc) · 18 KB
/
fn-fdk.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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
/*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
/*
Usage: handle(function(body, context))
*/
const fs = require('fs')
const http = require('http')
const path = require('path')
const version = require('./package.json')
const runtimeVersion = String(process.version)
const fdkVersion = 'fdk-node/' + version.version + ' (njsv=' + runtimeVersion + ')'
const runtimeTag = 'node/' + runtimeVersion.substr(1, runtimeVersion.length - 1)
const fnFunctionExceptionMessage = 'Exception in function, consult logs for details'
const fnFunctionBadRequestErrorMessage = 'Bad request'
/**
* The function handler - This is a user-supplied node function that implements the behaviour of the current fn function
*
* @callback fnHandler
* @param {string|Buffer} the input to the function - this is either a string or a buffer depending on the `inputMode` specified in `handle`
* @param {Context} the Fn context object containing information about the request and how to process the response
* @return {string|number|Promise|null|Response}
*/
/**
* Asks the FDK to use the specified function to handle a request this should be called exactly once per function on startup
*
*
* @param fnfunction {fnHandler} the function to invoke
* @param options {object}
*/
exports.handle = function (fnfunction, options) {
const fnFormat = process.env.FN_FORMAT || ''
let fdkHandler
// format has been explicitly specified
switch (fnFormat.toLowerCase()) {
case 'http-stream':
fdkHandler = handleHTTPStream
break
default:
console.warn(
`The Node.js FDK does not support the '${fnFormat}' format, change the function format to 'http-stream'. Exiting)`)
process.exit(2)
}
return fdkHandler(fnfunction, options)
}
/**
* A function result = this causes the handler wrapper to use a specific response writer
*/
class FnResult {
writeResult (ctx, resp) {
throw new Error('should be overridden')
}
}
class StreamResult extends FnResult {
constructor (stream) {
super()
this._stream = stream
}
writeResult (ctx, resp) {
return new Promise((resolve, reject) => {
this._stream.pipe(resp)
this._stream.on('end', resolve)
this._stream.on('error', reject)
})
}
}
class RawResult extends FnResult {
constructor (raw) {
super()
this._raw = raw
}
writeResult (ctx, resp) {
resp.write(this._raw)
}
}
/**
* Send a result from a function as a stream - use this function to wrap a stream and have
* @param stream
* @returns {StreamResult}
*/
exports.streamResult = function (stream) {
return new StreamResult(stream)
}
/**
* Send a raw result (either a string or a buffer) to the function response
*
* @param res {string|Buffer} the result
* @returns {RawResult}
*/
exports.rawResult = function (res) {
return new RawResult(res)
}
/**
* Sends a JSON error to response, ending the interaction
* @param resp {http.ServerResponse}
* @param code {int}
* @param error
*/
function sendJSONError (resp, code, error) {
const errStr = JSON.stringify(error)
console.warn(`Error ${code} : ${errStr}`)
resp.setHeader('Content-type', 'application/json')
resp.writeHead(code, 'internal error')
resp.end(errStr)
}
/**
*
* Sends the result of a the function to the service
* @param ctx {Context}
* @param resp {http.ServerResponse}
* @param result {*}
*/
function sendResult (ctx, resp, result) {
const responseContentType = ctx.responseContentType
let isJSON = false
if (responseContentType == null && result != null) {
ctx.responseContentType = 'application/json'
isJSON = true
} else if (responseContentType.startsWith('application/json') || responseContentType.indexOf('+json') > -1) {
isJSON = true
}
const headers = ctx.responseHeaders
for (const key in headers) {
if (Object.prototype.hasOwnProperty.call(headers, key)) {
resp.setHeader(key, headers[key])
}
}
resp.removeHeader('Content-length')
resp.setHeader('Fn-Fdk-Version', fdkVersion)
resp.setHeader('Fn-Fdk-Runtime', runtimeTag)
resp.writeHead(200, 'OK')
let p
if (result != null) {
if (result instanceof FnResult) {
p = Promise.resolve(result.writeResult(ctx, resp))
} else if (isJSON) {
p = Promise.resolve(resp.write(JSON.stringify(result)))
} else {
p = Promise.resolve(resp.write(result))
}
}
p.then(() => resp.end(), (err) => {
console.log('error writing response data', err)
resp.end()
})
return p
}
const skipHeaders = {
TE: true,
Connection: true,
'Keep-Alive': true,
'Transfer-Encoding': true,
Trailer: true,
Upgrade: true
}
class BufferInputHandler {
constructor () {
this._bufs = []
}
pushData (data) {
this._bufs.push(Buffer.from(data))
}
getBody () {
return Buffer.concat(this._bufs)
}
}
class JSONInputHandler {
constructor () {
this._str = ''
}
pushData (data) {
this._str += data
}
getBody () {
try {
return JSON.parse(this._str)
} catch (e) {
return this._str
}
}
}
class StringInputHandler {
constructor () {
this._str = ''
}
pushData (data) {
this._str += data
}
getBody () {
return this._str
}
}
function getInputHandler (inputMode) {
switch (inputMode) {
case 'json' :
return new JSONInputHandler()
case 'string':
return new StringInputHandler()
case 'buffer':
return new BufferInputHandler()
default:
throw new Error(`Unknown input mode "${inputMode}"`)
}
}
function logFramer (ctx, fnLogframeName, fnLogframeHdr) {
if ((fnLogframeName !== '') && (fnLogframeHdr !== '')) {
const id = ctx.getHeader(fnLogframeHdr)
if (id !== '') {
console.log('\n' + fnLogframeName + '=' + id)
console.error('\n' + fnLogframeName + '=' + id)
}
}
}
function handleHTTPStream (fnfunction, options) {
const listenPort = process.env.FN_LISTENER
const inputMode = options != null ? (options.inputMode || 'json') : 'json'
if (listenPort == null || !listenPort.startsWith('unix:')) {
console.error('Invalid configuration no FN_LISTENER variable set or invalid FN_LISTENER value', +listenPort)
process.exit(2)
}
const listenFile = listenPort.substr('unix:'.length)
const listenPath = path.dirname(listenFile)
const tmpFileBaseName = path.basename(listenFile) + '.tmp'
const tmpFile = listenPath + '/' + tmpFileBaseName
const fnLogframeName = process.env.FN_LOGFRAME_NAME || ''
const fnLogframeHdr = process.env.FN_LOGFRAME_HDR || ''
const functionHandler = (req, resp) => {
const inputHandler = getInputHandler(inputMode)
if (req.method !== 'POST' || req.url !== '/call') {
sendJSONError(resp, 400, { message: 'Invalid method', detail: fnFunctionBadRequestErrorMessage })
return
}
req.on('data', chunk => {
inputHandler.pushData(chunk)
}).on('end', () => {
const headers = {}
const rawHeaders = req.rawHeaders
for (let i = 0; i < rawHeaders.length; i += 2) {
const k = canonHeader(rawHeaders[i])
if (skipHeaders[k]) {
continue
}
const v = rawHeaders[i + 1]
if (headers[k] == null) {
if (Array.isArray(v)) {
headers[k] = v.slice()
} else {
headers[k] = [v]
}
} else {
if (Array.isArray(v)) {
headers[k] = headers[k].concat(v)
} else {
headers[k].push(v)
}
}
}
const body = inputHandler.getBody()
const ctx = new Context(process.env, body, headers)
logFramer(ctx, fnLogframeName, fnLogframeHdr)
ctx.responseContentType = 'application/json'
new Promise(function (resolve, reject) {
try {
return resolve(fnfunction(body, ctx))
} catch (error) {
reject(error)
}
}).then((result) => {
return sendResult(ctx, resp, result)
}, (error) => {
console.warn('Error in function:', error)
sendJSONError(resp, 502, { message: fnFunctionExceptionMessage, detail: error.toString() })
})
}).on('error', (e) => {
sendJSONError(resp, 500, { message: 'Error sending response', detail: `${e.toString()}` })
})
}
const currentServer = http.createServer(functionHandler)
currentServer.keepAliveTimeout = 0 // turn off
currentServer.listen(tmpFile, () => {
fs.chmodSync(tmpFile, '666')
fs.symlinkSync(tmpFileBaseName, listenFile)
})
currentServer.on('error', (error) => {
console.warn(`Unable to connect to unix socket ${tmpFile}`, error)
process.exit(3)
})
return () => {
currentServer.close()
fs.unlinkSync(listenFile)
}
}
/**
* Canonicalises an HTTP header
* @param h {string}
* @return {string}
*/
function canonHeader (h) {
return h.replace(/_/g, '-').split('-').map((h) => {
if (h) {
const last = h.substr(1)
const first = h.substr(0, 1)
return first.toUpperCase() + last.toLowerCase()
}
}).join('-')
}
class HTTPGatewayContext {
/**
* Create an HTTP context
* @param ctx {Context}
*/
constructor (ctx) {
this.ctx = ctx
const _headers = {}
for (const key in ctx.headers) {
if (Object.prototype.hasOwnProperty.call(ctx.headers, key)) {
if (key.startsWith('Fn-Http-H-') && key.length > 'Fn-Http-H-'.length) {
const newKey = key.substr('Fn-Http-H-'.length)
_headers[newKey] = ctx.headers[key]
}
}
}
this._headers = _headers
}
/**
* returns the HTTP request URL for this event
* @returns {string}
*/
get requestURL () {
return this.ctx.getHeader('Fn-Http-Request-Url')
}
/**
* Returns the HTTP method for this event
* @returns {string}
*/
get method () {
return this.ctx.getHeader('Fn-Http-Method')
}
/**
* returns the HTTP headers received by the gateway for this event
* @returns {*}
*/
get headers () {
const headers = {}
for (const k in this._headers) {
if (Object.prototype.hasOwnProperty.call(this._headers, k)) {
headers[k] = this._headers[k].slice()
}
}
return headers
}
/**
* Retuns a specific header or null if the header is not set - where multiple values are present the first header is returned
* @param key {string} the header key
* @returns {string|null}
*/
getHeader (key) {
const h = this._headers[canonHeader(key)]
if (h != null) {
return h[0]
}
return null
}
/**
* returns all header values for a given key
* @param key {string}
* @returns {Array.<string>}
*/
getAllHeaderValues (key) {
return this._headers[canonHeader(key)].slice(0) || []
}
/**
* set the status code of the HTTP response
* @param status {int}
*/
set statusCode (status) {
this.ctx.setResponseHeader('Fn-Http-Status', status)
}
/**
* Sets a response header to zero or more values
* @param key {string}
* @param values {string}
*/
setResponseHeader (key, ...values) {
if (canonHeader(key) === 'Content-Type') {
this.ctx.responseContentType = values[0]
} else {
this.ctx.setResponseHeader('Fn-Http-H-' + key, ...values)
}
}
/**
* Appends a response header to any existing values
* @param key {string}
* @param values {string}
*/
addResponseHeader (key, ...values) {
this.ctx.addResponseHeader('Fn-Http-H-' + key, ...values)
}
}
/**
* TracingContext defines an OCI APM tracing context for the current invocation.
* Traces are currently defined by the Zipkin standard.
* See: https://zipkin.io/pages/instrumenting
*/
class TracingContext {
constructor (ctx) {
this.isEnabled = parseInt(ctx._config.OCI_TRACING_ENABLED) === 1
this.traceCollectorUrl = ctx._config.OCI_TRACE_COLLECTOR_URL
this.traceId = ctx.getHeader('X-B3-TraceId')
this.spanId = ctx.getHeader('X-B3-SpanId')
this.parentSpanId = ctx.getHeader('X-B3-ParentSpanId')
this.sampled = parseInt(ctx.getHeader('X-B3-Sampled')) === 1
this.flags = ctx.getHeader('X-B3-Flags')
this.serviceName = (ctx.appName + '::' + ctx.fnName).toLowerCase()
}
}
/**
* Context is the function invocation context - it enables functions to read and write metadata from the request including event headers, config and the underlying payload
*/
class Context {
constructor (config, payload, headers) {
this._config = config
this._body = payload
this._headers = headers
this._responseHeaders = {}
}
/**
* Returns the deadline for the function invocation as a Date object
* @returns {Date}
*/
get deadline () {
const deadStr = this.getHeader('Fn-Deadline')
if (deadStr == null) {
return null
}
return new Date(Date.parse(deadStr))
}
/**
* returns the Fn Call ID associated with this call
* @returns {string}
*/
get callID () {
return this.getHeader('Fn-Call-Id')
}
/**
* Returns the application name associated with this function
* @returns {string}
*/
get appName () {
return this._config.FN_APP_NAME
}
/**
* Returns the application ID associated with this function
* @returns {string}
*/
get appID () {
return this._config.FN_APP_ID
}
/**
* Returns the function name associated with this function
* @returns {string}
*/
get fnName () {
return this._config.FN_FN_NAME
}
/**
* Returns the function ID associated with this function
* @returns {string}
*/
get fnID () {
return this._config.FN_FN_ID
}
/**
* Returns the amount of RAM (in MB) allocated to this function
* @returns {int}
*/
get memory () {
return parseInt(this._config.FN_MEMORY)
}
/**
* Returns the application configuration for this function
* @returns {Object.<string,string>}
*/
get config () {
const c = {}
Object.assign(c, this._config)
return c
}
/**
* Returns the raw body of the input to this function
* @returns {*}
*/
get body () {
return this._body
}
/**
* Returns the content type of the body (if set)
* @returns {null|string}
*/
get contentType () {
return this.getHeader('Content-Type')
}
/**
* returns a map of headers associated with this function this is an object containing key->[string] values
* Header keys are always canonicalized to HTTP first-caps style
* This returns a copy of the underlying headers, changes to the response value will not be reflected in the function response
*
* @returns {Object.<string,Array.<string>>}
*/
get headers () {
const headers = {}
for (const k in this._headers) {
if (Object.prototype.hasOwnProperty.call(this._headers, k)) {
let value = this._headers[k]
if (!Array.isArray(value)) {
value = new Array(value)
} else {
value = value.slice()
}
headers[k] = value
}
}
return headers
}
/**
* Create an OCI APM TracingContext for the current invocation.
*/
get tracingContext () {
return new TracingContext(this)
}
/**
* returns a object containing the outbound headers associated with this function this is an object containing key->[string] values
*
* Header keys are always canonicalized to HTTP first-caps style
*
* This returns a copy of the underlying headers, changes to the response value will not be reflected in the function response
*
* @returns {Object.<string,Array.<string>>}
*/
get responseHeaders () {
const headers = {}
Object.assign(headers, this._responseHeaders)
return headers
}
/**
* returns all header values for a given key
* @param key {string}
* @returns {Array.<string>}
*/
getAllHeaderValues (key) {
const v = this._headers[canonHeader(key)]
if (v == null) {
return []
}
return v.slice(0)
}
/**
* Returns the first value of a given header or null
* Header keys are compared using case-insensitive matching
* @param key {string}
* @returns {string|null}
*/
getHeader (key) {
const h = this._headers[canonHeader(key)]
if (h != null) {
return h[0]
}
return null
}
/**
* Returns a config value for a given key
* @param key {string}
* @returns {string|null}
*/
getConfig (key) {
return this._config.get(key)
}
/**
* Returns the first value of a given header or null
* Header keys are compared using case-insensitive matching
* @param key {string}
* @returns {string|null}
*/
getResponseHeader (key) {
const h = this._responseHeaders[canonHeader(key)]
if (h != null) {
return h[0]
}
return null
}
/**
* Sets a response header to zero or more values
* @param key {string}
* @param values {string}
*/
setResponseHeader (key, ...values) {
this._responseHeaders[canonHeader(key)] = values
}
/**
* Appends a response header to any existing values
* @param key {string}
* @param values {string}
*/
addResponseHeader (key, ...values) {
const ckey = canonHeader(key)
if (this._responseHeaders[ckey] == null) {
this._responseHeaders[ckey] = []
}
Array.prototype.push.apply(this._responseHeaders[ckey], values)
}
/**
* Sets the response content type
* @param contentType {string}
*/
set responseContentType (contentType) {
this.setResponseHeader('Content-Type', contentType)
}
/**
* Gets the response content type
* @returns {string|null}
*/
get responseContentType () {
return this.getResponseHeader('Content-Type')
}
/**
* Returns the httpContext associated with this request
* @returns {HTTPGatewayContext}
*/
get httpGateway () {
return new HTTPGatewayContext(this)
}
}