forked from GoogleCloudPlatform/functions-framework-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfunction_wrappers.ts
264 lines (246 loc) · 8.62 KB
/
function_wrappers.ts
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
// Copyright 2021 Google LLC
//
// 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.
// eslint-disable-next-line node/no-deprecated-api
import * as domain from 'domain';
import {Request, Response, RequestHandler} from 'express';
import {OpenFunctionContext} from './openfunction/context';
import {OpenFunctionRuntime} from './openfunction/runtime';
import {sendCrashResponse} from './logger';
import {sendResponse} from './invoker';
import {isBinaryCloudEvent, getBinaryCloudEventContext} from './cloud_events';
import {
HttpFunction,
EventFunction,
EventFunctionWithCallback,
Context,
CloudEventFunction,
CloudEventFunctionWithCallback,
HandlerFunction,
} from './functions';
import {CloudEvent, OpenFunction} from './functions';
import {SignatureType} from './types';
/**
* The handler function used to signal completion of event functions.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
type OnDoneCallback = (err: Error | null, result: any) => void;
/**
* Get a completion handler that can be used to signal completion of an event function.
* @param res the response object of the request the completion handler is for.
* @returns an OnDoneCallback for the provided request.
*/
const getOnDoneCallback = (res: Response): OnDoneCallback => {
return process.domain.bind<OnDoneCallback>((err, result) => {
if (res.locals.functionExecutionFinished) {
console.log('Ignoring extra callback call');
} else {
res.locals.functionExecutionFinished = true;
if (err) {
console.error(err.stack);
}
sendResponse(result, err, res);
}
});
};
/**
* Helper function to parse a CloudEvent object from an HTTP request.
* @param req an Express HTTP request
* @returns a CloudEvent parsed from the request
*/
const parseCloudEventRequest = (req: Request): CloudEvent<unknown> => {
let cloudEvent = req.body;
if (isBinaryCloudEvent(req)) {
cloudEvent = getBinaryCloudEventContext(req);
cloudEvent.data = req.body;
}
// Populate the traceparent header.
if (req.header('traceparent')) {
cloudEvent.traceparent = req.header('traceparent');
}
return cloudEvent;
};
/**
* Helper function to background event context and data payload object from an HTTP
* request.
* @param req an Express HTTP request
* @returns the data playload and event context parsed from the request
*/
const parseBackgroundEvent = (req: Request): {data: {}; context: Context} => {
const event = req.body;
const data = event.data;
let context = event.context;
if (context === undefined) {
// Support legacy events and CloudEvents in structured content mode, with
// context properties represented as event top-level properties.
// Context is everything but data.
context = event;
// Clear the property before removing field so the data object
// is not deleted.
context.data = undefined;
delete context.data;
}
return {data, context};
};
/**
* Wraps the provided function into an Express handler function with additional
* instrumentation logic.
* @param execute Runs user's function.
* @return An Express handler function.
*/
const wrapHttpFunction = (execute: HttpFunction): RequestHandler => {
return (req: Request, res: Response) => {
const d = domain.create();
// Catch unhandled errors originating from this request.
d.on('error', err => {
if (res.locals.functionExecutionFinished) {
console.error(`Exception from a finished function: ${err}`);
} else {
res.locals.functionExecutionFinished = true;
sendCrashResponse({err, res});
}
});
d.run(() => {
process.nextTick(() => {
execute(req, res);
});
});
};
};
/**
* It takes a user-defined function and a context object, and returns a function that can be used as an HTTP handler.
* @param userFunction - The function that you wrote in your index.js file.
* @param context - OpenFunctionContext object which hold all context data.
* @returns A function that takes a request and a response and returns a promise.
*/
const wrapOpenFunction = (
userFunction: OpenFunction,
context: OpenFunctionContext
): RequestHandler => {
const ctx = OpenFunctionRuntime.ProxyContext(context);
const wrapper = OpenFunctionRuntime.WrapUserFunction(userFunction, ctx);
const httpHandler = (req: Request, res: Response) => {
const callback = getOnDoneCallback(res);
ctx.setTrigger(req, res);
Promise.resolve(req.body)
.then(wrapper)
.then(result => callback(null, result))
.catch(err => callback(err, undefined));
};
return wrapHttpFunction(httpHandler);
};
/**
* Wraps an async CloudEvent function in an express RequestHandler.
* @param userFunction User's function.
* @return An Express hander function that invokes the user function.
*/
const wrapCloudEventFunction = (
userFunction: CloudEventFunction
): RequestHandler => {
const httpHandler = (req: Request, res: Response) => {
const callback = getOnDoneCallback(res);
const cloudEvent = parseCloudEventRequest(req);
Promise.resolve()
.then(() => userFunction(cloudEvent))
.then(
result => callback(null, result),
err => callback(err, undefined)
);
};
return wrapHttpFunction(httpHandler);
};
/**
* Wraps callback style CloudEvent function in an express RequestHandler.
* @param userFunction User's function.
* @return An Express hander function that invokes the user function.
*/
const wrapCloudEventFunctionWithCallback = (
userFunction: CloudEventFunctionWithCallback
): RequestHandler => {
const httpHandler = (req: Request, res: Response) => {
const callback = getOnDoneCallback(res);
const cloudEvent = parseCloudEventRequest(req);
return userFunction(cloudEvent, callback);
};
return wrapHttpFunction(httpHandler);
};
/**
* Wraps an async event function in an express RequestHandler.
* @param userFunction User's function.
* @return An Express hander function that invokes the user function.
*/
const wrapEventFunction = (userFunction: EventFunction): RequestHandler => {
const httpHandler = (req: Request, res: Response) => {
const callback = getOnDoneCallback(res);
const {data, context} = parseBackgroundEvent(req);
Promise.resolve()
.then(() => userFunction(data, context))
.then(
result => callback(null, result),
err => callback(err, undefined)
);
};
return wrapHttpFunction(httpHandler);
};
/**
* Wraps an callback style event function in an express RequestHandler.
* @param userFunction User's function.
* @return An Express hander function that invokes the user function.
*/
const wrapEventFunctionWithCallback = (
userFunction: EventFunctionWithCallback
): RequestHandler => {
const httpHandler = (req: Request, res: Response) => {
const callback = getOnDoneCallback(res);
const {data, context} = parseBackgroundEvent(req);
return userFunction(data, context, callback);
};
return wrapHttpFunction(httpHandler);
};
/**
* Wraps a user function with the provided signature type in an express
* RequestHandler.
* @param userFunction User's function.
* @return An Express hander function that invokes the user function.
*/
export const wrapUserFunction = <T = unknown>(
userFunction: HandlerFunction<T>,
signatureType: SignatureType,
context?: object
): RequestHandler => {
switch (signatureType) {
case 'http':
return wrapHttpFunction(userFunction as HttpFunction);
case 'openfunction':
return wrapOpenFunction(
userFunction as OpenFunction,
context as OpenFunctionContext
);
case 'event':
// Callback style if user function has more than 2 arguments.
if (userFunction!.length > 2) {
return wrapEventFunctionWithCallback(
userFunction as EventFunctionWithCallback
);
}
return wrapEventFunction(userFunction as EventFunction);
case 'cloudevent':
if (userFunction!.length > 1) {
// Callback style if user function has more than 1 argument.
return wrapCloudEventFunctionWithCallback(
userFunction as CloudEventFunctionWithCallback
);
}
return wrapCloudEventFunction(userFunction as CloudEventFunction);
}
};